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

:root {
    /* ToC cool pastel palette (dark theme) */
    /* Deepened cool palette */
    --primary-color: #7FB3FF;      /* blue */
    --primary-dark: #4F8DFF;       /* deeper blue */
    --secondary-color: #68D8FF;    /* aqua */
    --accent-color: #B693FF;       /* lavender */
    --teal-color: #7FB3FF;         /* brand blue */
    --teal-dark: #5FA2FF;
    --teal-light: #A6D2FF;
    --emerald-color: #5BE8D3;      /* mint */
    --cyan-color: #68D8FF;
    --purple-color: #B693FF;
    --purple-dark: #9A7CFF;
    --purple-light: #D3C4FF;
    --indigo-color: #8EA2FF;
    --violet-color: #B693FF;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-tertiary: #1A1A1A;
    --bg-card: rgba(20, 20, 20, 0.8);
    --bg-overlay: rgba(0, 0, 0, 0.9);
    --border-color: #2A2A2A;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.8);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.9), 0 2px 4px -1px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 10px 15px -3px rgba(142, 162, 255, 0.35), 0 4px 6px -2px rgba(127, 179, 255, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(142, 162, 255, 0.45), 0 10px 10px -5px rgba(127, 179, 255, 0.35);
    --glow-primary: 0 0 22px rgba(127, 179, 255, 0.9);
    --glow-secondary: 0 0 32px rgba(104, 216, 255, 0.85);
    --glow-purple: 0 0 26px rgba(182, 147, 255, 0.9);
    --glow-teal: 0 0 26px rgba(127, 179, 255, 0.7);
    --gradient-primary: linear-gradient(135deg, #4F8DFF 0%, #68D8FF 30%, #5BE8D3 55%, #7FB3FF 75%, #B693FF 100%);
    --gradient-secondary: linear-gradient(135deg, #68D8FF 0%, #7FB3FF 40%, #B693FF 100%);
    --gradient-tertiary: linear-gradient(135deg, #4F8DFF 0%, #68D8FF 50%, #B693FF 100%);
    --gradient-bg: linear-gradient(180deg, #000000 0%, #0A0A0A 50%, #000000 100%);
    --gradient-card: linear-gradient(135deg, rgba(127, 179, 255, 0.22) 0%, rgba(104, 216, 255, 0.22) 25%, rgba(142, 162, 255, 0.22) 55%, rgba(182, 147, 255, 0.22) 100%);
    --mesh-pattern: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.03) 50%, transparent 52%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: none;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 { font-size: 24px; font-weight: 700; color: var(--text-primary); text-transform: lowercase; text-shadow: 0 0 14px rgba(127, 179, 255, 0.8), 0 0 20px rgba(182, 147, 255, 0.5); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover { color: var(--teal-color); text-shadow: 0 0 10px rgba(156, 202, 255, 0.5); }

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(127, 179, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    background-size: 220% 220%;
    animation: gradientShift 10s ease infinite;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(156, 202, 255, 0.6); background: var(--gradient-secondary); }

.nav-cta::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.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.nav-cta:hover::after {
    width: 200px;
    height: 200px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 0 40px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 60% 40%, rgba(8, 145, 178, 0.12) 0%, transparent 40%),
        linear-gradient(180deg, #000000 0%, #0A0A0A 25%, #000000 50%, #0A0A0A 75%, #000000 100%);
    background-image: 
        var(--mesh-pattern),
        radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 60% 40%, rgba(8, 145, 178, 0.12) 0%, transparent 40%),
        linear-gradient(180deg, #000000 0%, #0A0A0A 25%, #000000 50%, #0A0A0A 75%, #000000 100%);
    background-blend-mode: overlay, screen, screen, screen, normal;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Geometric Elements */
.hero-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-geometric::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: heroFloat1 8s ease-in-out infinite;
    filter: blur(1px);
}

.hero-geometric::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.15));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: heroFloat2 10s ease-in-out infinite;
    filter: blur(1px);
}

.hero-shape-1 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(16, 185, 129, 0.12);
    animation: heroFloat3 12s ease-in-out infinite;
    filter: blur(0.5px);
}

.hero-shape-2 {
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent);
    border-radius: 50%;
    animation: heroFloat4 9s ease-in-out infinite;
    filter: blur(1px);
}

.hero-shape-3 {
    position: absolute;
    top: 50%;
    left: 12%;
    width: 35px;
    height: 35px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.12), rgba(99, 102, 241, 0.12));
    transform: rotate(45deg);
    animation: heroFloat5 11s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes heroFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-15px) rotate(270deg) scale(1.1); }
}

@keyframes heroFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) rotate(120deg) scale(1.2); }
    66% { transform: translateY(-10px) rotate(240deg) scale(0.8); }
}

@keyframes heroFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

@keyframes heroFloat4 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.3); opacity: 0.8; }
}

@keyframes heroFloat5 {
    0%, 100% { transform: translateY(0) rotate(45deg) scale(1); }
    25% { transform: translateY(-15px) rotate(135deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(225deg) scale(0.9); }
    75% { transform: translateY(-15px) rotate(315deg) scale(1.1); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(156, 202, 255, 0.2), rgba(174, 235, 255, 0.2), rgba(196, 181, 253, 0.2));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 202, 255, 0.35);
    box-shadow: 0 0 20px rgba(156, 202, 255, 0.6), 0 0 30px rgba(174, 235, 255, 0.4), 0 0 40px rgba(196, 181, 253, 0.3);
    animation: pulse 2s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.1);
}

.hero-title { font-size: 60px; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 24px; text-shadow: 0 0 36px rgba(127, 179, 255, 0.95), 0 0 60px rgba(182, 147, 255, 0.85); animation: titleGlow 3s ease-in-out infinite; }

.gradient-text { background: linear-gradient(135deg, #4F8DFF 0%, #68D8FF 20%, #5BE8D3 45%, #7FB3FF 70%, #B693FF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientText 5s ease-in-out infinite; background-size: 300% 300%; filter: brightness(1.35) contrast(1.25) saturate(1.15); text-shadow: 0 0 14px rgba(127, 179, 255, 1), 0 0 28px rgba(104, 216, 255, 0.9), 0 0 42px rgba(182, 147, 255, 0.9); }

.glow-boost { filter: drop-shadow(0 0 18px rgba(127,179,255,0.9)) drop-shadow(0 0 28px rgba(182,147,255,0.75)); }
.headline-underline { position: relative; }
.headline-underline::after { content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 8px; background: linear-gradient(90deg, rgba(79,141,255,0.0), rgba(79,141,255,0.6), rgba(182,147,255,0.6), rgba(104,216,255,0.6), rgba(79,141,255,0.0)); filter: blur(6px); border-radius: 8px; }

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(127, 179, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    background-size: 220% 220%;
    animation: gradientShift 8s ease infinite;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(156, 202, 255, 0.6);
    background: var(--gradient-secondary);
}

.cta-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.5s;
}

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

.cta-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-primary:hover::after {
    width: 300px;
    height: 300px;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(156, 202, 255, 0.6);
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cta-secondary:hover {
    background: rgba(156, 202, 255, 0.18);
    border-color: rgba(156, 202, 255, 0.85);
    box-shadow: 0 0 20px rgba(156, 202, 255, 0.45);
    transform: translateY(-2px);
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 202, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-secondary:hover::before {
    left: 100%;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.minutes-unit {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    position: relative;
}

/* ToC: hide old geometric decor */
.hero-geometric, .hero-shape-1, .hero-shape-2, .hero-shape-3 { display: none !important; }

/* ToC Soft Gradient Blobs */
.bg-blobs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob { position: absolute; filter: blur(50px); opacity: 0.7; border-radius: 50%; transform: translateZ(0); animation: hueShift 18s linear infinite; }
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle at 30% 30%, #7FB3FF, transparent 60%); top: -140px; left: -140px; animation: blobFloat 12s ease-in-out infinite, hueShift 20s linear infinite; }
.blob-2 { width: 440px; height: 440px; background: radial-gradient(circle at 70% 40%, #68D8FF, transparent 60%); bottom: -160px; right: -100px; animation: blobFloat 14s ease-in-out infinite reverse, hueShift 22s linear infinite; }
.blob-3 { width: 380px; height: 380px; background: radial-gradient(circle at 50% 60%, #B693FF, transparent 60%); top: 18%; right: 28%; animation: blobFloat 16s ease-in-out infinite, hueShift 24s linear infinite; }
.blob-4 { width: 320px; height: 320px; background: radial-gradient(circle at 40% 60%, #5BE8D3, transparent 60%); bottom: 10%; left: 20%; animation: blobFloat 19s ease-in-out infinite reverse, hueShift 26s linear infinite; }
.blob-5 { width: 280px; height: 280px; background: radial-gradient(circle at 60% 40%, #8EA2FF, transparent 60%); top: 8%; right: -60px; animation: blobFloat 21s ease-in-out infinite, hueShift 28s linear infinite; }
@keyframes blobFloat { 0%,100%{transform: translate(0,0) scale(1);} 50%{transform: translate(10px,-20px) scale(1.05);} }
@keyframes hueShift { 0%{ filter: blur(50px) hue-rotate(0deg);} 50%{ filter: blur(55px) hue-rotate(20deg);} 100%{ filter: blur(50px) hue-rotate(0deg);} }

/* Phone mockup */
.phone-mock { position: relative; width: 280px; height: 560px; margin: 0 auto; border-radius: 36px; background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 30px 80px rgba(0,0,0,0.45); transform-style: preserve-3d; transition: transform 0.2s ease; z-index: 1; }
.phone-mock { animation: phoneFloat 10s ease-in-out infinite; }
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 120px; height: 18px; background: rgba(0,0,0,0.6); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
.phone-screen { position: absolute; inset: 18px 12px 12px 12px; background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)); border-radius: 28px; overflow: hidden; backdrop-filter: blur(8px); }
.phone-screen .floating-card { background: rgba(18,18,18,0.8); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.phone-screen .floating-card::before { display: none; }

/* Softer hero background override */
.hero { background: linear-gradient(180deg, #000000 0%, #0A0A0A 60%, #000000 100%); }

/* Softer wave animation */
@keyframes wave { 0%,100%{ transform: scaleY(1);} 50%{ transform: scaleY(1.35);} }

.floating-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-card);
    animation: cardShimmer 3s linear infinite;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.audio-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.wave-bar {
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #4F8DFF 0%, #68D8FF 50%, #B693FF 100%);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite, waveColor 6s linear infinite;
    box-shadow: 0 0 10px rgba(156, 202, 255, 0.6);
}

.wave-bar:nth-child(1) { animation-delay: 0s; height: 16px; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 24px; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 28px; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 18px; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: 22px; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; height: 26px; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; height: 20px; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Color cycle for audio bars */
@keyframes waveColor {
  0% { background: linear-gradient(135deg, #4F8DFF, #68D8FF); }
  33% { background: linear-gradient(135deg, #68D8FF, #5BE8D3); }
  66% { background: linear-gradient(135deg, #7FB3FF, #B693FF); }
  100% { background: linear-gradient(135deg, #4F8DFF, #68D8FF); }
}

/* Gentle float for phone mock */
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Reusable shifting gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(156, 202, 255, 0.5);
    position: relative;
    z-index: 1;
}

.track-duration {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-card);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-primary);
    animation: pulse 2s ease-in-out infinite;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 25px rgba(156, 202, 255, 0.8), 0 0 40px rgba(196, 181, 253, 0.6);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 45% 15%, rgba(20, 184, 166, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 65% 85%, rgba(6, 182, 212, 0.08) 0%, transparent 35%),
        linear-gradient(180deg, #000000 0%, #0A0A0A 30%, #000000 60%, #0A0A0A 90%, #000000 100%);
    background-image: 
        var(--mesh-pattern),
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 45% 15%, rgba(20, 184, 166, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 65% 85%, rgba(6, 182, 212, 0.08) 0%, transparent 35%),
        linear-gradient(180deg, #000000 0%, #0A0A0A 30%, #000000 60%, #0A0A0A 90%, #000000 100%);
    background-blend-mode: overlay, screen, screen, screen, normal;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 50%, rgba(245, 158, 11, 0.2) 100%);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #14B8A6 0%, #06B6D4 25%, #10B981 50%, #0891B2 75%, #0D9488 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.8), 0 0 40px rgba(6, 182, 212, 0.6), 0 0 60px rgba(16, 185, 129, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    filter: brightness(1.1) contrast(1.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 25% 15%, rgba(20, 184, 166, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 85%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0A0A0A 25%, #000000 50%, #0A0A0A 75%, #000000 100%);
    background-image: 
        var(--mesh-pattern),
        radial-gradient(circle at 25% 15%, rgba(20, 184, 166, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 85%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0A0A0A 25%, #000000 50%, #0A0A0A 75%, #000000 100%);
    background-blend-mode: overlay, screen, screen, normal;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-primary);
    background-image: var(--mesh-pattern);
    background-blend-mode: overlay;
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #14B8A6 0%, #06B6D4 25%, #10B981 50%, #0891B2 75%, #0D9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.8), 0 0 40px rgba(6, 182, 212, 0.6), 0 0 60px rgba(16, 185, 129, 0.4);
    animation: stepGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    filter: brightness(1.1) contrast(1.1);
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-in-out infinite;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(127, 179, 255, 0.35);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: var(--bg-primary);
    background-image:
        radial-gradient(600px 300px at 15% 25%, rgba(79, 141, 255, 0.15), transparent),
        radial-gradient(500px 260px at 85% 75%, rgba(182, 147, 255, 0.12), transparent);
    background-blend-mode: screen, normal;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--gradient-card);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent, rgba(6, 182, 212, 0.1), transparent);
    animation: testimonialSpin 10s linear infinite;
}

.testimonial-card:hover {
    transform: translateY(-4px) rotate(1deg);
    box-shadow: var(--glow-secondary);
    border-color: var(--secondary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.user-title {
    font-size: 14px;
    color: var(--text-secondary);
}

.rating {
    color: var(--accent-color);
}

.rating i {
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Pricing */
.pricing {
    padding: 60px 0;
    background: var(--bg-primary);
    background-image:
        radial-gradient(700px 320px at 12% 80%, rgba(104, 216, 255, 0.12), transparent),
        radial-gradient(600px 280px at 88% 20%, rgba(182, 147, 255, 0.12), transparent);
    background-blend-mode: screen, normal;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: pricingGlow 2s ease-in-out infinite;
}

.pricing-card.popular {
    border-color: var(--teal-color);
    transform: scale(1.05);
    box-shadow: var(--glow-teal);
    animation: popularPulse 2s ease-in-out infinite;
    padding-top: 72px; /* room for badge so it doesn't sit on top line */
}

.popular-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4F8DFF, #B693FF);
    color: white;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.pricing-price {
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(127, 179, 255, 0.6);
    background: transparent;
    color: rgba(127, 179, 255, 0.9);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #9CCAFF 0%, #AEEBFF 50%, #C4B5FD 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(156, 202, 255, 0.45);
    transform: translateY(-2px);
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.pricing-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* CTA Section */
.cta {
    padding: 40px 0 20px;
    background: var(--bg-primary);
    background-image:
        radial-gradient(600px 260px at 25% 30%, rgba(127, 179, 255, 0.12), transparent),
        radial-gradient(500px 220px at 75% 70%, rgba(104, 216, 255, 0.12), transparent),
        var(--gradient-tertiary);
    background-blend-mode: screen, screen, normal;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(20, 184, 166, 0.5);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    background-image: var(--mesh-pattern);
    background-blend-mode: overlay;
    color: var(--text-primary);
    padding: 20px 0 15px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.footer-logo p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--teal-color);
    color: white;
    border-color: var(--teal-color);
    box-shadow: var(--glow-teal);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--teal-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid,
    .testimonials-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Dark Theme Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(20, 184, 166, 0.8), 0 0 50px rgba(6, 182, 212, 0.6); }
    50% { text-shadow: 0 0 50px rgba(20, 184, 166, 1), 0 0 70px rgba(6, 182, 212, 0.8), 0 0 90px rgba(99, 102, 241, 0.6); }
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 100% 75%; }
    75% { background-position: 0% 75%; }
    100% { background-position: 0% 50%; }
}

@keyframes cardShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--glow-teal); }
    50% { transform: scale(1.1); box-shadow: 0 0 25px rgba(20, 184, 166, 0.8); }
}

@keyframes stepGlow {
    0%, 100% { box-shadow: var(--glow-teal); }
    50% { box-shadow: 0 0 25px rgba(20, 184, 166, 0.8), 0 0 35px rgba(6, 182, 212, 0.6); }
}

@keyframes ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

@keyframes testimonialSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes popularPulse {
    0%, 100% { transform: scale(1.05); box-shadow: var(--glow-teal); }
    50% { transform: scale(1.08); box-shadow: 0 0 40px rgba(20, 184, 166, 0.8); }
}

/* Enhanced Geometric Background Effect */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    animation: geometricFloat 30s linear infinite;
}

.geometric-shape.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(20, 184, 166, 0.15);
    background: transparent;
    border-top: none;
    filter: blur(0.5px);
}

.geometric-shape.hexagon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    filter: blur(0.5px);
}

.geometric-shape.diamond {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.12));
    transform: rotate(45deg);
    filter: blur(0.5px);
}

.geometric-shape.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
    filter: blur(0.5px);
}

.geometric-shape.square {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.12), rgba(6, 182, 212, 0.1));
    filter: blur(0.5px);
}

.geometric-shape.pentagon {
    width: 30px;
    height: 30px;
    background: linear-gradient(60deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.12));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    filter: blur(0.5px);
}

.geometric-shape.octagon {
    width: 35px;
    height: 35px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.12), rgba(124, 58, 237, 0.1));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    filter: blur(0.5px);
}

/* Floating Geometric Elements */
.floating-geometric {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.7;
    animation: floatElement 20s infinite ease-in-out;
}

.floating-element.hex {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    filter: blur(1px);
}

.floating-element.tri {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(20, 184, 166, 0.2);
    filter: blur(1px);
}

.floating-element.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent);
    filter: blur(1px);
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.1);
    }
}

@keyframes geometricFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    25% {
        transform: translateY(75vh) rotate(90deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
    75% {
        transform: translateY(25vh) rotate(270deg) scale(1);
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

.geometric-shape:nth-child(odd) {
    animation-duration: 35s;
    animation-direction: reverse;
}

.geometric-shape:nth-child(3n) {
    animation-duration: 40s;
    animation-delay: -10s;
}

.geometric-shape:nth-child(4n) {
    animation-duration: 25s;
    animation-delay: -5s;
}

.geometric-shape:nth-child(5n) {
    animation-duration: 45s;
    animation-delay: -15s;
}

/* Mesh Grid Overlay */
.mesh-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: meshMove 20s linear infinite;
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 10px currentColor;
}

.glow-border {
    box-shadow: 0 0 20px currentColor;
}

/* Enhanced Hover Effects */
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
    transform: translateY(-2px);
}

/* Interactive Mesh Effect */
.mesh-interactive {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

/* Enhanced Card Interactions */
.card-enhanced {
    position: relative;
    overflow: hidden;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

.card-enhanced:hover::before {
    left: 100%;
}

/* Dynamic Glow Effects */
.dynamic-glow {
    animation: dynamicGlow 3s ease-in-out infinite;
}

@keyframes dynamicGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(20, 184, 166, 0.6);
    }
}

/* Pulse Mesh Animation */
.pulse-mesh {
    animation: pulseMesh 4s ease-in-out infinite;
}

@keyframes pulseMesh {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Enhanced Button Effects */
.button-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button-enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.button-enhanced:hover::after {
    width: 300px;
    height: 300px;
}

/* Loading Animation */
.loading-pulse {
    animation: loadingPulse 1.5s ease-in-out infinite;
}

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