/* =====================================================
   GetToCatto.space - Cyberpunk / Terminal Theme
   ===================================================== */

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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d0d15;
    --bg-card: #111119;
    --bg-input: #0f0f1a;
    --border: #1a1a2e;
    --border-glow: #00ff9d;
    --text-primary: #e0e0e0;
    --text-secondary: #7a7a8e;
    --text-muted: #4a4a5e;
    --neon-green: #00ff9d;
    --neon-cyan: #00e5ff;
    --neon-purple: #b347ea;
    --neon-pink: #ff2d6a;
    --neon-yellow: #ffe100;
    --neon-orange: #ff6b2d;
    --neon-red: #ff3333;
    --glow-green: 0 0 20px rgba(0, 255, 157, 0.3), 0 0 40px rgba(0, 255, 157, 0.1);
    --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1);
    --glow-purple: 0 0 20px rgba(179, 71, 234, 0.3);
    --font-mono: 'JetBrains Mono', 'Share Tech Mono', monospace;
    --font-display: 'Orbitron', sans-serif;
    --radius: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

/* Scanline overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 157, 0.015) 2px,
        rgba(0, 255, 157, 0.015) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

/* Grid background */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 1.8rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--neon-cyan); text-shadow: var(--glow-green); }

/* =====================================================
   GLITCH EFFECT
   ===================================================== */
.glitch {
    position: relative;
    animation: glitch-skew 4s infinite linear alternate-reverse;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; right: 0;
    overflow: hidden;
}
.glitch::before {
    animation: glitch-top 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    color: var(--neon-cyan);
}
.glitch::after {
    animation: glitch-bottom 2.5s infinite linear alternate-reverse;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    color: var(--neon-pink);
}

@keyframes glitch-top {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, -1px); }
    40% { transform: translate(3px, 1px); }
    60% { transform: translate(-2px, -1px); }
    80% { transform: translate(2px, 1px); }
}
@keyframes glitch-bottom {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, 1px); }
    40% { transform: translate(-3px, -1px); }
    60% { transform: translate(2px, 1px); }
    80% { transform: translate(-2px, -1px); }
}
@keyframes glitch-skew {
    0%, 100% { transform: skew(0deg); }
    20% { transform: skew(-0.5deg); }
    40% { transform: skew(0.5deg); }
    60% { transform: skew(-0.3deg); }
    80% { transform: skew(0.3deg); }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0.5;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.nav-logo span { color: var(--neon-cyan); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--neon-green);
    transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.1), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: inset 0 0 20px rgba(0, 255, 157, 0.05);
}
.btn-primary:hover {
    background: rgba(0, 255, 157, 0.1);
    box-shadow: var(--glow-green), inset 0 0 30px rgba(0, 255, 157, 0.1);
    transform: translateY(-2px);
}

.btn-cyan {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}
.btn-cyan:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.btn-danger {
    border-color: var(--neon-red);
    color: var(--neon-red);
}
.btn-danger:hover { background: rgba(255, 51, 51, 0.1); }

.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* =====================================================
   CARDS
   ===================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition);
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    opacity: 0;
    transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }
.card:hover {
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
.card-header h3 {
    font-size: 0.9rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: var(--transition);
    outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.1), inset 0 0 20px rgba(0, 255, 157, 0.03);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.25rem; }

/* =====================================================
   TERMINAL BOX
   ===================================================== */
.terminal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    overflow: hidden;
}
.terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}
.terminal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }
.terminal-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
}
.terminal-body { padding: 1rem; font-size: 0.85rem; }
.terminal-line {
    margin-bottom: 0.25rem;
    opacity: 0;
    animation: terminalType 0.5s forwards;
}
.terminal-line .prompt { color: var(--neon-green); }
.terminal-line .cmd { color: var(--neon-cyan); }
.terminal-line .output { color: var(--text-secondary); }

@keyframes terminalType {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* =====================================================
   LAYOUT - DASHBOARD
   ===================================================== */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
}

.sidebar {
    width: 260px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    position: fixed;
    top: 64px;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    z-index: 100;
}
.sidebar-nav { padding: 1rem 0; }
.sidebar-section {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}
.sidebar-section-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 0.5rem 0;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-left: 2px solid transparent;
    transition: var(--transition);
}
.sidebar-link:hover {
    color: var(--text-primary);
    background: rgba(0, 255, 157, 0.03);
    border-left-color: rgba(0, 255, 157, 0.3);
}
.sidebar-link.active {
    color: var(--neon-green);
    background: rgba(0, 255, 157, 0.05);
    border-left-color: var(--neon-green);
}
.sidebar-link .badge {
    margin-left: auto;
    padding: 0.1rem 0.5rem;
    font-size: 0.65rem;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: var(--neon-green);
}

.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 2rem;
    min-height: calc(100vh - 64px);
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.page-title {
    font-size: 1.5rem;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}
.page-breadcrumb {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.page-breadcrumb span { color: var(--neon-green); }

/* =====================================================
   STATS GRID
   ===================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    border-radius: 50%;
    opacity: 0.05;
}
.stat-card.green::before { background: var(--neon-green); }
.stat-card.cyan::before { background: var(--neon-cyan); }
.stat-card.purple::before { background: var(--neon-purple); }
.stat-card.pink::before { background: var(--neon-pink); }

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.stat-card.green .stat-value { color: var(--neon-green); }
.stat-card.cyan .stat-value { color: var(--neon-cyan); }
.stat-card.purple .stat-value { color: var(--neon-purple); }
.stat-card.pink .stat-value { color: var(--neon-pink); }

.stat-change {
    font-size: 0.7rem;
    margin-top: 0.5rem;
}
.stat-change.up { color: var(--neon-green); }
.stat-change.down { color: var(--neon-red); }

/* =====================================================
   TABLE
   ===================================================== */
.table-container { overflow-x: auto; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}
.data-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}
.data-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}
.data-table tr:hover td {
    background: rgba(0, 255, 157, 0.02);
    color: var(--text-primary);
}

/* Status badges */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}
.badge-active { color: var(--neon-green); border-color: rgba(0, 255, 157, 0.3); background: rgba(0, 255, 157, 0.05); }
.badge-pending { color: var(--neon-yellow); border-color: rgba(255, 225, 0, 0.3); background: rgba(255, 225, 0, 0.05); }
.badge-failed { color: var(--neon-red); border-color: rgba(255, 51, 51, 0.3); background: rgba(255, 51, 51, 0.05); }
.badge-expired { color: var(--text-muted); border-color: var(--border); background: rgba(255, 255, 255, 0.02); }
.badge-processing { color: var(--neon-cyan); border-color: rgba(0, 229, 255, 0.3); background: rgba(0, 229, 255, 0.05); }

/* =====================================================
   ALERTS / TOASTS
   ===================================================== */
.alert {
    padding: 1rem 1.25rem;
    border: 1px solid;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.alert-success { border-color: rgba(0, 255, 157, 0.3); background: rgba(0, 255, 157, 0.05); color: var(--neon-green); }
.alert-error { border-color: rgba(255, 51, 51, 0.3); background: rgba(255, 51, 51, 0.05); color: var(--neon-red); }
.alert-warning { border-color: rgba(255, 225, 0, 0.3); background: rgba(255, 225, 0, 0.05); color: var(--neon-yellow); }
.alert-info { border-color: rgba(0, 229, 255, 0.3); background: rgba(0, 229, 255, 0.05); color: var(--neon-cyan); }

.toast-container {
    position: fixed;
    top: 80px; right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.toast {
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    animation: toastIn 0.3s ease-out;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

/* =====================================================
   UPLOAD AREA
   ===================================================== */
.upload-zone {
    border: 2px dashed var(--border);
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--neon-green);
    background: rgba(0, 255, 157, 0.03);
    box-shadow: inset 0 0 40px rgba(0, 255, 157, 0.05);
}
.upload-zone .upload-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.upload-zone:hover .upload-icon { color: var(--neon-green); }
.upload-zone .upload-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.upload-zone .upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* =====================================================
   PROGRESS BAR
   ===================================================== */
.progress {
    height: 6px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    transition: width 0.3s;
    position: relative;
}
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.15) 50%, transparent 75%);
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* =====================================================
   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: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.modal-header h3 {
    font-size: 0.9rem;
    color: var(--neon-green);
}
.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
}
.modal-close:hover { color: var(--neon-red); }
.modal-body { padding: 1.5rem; }
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}

/* =====================================================
   PRICING CARDS
   ===================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.price-card.featured {
    border-color: var(--neon-green);
    transform: scale(1.05);
}
.price-card.featured::before {
    content: 'POPÜLER';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 1rem;
    background: var(--neon-green);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.price-card:hover {
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: var(--glow-green);
}
.price-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-green);
    margin: 1rem 0;
}
.price-amount span { font-size: 0.9rem; color: var(--text-muted); }
.price-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}
.price-features li {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.price-features li::before {
    content: '>';
    color: var(--neon-green);
    font-weight: bold;
}

/* =====================================================
   LOADER EDITOR
   ===================================================== */
.editor-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}
.editor-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.editor-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}
.editor-tab {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-mono);
}
.editor-tab:hover { color: var(--text-primary); }
.editor-tab.active {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}
.editor-content { padding: 1.5rem; }

.phone-preview {
    width: 380px;
    height: 680px;
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}
.phone-notch {
    width: 120px;
    height: 24px;
    background: #000;
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
}
.phone-screen {
    height: calc(100% - 24px);
    overflow-y: auto;
}

/* =====================================================
   LANDING PAGE HERO
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
}
.hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Features Section */
.features-section { padding: 6rem 2rem; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(0, 255, 157, 0.2);
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.feature-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--neon-green);
}
.feature-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   AUTH PAGES
   ===================================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.auth-box {
    width: 100%;
    max-width: 420px;
}
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}
.auth-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
}

/* =====================================================
   NOTIFICATION BELL
   ===================================================== */
.notif-bell {
    position: relative;
    cursor: pointer;
}
.notif-count {
    position: absolute;
    top: -5px; right: -5px;
    width: 16px; height: 16px;
    background: var(--neon-red);
    color: #fff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.notif-dropdown {
    position: absolute;
    top: 100%; right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: none;
    z-index: 1000;
}
.notif-dropdown.show { display: block; }
.notif-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}
.notif-item:hover { background: rgba(0, 255, 157, 0.03); }
.notif-item.unread { border-left: 2px solid var(--neon-green); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .sidebar { display: none; }
    .main-content { margin-left: 0; }
    .hero-title { font-size: 2.5rem; }
    .editor-layout { grid-template-columns: 1fr; }
    .phone-preview { width: 100%; position: static; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--neon-green); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Matrix rain canvas */
#matrixRain {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

/* =====================================================
   LOADING SPINNER
   ===================================================== */
.spinner {
    width: 30px; height: 30px;
    border: 2px solid var(--border);
    border-top-color: var(--neon-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 15, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    gap: 1rem;
}
.loading-text {
    font-size: 0.85rem;
    color: var(--neon-green);
    animation: pulse 1.5s infinite;
}
