/* ============================================
   Saade Cheats — Ultra-Premium CSS Framework v3.0
   Aesthetics: Deep Obsidian, Violet Plasma & Electric Cyan
   Features: 3D Transforms, Animated Mesh Gradients, Neon Glass
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* New Color System — Violet Plasma */
    --primary: #a855f7;
    --primary-light: #c084fc;
    --primary-dark: #7c3aed;
    --primary-glow: rgba(168, 85, 247, 0.4);
    --primary-linear: linear-gradient(135deg, #c084fc, #a855f7, #7c3aed);
    --primary-radial: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);

    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --accent-glow: rgba(6, 182, 212, 0.3);

    --gold: #f59e0b;
    --gold-glow: rgba(245, 158, 11, 0.3);

    --cyan: #06b6d4;
    --green: #10b981;
    --red: #ef4444;
    --orange: #f97316;
    --pink: #ec4899;

    /* Backgrounds */
    --bg-black: #050507;
    --bg-obsidian: #08080c;
    --bg-surface: #0c0c12;
    --bg-surface-elevated: #111118;
    --bg-surface-hover: #16161f;

    /* Text */
    --text-primary: #f1f1f6;
    --text-secondary: #c8c8d4;
    --text-dim: #6b6b80;
    --text-ultra-dim: #3a3a4a;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-bright: rgba(255, 255, 255, 0.08);
    --border-primary: rgba(168, 85, 247, 0.15);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-elevated: rgba(255, 255, 255, 0.04);
    --glass-blur: blur(20px);

    /* Layout */
    --container-max: 1280px;
    --nav-height: 72px;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-medium: 0.4s var(--ease-out-expo);
    --transition-slow: 0.7s var(--ease-out-expo);
}

/* ============================================
   Reset & Global
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg-black);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Scrollbar */
::-webkit-scrollbar { width: 6px; background: var(--bg-black); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-dark), var(--bg-surface-elevated));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
::selection { background: var(--primary); color: #fff; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   Glass Utility
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    position: relative;
}

.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(168,85,247,0.03) 0%, transparent 50%, rgba(6,182,212,0.02) 100%);
    pointer-events: none;
}

/* ============================================
   Ambient Background Effects
   ============================================ */
.noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

#stars-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.mesh-gradient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(168,85,247,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 90%, rgba(6,182,212,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(236,72,153,0.03) 0%, transparent 60%);
    animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    33% { opacity: 1; transform: scale(1.05) rotate(1deg); }
    66% { opacity: 0.8; transform: scale(0.98) rotate(-1deg); }
}

/* ============================================
   Section System
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary-light);
    border: 1px solid rgba(168, 85, 247, 0.15);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f1f1f6 0%, #c084fc 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   Navigation — Floating Glass Bar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-bottom: 1px solid var(--border-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(168,85,247,0.03);
}

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

.nav-logo {
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: 3px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-logo:hover { filter: drop-shadow(0 0 16px var(--primary-glow)); }

.nav-logo span {
    background: var(--primary-linear);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-linear);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary-light); }

.nav-auth-btn, .nav-logout-btn {
    background: var(--primary-linear);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-auth-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.nav-auth-btn:hover::before { transform: translateX(100%); }

.nav-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

#nav-user-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-username {
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-logout-btn {
    background: transparent;
    border: 1px solid var(--border-bright);
    color: var(--text-dim);
    padding: 8px 18px;
    box-shadow: none;
    font-size: 0.7rem;
}

.nav-logout-btn:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--red);
}

/* ============================================
   Hero — Cinematic Landing
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 60%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: heroOrb 10s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 60%);
    bottom: 5%;
    right: 5%;
    animation: heroOrb 14s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroOrb {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.4); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 85, 247, 0.06);
    color: var(--primary-light);
    border: 1px solid rgba(168, 85, 247, 0.12);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
    animation: tagGlow 4s ease-in-out infinite;
}

@keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
}

.hero-title {
    font-size: clamp(4.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 35px;
    position: relative;
}

.hero-title .gradient-text {
    display: inline-block;
    position: relative;
}

.gradient-text {
    background: var(--primary-linear);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 80px rgba(168, 85, 247, 0.3));
}

.hero-subtitle {
    max-width: 580px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 1.15rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background: var(--primary-linear);
    color: #fff;
    padding: 16px 42px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(168, 85, 247, 0.35), 0 0 80px rgba(168,85,247,0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 16px 42px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.06);
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.1);
}

/* ============================================
   Card System
   ============================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 36px;
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from var(--card-angle, 0deg), transparent 60%, var(--primary) 78%, transparent 95%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-surface);
    border-radius: inherit;
    z-index: -1;
}

.card:hover::before {
    opacity: 1;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    from { --card-angle: 0deg; }
    to { --card-angle: 360deg; }
}

@property --card-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.card:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(168,85,247,0.05);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-out-expo);
}

.card:hover .card-icon {
    background: rgba(168, 85, 247, 0.12);
    box-shadow: 0 0 24px rgba(168,85,247,0.15);
    transform: scale(1.08);
}

.card-icon.gold {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.12);
    color: var(--gold);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.7;
}

.card-details {
    margin-top: 24px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-ultra-dim);
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    gap: 8px;
    letter-spacing: 1px;
}

/* ============================================
   Matrix Section
   ============================================ */
.matrix-section {
    padding: 140px 0 100px;
    position: relative;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 160px 0;
    background: var(--bg-obsidian);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-dark), transparent);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info { flex: 1; }

.product-specs {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.spec-item svg { color: var(--primary); flex-shrink: 0; }

.product-footer {
    margin-top: auto;
    padding-top: 30px;
}

.btn-download {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-download.locked {
    background: var(--bg-surface-elevated);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    color: var(--text-dim);
    cursor: pointer;
}

.btn-download.locked:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(168, 85, 247, 0.04);
}

.btn-download.unlocked {
    background: var(--primary-linear);
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
}

.btn-download.unlocked:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 30px 0 130px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.stat-card {
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: var(--primary-linear);
    opacity: 0.5;
}

.stat-card:hover {
    border-color: var(--border-primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: var(--primary-linear);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}

/* ============================================
   Roadmap Section
   ============================================ */
.roadmap-section {
    padding: 140px 0;
    position: relative;
}

.roadmap-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out-expo);
}

.roadmap-item:hover {
    border-color: var(--border-primary);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.roadmap-phase {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    background: rgba(168,85,247,0.08);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(168,85,247,0.12);
    flex-shrink: 0;
    min-width: 90px;
    text-align: center;
}

.roadmap-info { flex: 1; }
.roadmap-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.roadmap-info p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.roadmap-status {
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 100px;
    flex-shrink: 0;
}

.status-done {
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-active {
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary-light);
    border: 1px solid rgba(168, 85, 247, 0.15);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-pending {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    border: 1px solid var(--border-subtle);
}

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

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
    padding: 120px 0;
    overflow: hidden;
}

.marquee-track {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 380px;
    padding: 32px;
    border-radius: var(--radius-xl);
    flex-shrink: 0;
}

.test-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
}

.test-user h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.test-user span {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.test-rating {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.test-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* ============================================
   FAQ & Support
   ============================================ */
.faq-section {
    padding: 140px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--border-primary);
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.faq-cta {
    padding: 40px !important;
}

/* ============================================
   Benchmarks
   ============================================ */
.benchmarks-section {
    padding: 80px 0 120px;
}

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

.benchmark-table th {
    text-align: left;
    padding: 16px 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border-subtle);
}

.benchmark-table td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.benchmark-table tr:hover td {
    background: rgba(168,85,247,0.02);
}

/* ============================================
   Policy Section
   ============================================ */
.policy-section {
    padding: 40px 0 100px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 80px 0 120px;
}

.contact-info h2 {
    text-align: left;
    margin-left: 0;
}

.contact-stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}

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

/* ============================================
   Auth Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    width: 440px;
    max-width: 90%;
    padding: 48px 40px;
    position: relative;
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-primary) !important;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text-primary); }

.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.auth-tab.active {
    background: var(--primary-linear);
    color: #fff;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    background: var(--primary-linear);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-auth:hover {
    box-shadow: 0 8px 30px rgba(168,85,247,0.3);
    transform: translateY(-2px);
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-subtle);
}

.divider span {
    background: var(--bg-surface);
    padding: 0 16px;
    position: relative;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.discord-btn {
    width: 100%;
    padding: 14px;
    background: #5865F2;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: inherit;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

/* ============================================
   Status Bar
   ============================================ */
.status-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.status-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    white-space: nowrap;
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   Live Toast Notifications
   ============================================ */
.live-notifications {
    position: fixed;
    bottom: 70px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    animation: toastIn 0.5s var(--ease-spring);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    min-width: 280px;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.live-toast.hiding {
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateX(30px);
}

.live-toast-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.toast-content { flex: 1; }
.toast-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 2px;
}

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

.toast-time {
    font-size: 0.6rem;
    color: var(--text-ultra-dim);
    margin-top: 2px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-obsidian);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-logo span {
    background: var(--primary-linear);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

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

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

.footer-title {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

/* ============================================
   Animations / Reveal
   ============================================ */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.animate.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-reveal .card:nth-child(1) { transition-delay: 0s; }
.stagger-reveal .card:nth-child(2) { transition-delay: 0.08s; }
.stagger-reveal .card:nth-child(3) { transition-delay: 0.16s; }
.stagger-reveal .card:nth-child(4) { transition-delay: 0.24s; }
.stagger-reveal .card:nth-child(5) { transition-delay: 0.32s; }
.stagger-reveal .card:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .hero-title { letter-spacing: -2px; }
    .grid { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .roadmap-item { flex-direction: column; text-align: center; }
    .testimonial-card { min-width: 300px; }
    .benchmark-table { font-size: 0.75rem; }
    .benchmark-table th, .benchmark-table td { padding: 10px; }
}

@media (max-width: 600px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .status-bar { display: none; }
}
