/* ============================================
   VulnClaw - AI Pentest CLI Landing Page
   Cyberpunk / Hacker Aesthetic v2.0
   ============================================ */

:root {
    --terminal-black: #020204;
    --dark-bg: #050508;
    --card-bg: rgba(8, 8, 16, 0.7);
    --medium-gray: #0f0f1a;
    --light-gray: #6b7280;
    --text-primary: #e8e8f0;
    --text-secondary: #7a7a8a;
    --lobster-red: #ff2a2a;
    --lobster-orange: #ff6b35;
    --accent-gradient: linear-gradient(135deg, #ff2a2a, #ff6b35);
    --terminal-green: #00ff88;
    --info-blue: #00d4ff;
    --alert-yellow: #ffd700;
    --terminal-bg: #0a0a12;
    --terminal-border: #1a1a2e;
    --glass-bg: rgba(8, 8, 16, 0.5);
    --glass-border: rgba(255, 255, 255, 0.05);
    --neon-red: #ff003c;
    --neon-orange: #ff5e00;
    --neon-green: #00ff41;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif;
    background-color: var(--terminal-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--lobster-red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 10px var(--lobster-red), 0 0 20px var(--lobster-red);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 42, 42, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gradient);
    z-index: 10001;
    box-shadow: 0 0 10px var(--lobster-red);
    transition: width 0.1s linear;
}

/* ============================================
   CRT / SCANLINE EFFECTS
   ============================================ */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.03),
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.4;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.015;
    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)'/%3E%3C/svg%3E");
}

/* ============================================
   WEBGL BACKGROUND
   ============================================ */
#webglCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, rgba(2,2,4,0.98) 0%, rgba(5,5,8,0.98) 100%);
    border-bottom: 1px solid rgba(255, 42, 42, 0.15);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.03), transparent);
    animation: scanBar 3s linear infinite;
}

@keyframes scanBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-marquee {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 4px;
}

.marquee-item i {
    color: var(--lobster-red);
    margin-right: 6px;
    font-size: 10px;
}

.marquee-separator {
    color: var(--lobster-red);
    opacity: 0.3;
    margin: 0 16px;
    font-weight: 700;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--terminal-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--terminal-green);
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

.status-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--terminal-green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(2, 2, 4, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(2, 2, 4, 0.9);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-wrapper {
    position: relative;
}

.nav-logo {
    height: 40px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.brand-text {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0 !important;
}

.navbar-nav .nav-link:hover {
    color: var(--lobster-red) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--lobster-red) !important;
}

.btn-primary-nav {
    background: transparent;
    border: 1px solid var(--lobster-red);
    color: var(--lobster-red);
    font-weight: 600;
    font-size: 12px;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--lobster-red);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary-nav:hover::before {
    left: 0;
}

.btn-primary-nav:hover {
    color: white;
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.4);
}

.navbar-toggler {
    border: 1px solid rgba(255, 42, 42, 0.3);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff2a2a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 42, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 42, 42, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 42, 42, 0.08);
    border: 1px solid rgba(255, 42, 42, 0.2);
    color: var(--lobster-red);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 42, 42, 0.15);
    border-color: rgba(255, 42, 42, 0.4);
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.1);
}

.badge-pulse {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.title-line {
    display: block;
}

.title-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 3s infinite linear alternate-reverse;
    color: var(--neon-red);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 2s infinite linear alternate-reverse;
    color: var(--info-blue);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(3px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 1px); }
    80% { clip-path: inset(80% 0 0% 0); transform: translate(2px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(3px, -2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(-3px, 2px); }
    60% { clip-path: inset(20% 0 60% 0); transform: translate(2px, -1px); }
    80% { clip-path: inset(0% 0 80% 0); transform: translate(-2px, 1px); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
    max-width: 560px;
    font-weight: 400;
}

.hero-subtitle .highlight {
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
}

.hero-subtitle .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.6;
}

.hero-slogan {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lobster-orange);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.slogan-line {
    flex: 1;
    height: 1px;
    max-width: 60px;
    background: linear-gradient(90deg, var(--lobster-red), transparent);
}

.hero-cta {
    margin-bottom: 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    background: var(--lobster-red);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 18px 36px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 42, 42, 0.5), 0 0 60px rgba(255, 42, 42, 0.2);
    color: white;
}

.btn-outline-ghost {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    padding: 17px 34px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    cursor: none;
}

.btn-outline-ghost:hover {
    border-color: var(--lobster-red);
    color: var(--lobster-red);
    background: rgba(255, 42, 42, 0.05);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.1);
}

.hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
}

.stat-item {
    text-align: left;
    padding: 0 32px;
    position: relative;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,42,42,0.3), transparent);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lobster-red);
    opacity: 0.6;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    opacity: 0.5;
}

.scroll-indicator span {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1px solid var(--text-secondary);
    border-radius: 11px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--lobster-red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s infinite;
}

@keyframes wheelScroll {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* ============================================
   TERMINAL
   ============================================ */
.terminal-container {
    position: relative;
    z-index: 2;
}

.terminal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 42, 42, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: terminalGlow 4s ease-in-out infinite;
}

@keyframes terminalGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.terminal-window {
    background: var(--terminal-bg);
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 42, 42, 0.1),
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(255, 42, 42, 0.08);
    transition: all 0.5s ease;
}

.terminal-window:hover {
    box-shadow:
        0 0 0 1px rgba(255, 42, 42, 0.2),
        0 35px 100px rgba(0, 0, 0, 0.9),
        0 0 120px rgba(255, 42, 42, 0.12);
}

.terminal-header {
    background: linear-gradient(180deg, #0f0f1a, #0a0a12);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--terminal-border);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.3);
    filter: brightness(1.3);
}

.dot-red { background: #ff5f57; box-shadow: 0 0 8px rgba(255, 95, 87, 0.5); }
.dot-yellow { background: #febc2e; box-shadow: 0 0 8px rgba(254, 188, 46, 0.5); }
.dot-green { background: #28c840; box-shadow: 0 0 8px rgba(40, 200, 64, 0.5); }

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}

.terminal-actions {
    margin-left: auto;
}

.terminal-status {
    font-size: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

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

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

.terminal-body {
    padding: 24px;
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.9;
    max-height: 480px;
    overflow-y: auto;
}

.terminal-line {
    margin-bottom: 2px;
    animation: fadeInLine 0.3s ease forwards;
    opacity: 0;
}

.terminal-line:nth-child(1) { animation-delay: 0.1s; }
.terminal-line:nth-child(2) { animation-delay: 0.2s; }
.terminal-line:nth-child(3) { animation-delay: 0.3s; }
.terminal-line:nth-child(4) { animation-delay: 0.4s; }
.terminal-line:nth-child(5) { animation-delay: 0.5s; }
.terminal-line:nth-child(6) { animation-delay: 0.6s; }
.terminal-line:nth-child(7) { animation-delay: 0.7s; }
.terminal-line:nth-child(8) { animation-delay: 0.8s; }
.terminal-line:nth-child(9) { animation-delay: 0.9s; }
.terminal-line:nth-child(10) { animation-delay: 1.0s; }
.terminal-line:nth-child(11) { animation-delay: 1.1s; }
.terminal-line:nth-child(12) { animation-delay: 1.2s; }
.terminal-line:nth-child(13) { animation-delay: 1.3s; }
.terminal-line:nth-child(14) { animation-delay: 1.4s; }
.terminal-line:nth-child(15) { animation-delay: 1.5s; }
.terminal-line:nth-child(16) { animation-delay: 1.6s; }
.terminal-line:nth-child(17) { animation-delay: 1.7s; }
.terminal-line:nth-child(18) { animation-delay: 1.8s; }
.terminal-line:nth-child(19) { animation-delay: 1.9s; }
.terminal-line:nth-child(20) { animation-delay: 2.0s; }

@keyframes fadeInLine {
    from { opacity: 0; transform: translateX(-15px); filter: blur(4px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.prompt {
    color: var(--lobster-red);
    font-weight: 700;
    margin-right: 8px;
}

.cmd {
    color: var(--text-primary);
}

.output-success { color: var(--terminal-green); text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
.output-info { color: var(--info-blue); text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }
.output-comment { color: var(--text-secondary); font-style: italic; }
.output-muted { color: var(--text-secondary); }
.output-section {
    color: var(--lobster-orange);
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 1px;
}

.cursor-line {
    display: flex;
    align-items: center;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: var(--lobster-red);
    animation: blink 1s step-end infinite;
    margin-left: 6px;
    box-shadow: 0 0 10px var(--lobster-red);
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--lobster-red);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 20px;
    border: 1px solid rgba(255, 42, 42, 0.2);
    background: rgba(255, 42, 42, 0.03);
    font-family: 'JetBrains Mono', monospace;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: 'Space Grotesk', sans-serif;
}

.title-word {
    display: inline-block;
}

.title-word.title-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   FEATURES - 3D TILT HOLOGRAPHIC CARDS
   ============================================ */
.features {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--terminal-black), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(255, 42, 42, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 42, 42, 0.015) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(100px); }
}

.section-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lobster-red), var(--lobster-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(255, 42, 42, 0.3);
    transform: translateY(-12px) rotateX(5deg);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 42, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Particle Border Effect */
.feature-card .particle-border {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .particle-border {
    opacity: 1;
}

.feature-card .particle-border::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--lobster-red) 0%, transparent 70%);
    animation: particleOrbit 3s linear infinite;
    filter: blur(20px);
}

@keyframes particleOrbit {
    0% { top: -50px; left: -50px; }
    25% { top: -50px; left: calc(100% - 50px); }
    50% { top: calc(100% - 50px); left: calc(100% - 50px); }
    75% { top: calc(100% - 50px); left: -50px; }
    100% { top: -50px; left: -50px; }
}

/* Holographic Shine Effect */
.holographic-card {
    position: relative;
    overflow: hidden;
}

.holographic-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 42, 42, 0.05) 45%,
        rgba(255, 107, 53, 0.08) 50%,
        rgba(0, 212, 255, 0.05) 55%,
        transparent 70%,
        transparent 100%
    );
    transform: rotate(0deg);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.holographic-card:hover .holographic-shine {
    transform: rotate(180deg);
}

.card-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.card-border-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, var(--lobster-red), var(--lobster-orange), var(--info-blue), var(--lobster-red));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.feature-card:hover .card-border-glow {
    opacity: 1;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 56px;
    font-weight: 900;
    color: rgba(255, 42, 42, 0.08);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    transition: all 0.4s ease;
    text-shadow: 0 0 30px rgba(255, 42, 42, 0.1);
}

.feature-card:hover .feature-number {
    color: rgba(255, 42, 42, 0.15);
    transform: scale(1.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.15), rgba(255, 107, 53, 0.08));
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--lobster-red);
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(255, 42, 42, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 40px rgba(255, 42, 42, 0.3), 0 0 80px rgba(255, 42, 42, 0.1);
    border-color: rgba(255, 42, 42, 0.4);
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.25), rgba(255, 107, 53, 0.15));
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 42, 42, 0.3);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li {
    color: rgba(255, 255, 255, 0.7);
}

.feature-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--lobster-red);
    font-weight: bold;
    animation: blink 1s step-end infinite;
}

/* ============================================
   QUICK START - ENHANCED TIMELINE
   ============================================ */
.quickstart {
    padding: 140px 0;
    background: var(--terminal-black);
    position: relative;
    overflow: hidden;
}

.quickstart-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 42, 42, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 42, 42, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}

.timeline-wrapper {
    position: relative;
    margin-top: 80px;
    padding-top: 40px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(255, 42, 42, 0.1);
    z-index: 0;
    overflow: hidden;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.5), transparent);
    animation: timelineShine 3s ease-in-out infinite;
}

@keyframes timelineShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.5), 0 0 40px rgba(255, 42, 42, 0.2);
    transition: width 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-progress.animate {
    width: 100%;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--lobster-red);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--lobster-red), 0 0 40px rgba(255, 42, 42, 0.5);
    animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 20px var(--lobster-red), 0 0 40px rgba(255, 42, 42, 0.5); }
    50% { box-shadow: 0 0 30px var(--lobster-red), 0 0 60px rgba(255, 42, 42, 0.8); }
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lobster-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-node {
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 42, 42, 0.2);
    animation: stepPulse 2s ease-out infinite;
}

@keyframes stepPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.step-number {
    position: relative;
    background: var(--accent-gradient);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 4px;
    letter-spacing: 2px;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 4px 20px rgba(255, 42, 42, 0.4);
    z-index: 3;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 42, 42, 0.6);
}

.step-icon-wrapper {
    margin: 20px 0 24px;
    position: relative;
}

.step-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-icon-wrapper::before {
    opacity: 1;
}

.step-icon {
    font-size: 36px;
    color: var(--lobster-orange);
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.step-card:hover .step-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    color: var(--lobster-red);
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.step-card:hover h4 {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.step-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.6);
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid var(--terminal-border);
    line-height: 1.6;
    word-break: break-all;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-card:hover .step-code {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.05);
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--lobster-red);
    animation: typing 2s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--lobster-red); }
}

.code-prompt {
    color: var(--lobster-red);
    font-weight: 700;
}

.code-cmd {
    color: var(--text-primary);
}

/* ============================================
   DEMO VIDEO SECTION
   ============================================ */
.demo-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--terminal-black), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lobster-red), transparent);
    opacity: 0.3;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--terminal-border);
    background: var(--terminal-bg);
    box-shadow: 0 0 60px rgba(255, 42, 42, 0.1);
}

.video-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--lobster-red), var(--lobster-orange));
    border-radius: 18px;
    opacity: 0.15;
    z-index: -1;
    filter: blur(20px);
}

.product-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    background: var(--terminal-black);
}

/* ============================================
   FLOW - DYNAMIC CONNECTIONS & PARTICLE STREAM
   ============================================ */
.flow-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--dark-bg), var(--terminal-black));
    position: relative;
    overflow: hidden;
}

.flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 42, 42, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: flowBgPulse 6s ease-in-out infinite;
}

@keyframes flowBgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.flow-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.flow-container {
    position: relative;
    margin-top: 60px;
}

.flow-connector {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 0;
    pointer-events: none;
}

.flow-svg {
    width: 100%;
    height: 100%;
}

.flow-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.flow-step {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.flow-icon-wrapper {
    display: inline-block;
    position: relative;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 42, 42, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 28px;
    color: var(--lobster-red);
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 0 20px rgba(255, 42, 42, 0.1),
        inset 0 0 20px rgba(255, 42, 42, 0.05);
}

.flow-step:hover .flow-icon {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.2);
    box-shadow:
        0 0 50px rgba(255, 42, 42, 0.5),
        0 0 100px rgba(255, 42, 42, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

.flow-icon::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--lobster-red);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

.flow-step:nth-child(1) .flow-icon::after { animation-delay: 0s; }
.flow-step:nth-child(2) .flow-icon::after { animation-delay: 0.5s; }
.flow-step:nth-child(3) .flow-icon::after { animation-delay: 1s; }
.flow-step:nth-child(4) .flow-icon::after { animation-delay: 1.5s; }
.flow-step:nth-child(5) .flow-icon::after { animation-delay: 2s; }
.flow-step:nth-child(6) .flow-icon::after { animation-delay: 2.5s; }

@keyframes pulseRing {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; }
    100% { opacity: 0; transform: scale(1.4); }
}

/* Energy beam between steps */
.flow-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lobster-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.flow-step:hover::after {
    opacity: 0.5;
    animation: energyFlow 1s ease-in-out infinite;
}

@keyframes energyFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.flow-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.flow-step:hover h5 {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 42, 42, 0.3);
}

.flow-step p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.flow-step:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.flow-loop-text {
    text-align: center;
    margin-top: 60px;
}

.loop-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 42, 42, 0.05);
    border: 1px solid rgba(255, 42, 42, 0.15);
    color: var(--text-secondary);
    font-size: 12px;
    padding: 14px 32px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.loop-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.1), transparent);
    transition: left 0.5s ease;
}

.loop-badge:hover::before {
    left: 100%;
}

.loop-badge:hover {
    border-color: rgba(255, 42, 42, 0.3);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.1);
}

.loop-icon {
    color: var(--lobster-red);
    animation: spin 4s linear infinite;
    display: inline-flex;
    font-size: 18px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   ECOSYSTEM - MATRIX RAIN & NEON NUMBERS
   ============================================ */
.ecosystem {
    padding: 140px 0;
    background: var(--terminal-black);
    position: relative;
    overflow: hidden;
}

/* Ecosystem Floating Particles - Pure CSS */
.ecosystem-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ecosystem-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--lobster-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: ecoParticleFloat 12s linear infinite;
    box-shadow: 0 0 10px var(--lobster-red), 0 0 20px var(--lobster-red);
}

.ecosystem-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.ecosystem-particles span:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 14s; background: var(--lobster-orange); box-shadow: 0 0 10px var(--lobster-orange), 0 0 20px var(--lobster-orange); }
.ecosystem-particles span:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 11s; }
.ecosystem-particles span:nth-child(4) { left: 40%; animation-delay: 0.5s; animation-duration: 13s; background: var(--info-blue); box-shadow: 0 0 10px var(--info-blue), 0 0 20px var(--info-blue); }
.ecosystem-particles span:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 15s; }
.ecosystem-particles span:nth-child(6) { left: 60%; animation-delay: 1.5s; animation-duration: 10s; background: var(--terminal-green); box-shadow: 0 0 10px var(--terminal-green), 0 0 20px var(--terminal-green); }
.ecosystem-particles span:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 12s; }
.ecosystem-particles span:nth-child(8) { left: 80%; animation-delay: 0.8s; animation-duration: 14s; background: var(--lobster-orange); box-shadow: 0 0 10px var(--lobster-orange), 0 0 20px var(--lobster-orange); }
.ecosystem-particles span:nth-child(9) { left: 90%; animation-delay: 1.2s; animation-duration: 11s; }
.ecosystem-particles span:nth-child(10) { left: 15%; animation-delay: 3.5s; animation-duration: 13s; background: var(--info-blue); box-shadow: 0 0 10px var(--info-blue), 0 0 20px var(--info-blue); }
.ecosystem-particles span:nth-child(11) { left: 25%; animation-delay: 0.3s; animation-duration: 15s; }
.ecosystem-particles span:nth-child(12) { left: 35%; animation-delay: 2.8s; animation-duration: 10s; background: var(--terminal-green); box-shadow: 0 0 10px var(--terminal-green), 0 0 20px var(--terminal-green); }
.ecosystem-particles span:nth-child(13) { left: 45%; animation-delay: 1.8s; animation-duration: 12s; }
.ecosystem-particles span:nth-child(14) { left: 55%; animation-delay: 0.6s; animation-duration: 14s; background: var(--lobster-orange); box-shadow: 0 0 10px var(--lobster-orange), 0 0 20px var(--lobster-orange); }
.ecosystem-particles span:nth-child(15) { left: 75%; animation-delay: 3.2s; animation-duration: 11s; }

@keyframes ecoParticleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.ecosystem-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 42, 42, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 42, 42, 0.015) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}

.key-numbers {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.key-num-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.key-num-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lobster-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.key-num-item:hover::before {
    opacity: 1;
}

.key-num-item:hover {
    border-color: rgba(255, 42, 42, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 42, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Neon Number Effect */
.neon-number .key-num {
    text-shadow:
        0 0 5px rgba(255, 42, 42, 0.8),
        0 0 10px rgba(255, 42, 42, 0.5),
        0 0 20px rgba(255, 42, 42, 0.3),
        0 0 40px rgba(255, 42, 42, 0.2);
    animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
    52% { opacity: 0.5; }
    54% { opacity: 1; }
    90% { opacity: 0.95; }
    92% { opacity: 0.7; }
    94% { opacity: 1; }
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(20px);
}

.key-num-item:hover .neon-glow {
    opacity: 1;
}

.key-num-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.key-num {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.key-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--lobster-red);
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.3);
}

.key-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.key-num-item:hover .key-label {
    color: rgba(255, 255, 255, 0.8);
}

.provider-grid {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.provider-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.provider-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.3), transparent);
}

.providers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.provider-chip {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.provider-chip i {
    font-size: 14px;
    color: var(--lobster-red);
    transition: all 0.3s ease;
}

.provider-chip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.15), transparent);
    transition: left 0.5s ease;
}

.provider-chip:hover::after {
    left: 100%;
}

.provider-chip:hover {
    border-color: var(--lobster-red);
    color: var(--lobster-red);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 42, 42, 0.15);
}

.provider-chip:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.5));
}

.provider-chip-custom {
    border-color: rgba(255, 107, 53, 0.3);
}

.provider-chip-custom:hover {
    border-color: var(--lobster-orange);
    color: var(--lobster-orange);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 107, 53, 0.15);
}

/* ============================================
   CTA - IMMERSIVE ENERGY FIELD
   ============================================ */
.cta-section {
    padding: 160px 0;
    background: linear-gradient(135deg, var(--dark-bg), #050205);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 42, 42, 0.05) 0%, transparent 50%);
    animation: ctaBgPulse 5s ease-in-out infinite;
}

@keyframes ctaBgPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.cta-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 42, 42, 0.15);
    border-radius: 50%;
    animation: ctaPulseRing 4s ease-out infinite;
    pointer-events: none;
}

.cta-pulse-ring-2 {
    animation-delay: 1.3s;
    width: 450px;
    height: 450px;
}

.cta-pulse-ring-3 {
    animation-delay: 2.6s;
    width: 600px;
    height: 600px;
}

@keyframes ctaPulseRing {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.cta-box {
    text-align: center;
    padding: 100px 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-box:hover {
    border-color: rgba(255, 42, 42, 0.3);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 42, 42, 0.1);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaGlow 4s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--accent-gradient);
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.3);
}

.cta-box::before { top: 0; }
.cta-box::after { bottom: 0; }

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--terminal-green);
    font-size: 11px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    z-index: 1;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.1); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terminal-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--terminal-green);
    animation: badgePulse 2s ease-in-out infinite;
}

.cta-box h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-primary {
    padding: 20px 40px;
    font-size: 15px;
}

.cta-buttons .btn-outline-ghost {
    padding: 19px 38px;
    font-size: 15px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 28px;
    transition: all 0.3s ease;
}

.cta-stat:hover {
    color: var(--text-primary);
}

.cta-stat i {
    color: var(--lobster-red);
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-stat:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.5));
}

.cta-stat-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(255,42,42,0.4), transparent);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--dark-bg), var(--terminal-black));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 42, 42, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lobster-red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-card:hover {
    border-color: rgba(255, 42, 42, 0.3);
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 42, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.15), rgba(255, 107, 53, 0.08));
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--lobster-red);
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 42, 42, 0.1);
}

.stats-card:hover .stats-icon {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 42, 42, 0.3), 0 0 80px rgba(255, 42, 42, 0.1);
    border-color: rgba(255, 42, 42, 0.4);
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.25), rgba(255, 107, 53, 0.15));
}

.stats-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
}

.stats-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-label {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .stats-number {
        font-size: 2.5rem;
    }
    .stats-card {
        padding: 36px 20px;
    }
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--terminal-black), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lobster-red), transparent);
    opacity: 0.3;
}

.community-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lobster-red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.community-card:hover::before {
    opacity: 1;
}

.community-card:hover {
    border-color: rgba(255, 42, 42, 0.3);
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 42, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.community-card .community-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.15), rgba(255, 107, 53, 0.08));
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--lobster-red);
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 42, 42, 0.1);
}

.community-card:hover .community-icon {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 42, 42, 0.3), 0 0 80px rgba(255, 42, 42, 0.1);
    border-color: rgba(255, 42, 42, 0.4);
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.25), rgba(255, 107, 53, 0.15));
}

.community-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.community-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.qr-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.qr-code {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
    border: 1px solid var(--glass-border);
    background: #fff;
    padding: 4px;
}

.qr-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--lobster-red), var(--lobster-orange));
    border-radius: 16px;
    opacity: 0.12;
    z-index: 1;
    filter: blur(12px);
    transition: opacity 0.4s ease;
}

.community-card:hover .qr-glow {
    opacity: 0.25;
}

.community-hint {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.community-card:hover .community-hint {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--terminal-black), #010102);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    position: relative;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
}

.footer-logo {
    height: 48px;
    width: auto;
    position: relative;
    z-index: 2;
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: logoGlow 3s ease-in-out infinite;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.author-info {
    color: var(--text-secondary);
    font-size: 13px;
}

.author-info strong {
    color: var(--lobster-orange);
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 42, 42, 0.05);
    border: 1px solid rgba(255, 42, 42, 0.1);
    color: var(--lobster-red);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-badge:hover {
    background: rgba(255, 42, 42, 0.1);
    transform: translateY(-2px);
}

.footer h5 {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--lobster-red);
    transform: translateX(4px);
}

.security-notice {
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    padding: 20px 24px;
    margin: 50px 0;
    color: var(--alert-yellow);
    font-size: 12px;
    line-height: 1.7;
    font-family: 'JetBrains Mono', monospace;
}

.security-notice strong {
    color: var(--alert-yellow);
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 30px 0 20px;
}

.footer-bottom {
    color: var(--text-secondary);
    font-size: 12px;
    margin: 0;
    letter-spacing: 1px;
}

.footer-brand-text {
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-separator {
    margin: 0 8px;
    opacity: 0.3;
}

.lobster-emoji {
    display: inline-block;
    animation: lobsterBounce 2s ease-in-out infinite;
}

@keyframes lobsterBounce {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ============================================
   MOUSE TRAIL EFFECT
   ============================================ */
.mouse-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9996;
    width: 6px;
    height: 6px;
    background: var(--lobster-red);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px var(--lobster-red), 0 0 20px var(--lobster-red);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-60px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(60px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.85);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   FLOATING PARTICLES
   ============================================ */
.floating-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9995;
    width: 4px;
    height: 4px;
    background: var(--lobster-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--terminal-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--lobster-red), var(--lobster-orange));
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff4444, #ff7733);
}

::selection {
    background: rgba(255, 42, 42, 0.3);
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    body {
        cursor: auto;
    }
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .terminal-container {
        margin-top: 60px;
    }

    .flow-connector {
        display: none;
    }

    .flow-step {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-item {
        padding: 0;
    }

    .timeline-line {
        display: none;
    }

    .step-node {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 16px;
    }

    .cta-pulse-ring {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .flow-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .flow-icon {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .cta-box {
        padding: 50px 28px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .scanlines {
        display: none;
    }

    .cta-stats {
        flex-direction: column;
        gap: 12px;
    }

    .cta-stat-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .step-card {
        padding: 32px 20px;
    }

    .key-num {
        font-size: 2.2rem;
    }

    .btn-primary,
    .btn-outline-ghost {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .terminal-window:hover {
        transform: none;
    }

    .provider-title {
        flex-direction: column;
        gap: 8px;
    }

    .provider-line {
        max-width: 60px;
    }
}
