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

      :root {
        --primary: #8b5cf6;
        --primary-dark: #7c3aed;
        --primary-light: #a78bfa;
        --accent: #06b6d4;
        --surface: #ffffff;
        --background: #fafafa;
        --card: #ffffff;
        --text-primary: #0f172a;
        --text-secondary: #64748b;
        --text-muted: #94a3b8;
        --border: #e2e8f0;
        --gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
        --gradient-dark: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
        --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      }

      body {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        background: var(--background);
        color: var(--text-primary);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        opacity: 0;
        transition: opacity 0.8s ease-out;
      }

      body.loaded {
        opacity: 1;
      }

      
      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
      }

      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.05;
        background-image: radial-gradient(circle at 25% 25%, var(--primary) 0%, transparent 50%),
                          radial-gradient(circle at 75% 75%, var(--accent) 0%, transparent 50%);
        transform: translateZ(0);
      }

      /* Parallax Elements */
      .parallax-bg {
        position: absolute;
        width: 100%;
        height: 120%;
        top: -10%;
        left: 0;
        pointer-events: none;
        z-index: 1;
      }

      .parallax-circle {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        opacity: 0.03;
        animation: float-slow 20s ease-in-out infinite;
      }

      .parallax-circle:nth-child(1) {
        width: 300px;
        height: 300px;
        top: 10%;
        left: -5%;
        animation-delay: 0s;
      }

      .parallax-circle:nth-child(2) {
        width: 200px;
        height: 200px;
        top: 70%;
        right: -3%;
        animation-delay: 7s;
      }

      .parallax-circle:nth-child(3) {
        width: 150px;
        height: 150px;
        top: 40%;
        left: 80%;
        animation-delay: 14s;
      }

      .parallax-triangle {
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        opacity: 0.02;
        animation: rotate-slow 30s linear infinite;
      }

      .parallax-triangle:nth-child(4) {
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 87px solid var(--primary);
        top: 20%;
        right: 20%;
        animation-delay: 10s;
      }

      .parallax-triangle:nth-child(5) {
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 52px solid var(--accent);
        top: 80%;
        left: 15%;
        animation-delay: 5s;
        animation-direction: reverse;
      }

      @keyframes float-slow {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        33% { transform: translateY(-30px) rotate(120deg); }
        66% { transform: translateY(20px) rotate(240deg); }
      }

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

      .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
        transform: translateZ(0);
      }

      .hero-text {
        opacity: 0;
        transform: translateY(50px);
        animation: slideInUp 1s ease-out 0.3s forwards;
      }

      .hero-visual {
        opacity: 0;
        transform: translateY(50px);
        animation: slideInUp 1s ease-out 0.6s forwards;
      }

      .hero-text h1 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
      }

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

      .hero-text p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.7;
      }

      .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .btn-primary {
        background: var(--gradient);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        border: none;
        cursor: pointer;
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
      }

      .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        padding: 1rem 2rem;
        border: 2px solid var(--border);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .btn-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
      }

      /* Hero Visual */
      .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transform: translateY(50px);
        animation: slideInUp 1s ease-out 0.6s forwards;
      }

      .hero-card {
        background: var(--surface);
        border-radius: 24px;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border);
        position: relative;
        max-width: 400px;
        width: 100%;
        transform: translateZ(0);
        transition: transform 0.3s ease;
      }

      .hero-card:hover {
        transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
      }

      .hero-card::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: var(--gradient);
        border-radius: 24px;
        z-index: -1;
        opacity: 0.1;
      }

      .card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .card-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
      }

      .card-info h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
      }

      .card-info p {
        color: var(--text-secondary);
        font-size: 0.9rem;
      }

      .card-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .stat {
        text-align: center;
        padding: 1rem;
        background: var(--background);
        border-radius: 12px;
      }

      .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
      }

      .stat-label {
        font-size: 0.8rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .card-progress {
        margin-bottom: 1rem;
      }

      .progress-label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
      }

      .progress-bar {
        height: 8px;
        background: var(--background);
        border-radius: 4px;
        overflow: hidden;
      }

      .progress-fill {
        height: 100%;
        background: var(--gradient);
        width: 75%;
        border-radius: 4px;
        transition: width 2s ease;
      }

      /* Features Section */
      .features {
        padding: 6rem 0;
        background: var(--surface);
        position: relative;
        overflow: hidden;
      }

      .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 48%, rgba(139, 92, 246, 0.01) 49%, rgba(139, 92, 246, 0.01) 51%, transparent 52%);
        transform: translateZ(0);
      }

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

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-badge {
        display: inline-block;
        background: var(--background);
        color: var(--primary);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1rem;
        border: 1px solid var(--border);
      }

      .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.2;
      }

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

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

      .feature {
        background: var(--card);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid var(--border);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(30px);
      }

      .feature.animate-in {
        opacity: 1;
        transform: translateY(0);
      }

      .feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
      }

      .feature:hover::before {
        transform: scaleX(1);
      }

      .feature:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
      }

      .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: var(--gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 1.5rem;
        transition: all 0.4s ease;
        transform: translateZ(0);
      }

      .feature:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
      }

      .feature h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-primary);
      }

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

      /* Stats Section */
      .stats {
        padding: 6rem 0;
        background: var(--background);
        position: relative;
        overflow: hidden;
      }

      .stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
        animation: drift 15s ease-in-out infinite;
        transform: translateZ(0);
      }

      @keyframes drift {
        0%, 100% { transform: translateX(0) translateY(0); }
        25% { transform: translateX(20px) translateY(-10px); }
        50% { transform: translateX(-10px) translateY(20px); }
        75% { transform: translateX(10px) translateY(10px); }
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
      }

      .stats-item {
        padding: 2rem 1rem;
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: all 0.6s ease;
      }

      .stats-item.animate-in {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      .stats-item:hover {
        transform: translateY(-5px) scale(1.05);
      }

      .stats-number {
        font-size: 3rem;
        font-weight: 800;
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
        display: block;
      }

      .stats-label {
        color: var(--text-secondary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.875rem;
      }

      /* CTA Section */
      .cta {
        padding: 6rem 0;
        background: var(--gradient);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
      }

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

      .cta h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.2;
      }

      .cta p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .btn-white {
        background: white;
        color: var(--primary);
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
      }

      /* Footer */
      .footer {
        background: var(--text-primary);
        color: white;
        padding: 3rem 0 1rem;
      }

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

      .footer-section h3 {
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary-light);
      }

      .footer-section p,
      .footer-section a {
        color: #cbd5e1;
        text-decoration: none;
        line-height: 1.8;
        transition: color 0.3s ease;
      }

      .footer-section a:hover {
        color: white;
      }

      .footer-bottom {
        border-top: 1px solid #334155;
        padding-top: 1rem;
        text-align: center;
        color: #94a3b8;
        font-size: 0.875rem;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        

        .hero-content {
          grid-template-columns: 1fr;
          gap: 3rem;
          text-align: center;
        }

        .hero-text h1 {
          font-size: 2.5rem;
        }

        .hero-actions {
          justify-content: center;
        }

        .features-grid {
          grid-template-columns: 1fr;
        }

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

        .cta h2 {
          font-size: 2rem;
        }
      }

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

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

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

      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .animate-in {
        animation: fadeInUp 0.6s ease-out forwards;
      }

      .animate-left {
        animation: slideInLeft 0.8s ease-out forwards;
      }

      .animate-right {
        animation: slideInRight 0.8s ease-out forwards;
      }

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

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

      /* Stagger animation delays */
      .feature:nth-child(1) { animation-delay: 0.1s; }
      .feature:nth-child(2) { animation-delay: 0.2s; }
      .feature:nth-child(3) { animation-delay: 0.3s; }
      .feature:nth-child(4) { animation-delay: 0.4s; }
      .feature:nth-child(5) { animation-delay: 0.5s; }
      .feature:nth-child(6) { animation-delay: 0.6s; }

      .stats-item:nth-child(1) { transition-delay: 0.1s; }
      .stats-item:nth-child(2) { transition-delay: 0.2s; }
      .stats-item:nth-child(3) { transition-delay: 0.3s; }
      .stats-item:nth-child(4) { transition-delay: 0.4s; }