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

:root {
    --primary: #c084fc;
    --secondary: #fb7185;
    --accent: #22d3ee;
    --bg-dark: #030712;
    --bg-deep: #000000;
    --bg-card: rgba(17, 24, 39, 0.4);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-purple: 0 0 30px rgba(192, 132, 252, 0.5);
    --neon-pink: 0 0 30px rgba(251, 113, 133, 0.5);
    --neon-cyan: 0 0 30px rgba(34, 211, 238, 0.5);
}

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

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

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--bg-dark);
    position: relative;
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.loader.loaded {
    opacity: 0;
    visibility: hidden;
}
.loader-inner {
    text-align: center;
}
.loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 12px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.2s;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 10px var(--primary);
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s, transform 0.1s;
}
.cursor.hover {
    width: 16px;
    height: 16px;
    background: var(--primary);
    transform: translate(-4px, -4px);
}
.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(192, 132, 252, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}
.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
    background: rgba(192, 132, 252, 0.1);
    backdrop-filter: blur(4px);
}

/* ============ BACKGROUNDS ============ */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(192, 132, 252, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 132, 252, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.18) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.18) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(168, 85, 247, 0.18) 0px, transparent 50%);
    filter: blur(80px);
    animation: meshMove 20s ease-in-out infinite;
}
@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-2%, 2%) scale(1.05); }
}

.orbs { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: var(--primary); top: 20%; left: 10%; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: var(--secondary); top: 60%; right: 10%; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: var(--accent); bottom: 10%; left: 30%; animation-delay: -10s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(60px, -40px); }
    66% { transform: translate(-40px, 50px); }
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: 0.04;
    pointer-events: none;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    mix-blend-mode: overlay;
}

/* ============ PARTICLES ============ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    bottom: -10px;
    background: var(--primary);
    border-radius: 50%;
    animation: rise linear infinite;
    box-shadow: 0 0 10px var(--primary);
}
@keyframes rise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-110vh) translateX(50px); opacity: 0; }
}

/* ============ NAV ============ */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}
.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.6) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}
.nav-container.scrolled::before {
    opacity: 0;
}
.nav-container.scrolled {
    padding: 1rem 4rem;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.logo-ring {
    position: absolute;
    left: -8px;
    width: 76px;
    height: 76px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s;
    animation: ringPulse 3s ease-in-out infinite;
}
.logo-container:hover .logo-ring {
    opacity: 0.5;
    transform: scale(1.1);
}
@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192, 132, 252, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(192, 132, 252, 0); }
}
.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(192, 132, 252, 0.3));
    transition: transform 0.4s;
}
.logo-container:hover .logo-img {
    transform: rotate(8deg) scale(1.05);
}
.logo-img-sm {
    height: 40px;
}
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.logo-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    overflow: hidden;
    width: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.nav-links a:hover { color: transparent; }
.nav-links a:hover::before { width: 100%; }

.nav-cta {
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 0 0 rgba(255,255,255,0);
}
.nav-cta:hover {
    box-shadow: 0 0 30px rgba(192, 132, 252, 0.4);
}

/* ============ HERO ============ */
header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 10% 4rem;
    perspective: 1000px;
    position: relative;
    text-align: center;
    flex-direction: column;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(6rem, 15vw, 13rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(192, 132, 252, 0.25);
    z-index: -1;
    letter-spacing: -5px;
    user-select: none;
    transition: transform 0.3s ease-out;
}

.hero-main {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    line-height: 0.85;
    margin-bottom: 2rem;
    letter-spacing: -4px;
    overflow: hidden;
}
.hero-line {
    display: block;
    overflow: hidden;
}
.hero-word {
    display: inline-block;
    background: linear-gradient(to bottom, #fff 30%, rgba(255,255,255,0.2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(110%);
    animation: revealUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-line:nth-child(1) .hero-word { animation-delay: 0.4s; }
.hero-line:nth-child(2) .hero-word { animation-delay: 0.6s; }
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: revealUp 1s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, gradientShift 4s 1.5s ease infinite;
}
@keyframes revealUp {
    to { transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s forwards;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
}

.btn {
    position: relative;
    padding: 1.1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: none;
}
.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1rem;
}
.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
    animation: gradientShift 3s ease infinite;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover {
    color: #fff;
    box-shadow: 0 10px 40px rgba(192, 132, 252, 0.4);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary svg { transition: transform 0.3s; }

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 1.3s forwards;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s 1.5s forwards;
}
.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--glass-border);
    border-radius: 13px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 16px); opacity: 0; }
}
.scroll-indicator span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ============ MARQUEE ============ */
.marquee {
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 40s linear infinite;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}
.marquee-track span {
    text-transform: uppercase;
    letter-spacing: 3px;
}
.marquee-track .dot {
    color: var(--primary);
    font-size: 0.8rem;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ VISUALIZER ============ */
#visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

/* ============ SECTIONS ============ */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    padding: 0.4rem 1rem;
    background: rgba(192, 132, 252, 0.08);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 100px;
    width: fit-content;
}
.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1;
    display: block;
}
.section-header .section-desc {
    display: block;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ SHOWCASE ============ */
.showcase {
    padding: 10rem 5%;
    position: relative;
}
.products-title {
    font-size: clamp(3rem, 7vw, 5.5rem) !important;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    display: inline-block;
}
.products-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0;
    transform: translateY(50px);
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, border-color 0.3s, box-shadow 0.4s;
}
.card.tilting {
    transition: none !important;
}
.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(192, 132, 252, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.card:hover .card-glow { opacity: 1; }
.card[data-color="purple"]:hover { border-color: var(--primary); box-shadow: 0 20px 60px -20px rgba(192, 132, 252, 0.4); }
.card[data-color="pink"]:hover { border-color: var(--secondary); box-shadow: 0 20px 60px -20px rgba(251, 113, 133, 0.4); }
.card[data-color="cyan"]:hover { border-color: var(--accent); box-shadow: 0 20px 60px -20px rgba(34, 211, 238, 0.4); }

.card-num {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--glass-border);
    line-height: 1;
}
.card-preview {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    position: relative;
}
.card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card-preview img { transform: scale(1.1); }
.card-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.1), transparent);
    pointer-events: none;
}

.placeholder-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.05), rgba(34, 211, 238, 0.05));
}
.coming-soon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 3s linear infinite;
}
.cs-ring-2 {
    width: 130px;
    height: 130px;
    border-color: var(--accent);
    border-bottom-color: transparent;
    animation: spin 5s linear infinite reverse;
}
.coming-soon span {
    position: relative;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-main);
    font-weight: 600;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.card-content { padding: 0.5rem 0; }
.tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(192, 132, 252, 0.1);
    border-radius: 100px;
}
.card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}
.feature-list li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: color 0.2s, transform 0.2s;
}
.feature-list li:hover {
    color: #fff;
    transform: translateX(4px);
}
.check {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 132, 252, 0.2);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: all 0.3s;
    cursor: none;
    background: rgba(255, 255, 255, 0.03);
}
.card-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.4);
}
.card-link svg { transition: transform 0.3s; }
.card-link:hover svg { transform: translateX(4px); }

/* ============ FEATURES ============ */
.features-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    cursor: none;
}
.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(192, 132, 252, 0.3);
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.2rem;
    padding: 10px;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    transition: transform 0.3s;
}
.feature-item:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(192, 132, 252, 0.4);
    border-color: var(--primary);
}
.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
}
.feature-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ ABOUT ============ */
.about-section {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.about-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.about-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(192, 132, 252, 0.1), transparent 30%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}
.about-card:hover::before { opacity: 1; }
@keyframes rotate {
    to { transform: rotate(360deg); }
}
.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.about-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.about-card:hover .about-icon-wrap {
    background: var(--primary);
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--neon-purple);
}
.about-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s;
}
.about-card:hover .about-icon { color: #fff; }
.about-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.about-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============ CTA BLOCK ============ */
.cta-block {
    margin-top: 6rem;
    padding: 5rem 3rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.cta-block-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(192, 132, 252, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.15), transparent 50%);
    animation: meshMove 10s ease-in-out infinite;
}
.cta-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -1px;
}
.cta-block p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}
.cta-block .btn { position: relative; }

/* ============ FOOTER ============ */
footer {
    padding: 5rem 4rem 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}
.footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: none;
}
.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-tagline {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-fineprint {
    color: var(--text-muted);
    opacity: 0.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .grid, .features-grid, .about-grid { grid-template-columns: 1fr; }
    .nav-container { padding: 1.5rem 2rem; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat-divider { width: 40px; height: 1px; }
}
@media (max-width: 640px) {
    .nav-cta { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; }
    .cta-group { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .card-num { font-size: 3rem; top: 1rem; right: 1rem; }
}
