/* ===================================
   FaeCursor Pro - Unique Landing Page
   Clean, Bold, Distinctive
   =================================== */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --darker: #080808;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --accent: #c084fc;
    --accent-bright: #e879f9;
    --accent-dim: #9333ea;
    --glow: rgba(192, 132, 252, 0.4);
    
    --gold: #fbbf24;
    --green: #4ade80;
    --red: #f87171;
    
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Light theme variables */
[data-theme="light"] {
    --black: #ffffff;
    --dark: #f5f5f5;
    --darker: #fafafa;
    --white: #0a0a0a;
    --gray-100: #1a1a1a;
    --gray-200: #2a2a2a;
    --gray-400: #5a5a5a;
    --gray-500: #737373;
    --gray-600: #a3a3a3;
    --gray-800: #e5e5e5;
    --gray-900: #f0f0f0;
    
    --accent: #9333ea;
    --accent-bright: #c084fc;
    --accent-dim: #7c3aed;
    --glow: rgba(147, 51, 234, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Skip link (accessibility + SEO) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

::selection {
    background: var(--accent);
    color: var(--black);
}

/* Canvas */
#cursor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    will-change: contents;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.highlight {
    color: var(--accent);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    will-change: transform;
    backface-visibility: hidden;
}

.btn-glow {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 0 30px var(--glow);
}

.btn-glow:hover {
    background: var(--accent-bright);
    box-shadow: 0 0 50px var(--glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-400);
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

/* Light theme - btn-white should stay white */
[data-theme="light"] .btn-white {
    background: #ffffff;
    color: #0a0a0a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-white:hover {
    background: #f5f5f5;
}

.btn-ghost-light {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Theme Toggle Button - Simple with Flip Animation */
.theme-toggle {
    background: transparent;
    border: 1.5px solid var(--gray-600);
    color: var(--gray-400);
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--white);
    color: var(--white);
    transform: scale(1.05);
}

.theme-toggle i {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Sun icon - rotates in from left */
.theme-toggle .fa-sun {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Moon icon - rotates in from right */
.theme-toggle .fa-moon {
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%) rotate(0deg);
}

/* Dark mode - show sun in center, moon hidden on right */
[data-theme="dark"] .theme-toggle .fa-sun {
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(360deg);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    right: -40px;
    opacity: 0;
    transform: translate(0, -50%) rotate(-180deg);
}

/* Light mode - show moon in center, sun hidden on left */
[data-theme="light"] .theme-toggle .fa-sun {
    left: -40px;
    opacity: 0;
    transform: translate(0, -50%) rotate(180deg);
}

[data-theme="light"] .theme-toggle .fa-moon {
    right: 50%;
    opacity: 1;
    transform: translate(50%, -50%) rotate(-360deg);
}

@media (max-width: 768px) {
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
    will-change: padding, background;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-800);
    -webkit-backdrop-filter: blur(20px);
}

/* Light theme navbar scrolled state */
[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--gray-800);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    position: relative;
}

.logo-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent);
    filter: blur(20px);
    opacity: 0.4;
    left: -5px;
}

.logo-icon {
    font-size: 24px;
    color: var(--accent);
}

.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.logo-text span {
    color: var(--accent);
}

.logo-tagline {
    font-size: 10px;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 15px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.mobile-toggle span { top: 19px; }
.mobile-toggle::before { content: ''; top: 12px; }
.mobile-toggle::after { content: ''; top: 26px; }

.mobile-toggle.active span { opacity: 0; }
.mobile-toggle.active::before { top: 19px; transform: rotate(45deg); }
.mobile-toggle.active::after { top: 19px; transform: rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 24px;
    border-bottom: 1px solid var(--gray-800);
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

/* Light theme mobile nav */
[data-theme="light"] .mobile-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-800);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-800);
}

.mobile-nav a:hover {
    color: var(--white);
}

/* Get Pro button in hamburger menu: keep text visible on accent background */
.mobile-nav a.btn-glow {
    color: var(--black);
    border-bottom-color: var(--gray-800);
    text-align: center;
}
.mobile-nav a.btn-glow:hover {
    color: var(--black);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-dim);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-bright);
    top: 40%;
    left: 30%;
    animation: float 25s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.launch-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 32px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid var(--black);
    margin-left: -10px;
}

.avatars span:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 14px;
    color: var(--gray-500);
}

.proof-text strong {
    color: var(--white);
}

/* Demo Window */
.hero-visual {
    position: relative;
}

.demo-window {
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255,255,255,0.05),
        0 20px 50px rgba(0,0,0,0.5);
}

/* Light theme demo window */
[data-theme="light"] .demo-window {
    background: var(--darker);
    border: 1px solid var(--gray-600);
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.05),
        0 20px 50px rgba(0,0,0,0.15);
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--gray-900);
    border-bottom: 1px solid var(--gray-800);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.window-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

.window-content {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 30% 30%, rgba(192, 132, 252, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

/* Demo: Pro-style screen effect (snowfall) – canvas-based, like Pro plugin */
.demo-screen-effect {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

#demo-snowfall-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.demo-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 14px;
}

.demo-type-wrap {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 5;
}

/* Blinking cursor so visitors notice they can type */
.demo-type-cursor {
    position: absolute;
    left: 14px;
    top: 12px;
    width: 2px;
    height: 1.25em;
    background: var(--accent);
    pointer-events: none;
    animation: demoCursorBlink 1s step-end infinite;
}
.demo-type-cursor.hidden {
    opacity: 0;
    animation: none;
}
@keyframes demoCursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.demo-type-input {
    width: 100%;
    padding: 12px 14px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    color: var(--gray-300);
    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;
    resize: none;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-type-input::placeholder {
    color: var(--gray-500);
}

.demo-type-input:focus {
    border-color: var(--gray-600);
    box-shadow: 0 0 0 1px var(--gray-600);
}

/* Demo: Pro-like Spark (cursor) */
.demo-spark {
    animation: demoSparkMove 0.8s ease-out forwards;
}

@keyframes demoSparkMove {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
    100% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0); opacity: 0; }
}

.demo-spark-particle {
    animation: demoSparkBurst 0.5s ease-out forwards;
}

@keyframes demoSparkBurst {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0); opacity: 0; }
}

/* Demo: Pro-like falling letter (keyboard) */
.demo-falling-letter {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 22px;
    user-select: none;
    pointer-events: none;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    color: var(--accent-bright);
    z-index: 12;
    will-change: transform, opacity;
    transform-origin: center center;
    animation: demoFallingLetter 1.4s ease-in forwards;
}

@keyframes demoFallingLetter {
    0% { transform: translate(var(--dx), 0) rotate(0deg); opacity: 1; }
    70% { transform: translate(var(--dx), 90px) rotate(var(--rot)); opacity: 1; }
    100% { transform: translate(var(--dx), 100px) rotate(var(--rot)); opacity: 0; }
}

.hint-cursor {
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--glow));
    animation: gentleFloat 2.5s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.badge-icon {
    font-size: 18px;
}

.badge-1 {
    top: -20px;
    right: -30px;
    animation: floatBadge 6s ease-in-out infinite;
}

.badge-2 {
    top: 50%;
    left: -50px;
    animation: floatBadge 5s ease-in-out infinite 1s;
}

.badge-3 {
    bottom: 120px;
    right: -20px;
    animation: floatBadge 7s ease-in-out infinite 2s;
}

/* Scroll Cue */
.scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gray-600), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ========== LOGOS ========== */
.logos {
    padding: 60px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.logos p {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-500);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item i {
    font-size: 24px;
}

.divi {
    font-size: 24px;
    font-weight: 700;
}

/* ========== FEATURES ========== */
.features {
    padding: 120px 0;
}

.features-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
}

/* Light theme feature main */
[data-theme="light"] .feature-main {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid var(--gray-600);
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 200px;
    height: 200px;
}

/* Effect Demo Slides */
.effect-demo-slide {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.effect-demo-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Cursor Demo */
.cursor-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--black);
    position: relative;
    z-index: 2;
    animation: cursorPulse 3s ease-in-out infinite;
}

.trail {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.3;
}

.trail-1 {
    animation: trail 3s ease-in-out infinite;
}

.trail-2 {
    animation: trail 3s ease-in-out infinite 0.2s;
    width: 40px;
    height: 40px;
}

.trail-3 {
    animation: trail 3s ease-in-out infinite 0.4s;
    width: 24px;
    height: 24px;
}

/* Keyboard Demo */
.keyboard-keys {
    display: flex;
    gap: 10px;
    z-index: 2;
}

.demo-key {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border: 2px solid var(--gray-600);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    animation: demoKeyTap 2s ease-in-out infinite;
}

.k1 { animation-delay: 0s; }
.k2 { animation-delay: 0.25s; }
.k3 { animation-delay: 0.5s; }

@keyframes demoKeyTap {
    0%, 60%, 100% { 
        transform: translateY(0); 
        background: var(--gray-800);
        border-color: var(--gray-600);
        color: var(--white);
    }
    10% { 
        transform: translateY(4px); 
        background: var(--accent-dim);
        border-color: var(--accent);
        color: var(--white);
    }
}

/* Light theme key animation */
[data-theme="light"] .demo-key {
    animation: demoKeyTapLight 2s ease-in-out infinite;
}

[data-theme="light"] .k1 { animation-delay: 0s; }
[data-theme="light"] .k2 { animation-delay: 0.25s; }
[data-theme="light"] .k3 { animation-delay: 0.5s; }

@keyframes demoKeyTapLight {
    0%, 60%, 100% { 
        transform: translateY(0); 
        background: #e5e5e5;
        border-color: #a3a3a3;
        color: #7c3aed;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    10% { 
        transform: translateY(4px); 
        background: #c084fc;
        border-color: #e879f9;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(192, 132, 252, 0.6);
    }
}

.key-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ks {
    position: absolute;
    font-size: 18px;
    opacity: 0;
    animation: ksFloat 2s ease-out infinite;
}

.ks1 { left: 25%; top: 50%; animation-delay: 0s; color: #c084fc; }
.ks2 { left: 45%; top: 45%; animation-delay: 0.25s; color: #e879f9; }
.ks3 { left: 65%; top: 50%; animation-delay: 0.5s; color: #fbbf24; }
.ks4 { left: 35%; top: 55%; animation-delay: 0.35s; color: #a855f7; }
.ks5 { left: 55%; top: 48%; animation-delay: 0.6s; color: #6366f1; }

@keyframes ksFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 1; transform: translateY(-15px) scale(1.2); }
    100% { opacity: 0; transform: translateY(-50px) scale(0.5); }
}

/* Screen/Snow Demo */
.snow-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
}

.snow {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: snowDrop 3s linear infinite;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Light theme - colorful snow particles */
[data-theme="light"] .snow {
    background: #c084fc;
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.6);
}

.sn1 { left: 15%; animation-delay: 0s; width: 6px; height: 6px; }
.sn2 { left: 30%; animation-delay: 0.4s; }
.sn3 { left: 45%; animation-delay: 0.8s; width: 5px; height: 5px; }
.sn4 { left: 60%; animation-delay: 1.2s; }
.sn5 { left: 75%; animation-delay: 1.6s; width: 7px; height: 7px; }
.sn6 { left: 25%; animation-delay: 2s; width: 4px; height: 4px; }
.sn7 { left: 55%; animation-delay: 2.4s; width: 6px; height: 6px; }
.sn8 { left: 85%; animation-delay: 2.8s; }

@keyframes snowDrop {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% { top: 110%; opacity: 0; }
}

/* Feature Info Slides */
.feature-info {
    position: relative;
}

.feature-info-slide {
    display: none;
}

.feature-info-slide.active {
    display: block;
    animation: fadeInText 0.5s ease;
}

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

/* Slide Tabs */
.slide-indicators {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.slide-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-full);
    color: var(--gray-500);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.slide-tab i {
    font-size: 12px;
}

.slide-tab:hover {
    background: var(--gray-700);
    color: var(--gray-300);
}

.slide-tab:active,
.slide-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.feature-info h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-info p {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
}

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

.feature-card {
    padding: 32px;
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Light theme cards - better visibility */
[data-theme="light"] .feature-card {
    background: var(--darker);
    border: 1px solid var(--gray-600);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    border-color: var(--gray-600);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 132, 252, 0.1);
    border-radius: var(--radius);
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== EFFECT TYPES ========== */
.effect-types {
    padding: 120px 0;
    background: var(--darker);
}

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

.effect-type-card {
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.effect-type-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-5px);
}

.effect-type-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    overflow: hidden;
}

/* Cursor Visual */
.cursor-visual {
    position: relative;
}

.cursor-demo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    position: relative;
    z-index: 2;
    animation: cursorBob 2s ease-in-out infinite;
}

.cursor-trails {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trail-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: trailPulse 2s ease-in-out infinite;
}

.trail-dot:nth-child(1) { animation-delay: 0s; left: -20px; top: 10px; }
.trail-dot:nth-child(2) { animation-delay: 0.15s; left: -35px; top: 20px; background: #e879f9; }
.trail-dot:nth-child(3) { animation-delay: 0.3s; left: -50px; top: 25px; background: #a855f7; }
.trail-dot:nth-child(4) { animation-delay: 0.45s; left: -60px; top: 28px; background: #6366f1; }
.trail-dot:nth-child(5) { animation-delay: 0.6s; left: -70px; top: 30px; background: #818cf8; }

@keyframes cursorBob {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -10px); }
}

@keyframes trailPulse {
    0% { opacity: 0; transform: scale(0.5); }
    20% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.3); }
}

/* Keyboard Visual */
.keyboard-visual {
    position: relative;
}

.keyboard-demo {
    display: flex;
    gap: 8px;
    z-index: 2;
    position: relative;
}

.key {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border: 1px solid var(--gray-600);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    animation: keyTap 1.5s ease-in-out infinite;
}

.key-1 { animation-delay: 0s; }
.key-2 { animation-delay: 0.3s; }
.key-3 { animation-delay: 0.6s; }

@keyframes keyTap {
    0%, 70%, 100% { transform: translateY(0); background: var(--gray-800); }
    10% { transform: translateY(3px); background: var(--gray-700); }
}

.keyboard-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 16px;
    color: var(--accent);
    opacity: 0;
    animation: sparkleFloat 1.5s ease-out infinite;
}

.s1 { top: 30%; left: 25%; animation-delay: 0s; color: #c084fc; }
.s2 { top: 25%; left: 45%; animation-delay: 0.3s; color: #e879f9; }
.s3 { top: 35%; left: 65%; animation-delay: 0.6s; color: #fbbf24; }
.s4 { top: 40%; left: 35%; animation-delay: 0.9s; color: #a855f7; }

@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 1; transform: translateY(-10px) scale(1); }
    100% { opacity: 0; transform: translateY(-40px) scale(0.5); }
}

/* Screen Visual */
.screen-visual {
    position: relative;
}

.screen-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: particleFall 4s linear infinite;
}

.p1 { left: 10%; animation-delay: 0s; background: #c084fc; }
.p2 { left: 25%; animation-delay: 0.5s; background: #e879f9; }
.p3 { left: 40%; animation-delay: 1s; background: #a855f7; }
.p4 { left: 55%; animation-delay: 1.5s; background: #6366f1; }
.p5 { left: 70%; animation-delay: 2s; background: #818cf8; }
.p6 { left: 85%; animation-delay: 2.5s; background: #f472b6; }
.p7 { left: 18%; animation-delay: 3s; background: #fbbf24; }
.p8 { left: 62%; animation-delay: 3.5s; background: #c084fc; }

@keyframes particleFall {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

/* Effect Type Info */
.effect-type-info {
    padding: 24px;
}

.effect-type-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 132, 252, 0.1);
    border-radius: var(--radius);
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 16px;
}

.effect-type-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.effect-type-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.effect-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.effect-list li {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-full);
    color: var(--gray-400);
}

/* ========== COMPARISON ========== */
.comparison {
    padding: 120px 0;
    background: var(--darker);
}

.compare-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.compare-card {
    display: flex;
    flex-direction: column;
}

.compare-card {
    padding: 40px;
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    position: relative;
}

/* Light theme compare cards */
[data-theme="light"] .compare-card {
    background: var(--darker);
    border: 1px solid var(--gray-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.compare-card.pro {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-color: var(--accent-dim);
}

.pro-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.compare-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-800);
}

.compare-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.compare-price {
    font-size: 15px;
    color: var(--gray-500);
}

.compare-price strong {
    color: var(--accent);
    font-size: 24px;
}

.compare-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-800);
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-list li i {
    width: 20px;
    font-size: 12px;
}

.compare-list li.included i { color: var(--green); }
.compare-list li.limited i { color: var(--gold); }
.compare-list li.excluded i { color: var(--gray-600); }
.compare-list li.excluded { color: var(--gray-600); }

/* ========== PRICING ========== */
.pricing {
    padding: 120px 0;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-full);
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all 0.2s;
}

.toggle-btn.active {
    background: var(--white);
    color: var(--black);
}

.save-tag {
    font-size: 11px;
    padding: 3px 8px;
    background: var(--accent);
    color: var(--black);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    padding: 40px 32px;
    background: var(--dark);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

/* Light theme price cards */
[data-theme="light"] .price-card {
    background: var(--darker);
    border: 1px solid var(--gray-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-card:hover {
    border-color: var(--gray-600);
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-color: var(--accent);
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.price-header {
    margin-bottom: 24px;
}

.price-header h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.price-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.price-amount {
    margin-bottom: 20px;
}

.price-old {
    font-size: 16px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-right: 8px;
}

.price-now {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.price-period {
    font-size: 15px;
    color: var(--gray-500);
}

.price-after-promo {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
    font-weight: 500;
}

.pricing-promo-note {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.price-sites {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
}

.price-sites i {
    color: var(--accent);
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-400);
}

.price-features i {
    color: var(--green);
    font-size: 12px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
    font-size: 14px;
    color: var(--gray-500);
}

.guarantee i {
    color: var(--green);
}

/* ========== FAQ ========== */
.faq {
    padding: 120px 0;
    background: var(--darker);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-800);
}

/* Light theme FAQ items */
[data-theme="light"] .faq-item {
    border-bottom: 1px solid var(--gray-600);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.faq-trigger i {
    font-size: 14px;
    color: var(--gray-500);
    transition: transform 0.3s;
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-content p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 120px 0;
}

.cta-box {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--accent-dim) 0%, #6366f1 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
}

/* Light theme CTA box - better contrast */
[data-theme="light"] .cta-box {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
}

[data-theme="light"] .cta-box h2,
[data-theme="light"] .cta-box p {
    color: var(--black);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: var(--accent-bright);
    filter: blur(150px);
    opacity: 0.3;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--gray-800);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    color: var(--gray-400);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--glow);
}

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

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
    font-size: 13px;
    color: var(--gray-600);
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.7s ease-out;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent-inner.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 260px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--accent-bright);
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.cookie-btn-refuse {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    background: transparent;
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cookie-btn-refuse:hover {
    color: var(--white);
    border-color: var(--gray-600);
    background: var(--gray-900);
}

.cookie-btn-accept {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn-accept:hover {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
    box-shadow: 0 0 20px var(--glow);
}

@media (max-width: 768px) {
    .cookie-consent-inner.container {
        padding: 0 20px;
    }
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 16px;
    }
    .cookie-consent-actions {
        justify-content: center;
        margin-left: 0;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes trail {
    0% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(-30px, 30px); opacity: 0.2; }
    100% { transform: translate(-60px, 60px); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero .container {
        gap: 40px;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* Hide demo window on tablet and mobile */
    .hero-visual {
        display: none;
    }
    
    .scroll-cue {
        display: none;
    }
    
    /* Center section headers on tablet and mobile */
    .section-label,
    .section-title {
        text-align: center;
    }
    
    .features-layout {
        align-items: center;
    }
    
    .feature-main {
        grid-template-columns: 1fr;
        padding: 32px;
        justify-items: center;
        text-align: center;
    }
    
    .feature-visual {
        margin: 0 auto;
    }
    
    .feature-info {
        text-align: center;
    }
    
    .slide-indicators {
        justify-content: center;
        gap: 8px;
    }
    
    .slide-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .slide-tab i {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .effect-types-grid {
        justify-items: center;
    }
    
    .effect-type-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .effect-types-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .compare-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .billing-toggle {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .logos .container {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .logos .container p {
        text-align: center;
    }
    
    .logo-strip {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: flex;
        gap: 8px;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .nav-actions .theme-toggle {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features .container,
    .comparison .container,
    .pricing .container,
    .effect-types .container,
    .logos .container,
    .faq .container {
        text-align: center;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .feature-main {
        padding: 24px;
        justify-items: center;
    }
    
    .feature-visual {
        margin: 0 auto;
    }
    
    .feature-info h3 {
        font-size: 24px;
    }
    
    .slide-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .slide-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .slide-tab i {
        font-size: 14px;
    }
    
    .slide-tab span {
        display: inline;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-card {
        padding: 24px;
        text-align: center;
        width: 100%;
        max-width: 400px;
    }
    
    .comparison {
        padding: 80px 0;
    }
    
    .compare-cards {
        justify-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .compare-card {
        padding: 30px 24px;
        width: 100%;
        max-width: 400px;
    }
    
    .compare-header {
        text-align: center;
    }
    
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-grid {
        justify-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .price-card {
        width: 100%;
        max-width: 400px;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
        border-radius: var(--radius);
        justify-content: center;
    }
    
    .toggle-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
    }
    
    .price-card {
        padding: 32px 24px;
    }
    
    .price-header {
        text-align: center;
    }
    
    .price-now {
        font-size: 40px;
    }
    
    .logos .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logos .container p {
        text-align: center;
    }
    
    .logo-strip {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .logo-item {
        font-size: 13px;
    }
    
    .effect-types-grid {
        justify-items: center;
    }
    
    .effect-type-card {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-list {
        margin-left: auto;
        margin-right: auto;
    }
    
    .logo-item i {
        font-size: 20px;
    }
    
    .effect-types {
        padding: 80px 0;
    }
    
    .effect-type-visual {
        height: 160px;
    }
    
    .faq {
        padding: 80px 0;
    }
    
    .faq-trigger {
        font-size: 15px;
        padding: 20px 0;
    }
    
    .cta-box {
        padding: 50px 24px;
    }
    
    .cta-box h2 {
        font-size: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-col {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 20px;
    }
    
    .slide-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .slide-tab i {
        font-size: 15px;
    }
    
    .logos {
        padding: 40px 0;
    }
    
    .logos .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo-strip {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: center;
        align-items: center;
    }
    
    .section-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .effect-demo-large {
        width: 150px;
        height: 150px;
    }
    
    .cursor-icon {
        width: 60px;
        height: 60px;
    }
    
    .cursor-icon svg {
        width: 32px;
        height: 32px;
    }
}
