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

      html {
        overflow-x: hidden;
        width: 100%;
        font-size: 16px;
      }

      @media (min-width: 640px) {
        html {
          font-size: 14px;
        }
      }
      @media (min-width: 1024px) {
        html {
          font-size: 15px;
        }
      }
      @media (min-width: 1280px) {
        html {
          font-size: 16px;
        }
      }

      body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
        position: relative;
      }

      ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
      }
      ::-webkit-scrollbar-track {
        background: #f8f7ff;
      }
      ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #6366f1, #a855f7);
        border-radius: 10px;
      }

      /* ===== SCROLL REVEAL ===== */
      .reveal {
        opacity: 0;
        transform: translateY(60px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal.active {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-left {
        opacity: 0;
        transform: translateX(-80px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-right {
        opacity: 0;
        transform: translateX(80px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-scale {
        opacity: 0;
        transform: scale(0.85);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-scale.active {
        opacity: 1;
        transform: scale(1);
      }

      .delay-100 {
        transition-delay: 0.1s;
      }
      .delay-200 {
        transition-delay: 0.2s;
      }
      .delay-300 {
        transition-delay: 0.3s;
      }
      .delay-400 {
        transition-delay: 0.4s;
      }
      .delay-500 {
        transition-delay: 0.5s;
      }
      .delay-600 {
        transition-delay: 0.6s;
      }

      /* ===== GLASSMORPHISM ===== */
      .glass-card {
        background: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.08),
          inset 0 0 20px rgba(255, 255, 255, 0.5);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .glass-card:hover {
        background: rgba(255, 255, 255, 0.82);
        box-shadow:
          0 20px 60px rgba(99, 102, 241, 0.15),
          inset 0 0 30px rgba(255, 255, 255, 0.7);
        transform: translateY(-8px);
      }
      .glass-card-strong {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow:
          0 12px 40px rgba(0, 0, 0, 0.1),
          inset 0 0 24px rgba(255, 255, 255, 0.6);
      }

      /* ===== GRADIENT TEXT ===== */
      .gradient-text {
        background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* GSAP Character utility */
      .gs-char {
        display: inline-block;
        transform-style: preserve-3d;
      }
      .gs-char.gradient {
        background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* ===== FLOATING ANIMATIONS ===== */
      @keyframes float {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
        }
        33% {
          transform: translateY(-12px) rotate(1deg);
        }
        66% {
          transform: translateY(-6px) rotate(-1deg);
        }
      }
      .float-animation {
        animation: float 6s ease-in-out infinite;
      }
      .float-animation-delayed {
        animation: float 6s ease-in-out 2s infinite;
      }

      /* ===== ANIMATED BACKGROUND SHAPES ===== */
      @keyframes morphBlob {
        0%,
        100% {
          border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
          transform: rotate(0deg) scale(1);
        }
        25% {
          border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
          transform: rotate(90deg) scale(1.05);
        }
        50% {
          border-radius: 50% 60% 30% 60% / 30% 50% 70% 60%;
          transform: rotate(180deg) scale(0.95);
        }
        75% {
          border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%;
          transform: rotate(270deg) scale(1.02);
        }
      }
      @keyframes driftSlow {
        0% {
          transform: translate(0, 0) rotate(0deg);
        }
        25% {
          transform: translate(60px, -40px) rotate(5deg);
        }
        50% {
          transform: translate(-30px, -80px) rotate(-3deg);
        }
        75% {
          transform: translate(40px, -20px) rotate(4deg);
        }
        100% {
          transform: translate(0, 0) rotate(0deg);
        }
      }
      @keyframes driftReverse {
        0% {
          transform: translate(0, 0) rotate(0deg);
        }
        25% {
          transform: translate(-50px, 30px) rotate(-4deg);
        }
        50% {
          transform: translate(40px, 70px) rotate(6deg);
        }
        75% {
          transform: translate(-20px, 40px) rotate(-2deg);
        }
        100% {
          transform: translate(0, 0) rotate(0deg);
        }
      }
      @keyframes floatUpDown {
        0%,
        100% {
          transform: translateY(0) scale(1);
        }
        50% {
          transform: translateY(-30px) scale(1.03);
        }
      }
      @keyframes pulseSoft {
        0%,
        100% {
          opacity: 0.4;
          transform: scale(1);
        }
        50% {
          opacity: 0.7;
          transform: scale(1.15);
        }
      }
      @keyframes dashRotate {
        0% {
          stroke-dashoffset: 0;
          transform: rotate(0deg);
        }
        100% {
          stroke-dashoffset: -600;
          transform: rotate(360deg);
        }
      }
      @keyframes starTwinkle {
        0%,
        100% {
          opacity: 0.2;
          transform: scale(0.8) rotate(0deg);
        }
        50% {
          opacity: 1;
          transform: scale(1.2) rotate(180deg);
        }
      }
      @keyframes gridPulse {
        0%,
        100% {
          opacity: 0.03;
        }
        50% {
          opacity: 0.07;
        }
      }
      @keyframes particleFloat {
        0% {
          transform: translateY(0) translateX(0) scale(1);
          opacity: 0;
        }
        10% {
          opacity: 0.6;
        }
        90% {
          opacity: 0.6;
        }
        100% {
          transform: translateY(-100vh) translateX(50px) scale(0);
          opacity: 0;
        }
      }

      .bg-blob {
        position: absolute;
        animation: morphBlob 18s ease-in-out infinite;
        filter: blur(80px);
        pointer-events: none;
        z-index: 0;
      }
      .bg-drift {
        animation: driftSlow 25s ease-in-out infinite;
        pointer-events: none;
      }
      .bg-drift-reverse {
        animation: driftReverse 30s ease-in-out infinite;
        pointer-events: none;
      }
      .bg-float {
        animation: floatUpDown 8s ease-in-out infinite;
        pointer-events: none;
      }
      .bg-pulse {
        animation: pulseSoft 6s ease-in-out infinite;
        pointer-events: none;
      }

      /* ===== INTERACTIVE ORBS (replacing old geo shapes) ===== */
      .interactive-orb {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
      }
      .orb-glow {
        background: radial-gradient(
          circle,
          var(--orb-color) 0%,
          transparent 70%
        );
        filter: blur(2px);
      }
      .orb-ring {
        border: 2px solid var(--orb-color);
        background: transparent;
        opacity: 0.3;
      }
      .orb-solid {
        background: var(--orb-color);
        opacity: 0.5;
        box-shadow:
          0 0 20px var(--orb-color),
          0 0 40px var(--orb-color);
      }
      .orb-glass {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 30px var(--orb-color);
      }

      /* ===== HERO INTERACTIVE CANVAS ===== */
      #heroCanvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
      }

      /* ===== PARALLAX GRID ===== */
      .grid-bg {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridPulse 8s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
      }

      /* ===== ICON CONTAINER ===== */
      .icon-container {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .icon-container:hover {
        transform: rotate(-8deg) scale(1.1);
      }

      /* ===== TIMELINE ===== */
      .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, #6366f1, #a855f7, #ec4899, #6366f1);
        transform: translateX(-50%);
      }
      .timeline-dot {
        width: 20px;
        height: 20px;
        background: linear-gradient(135deg, #6366f1, #a855f7);
        border-radius: 50%;
        border: 4px solid #f8f7ff;
        box-shadow:
          0 0 0 4px rgba(99, 102, 241, 0.3),
          0 0 20px rgba(99, 102, 241, 0.4);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        transition: all 0.4s ease;
      }
      .timeline-dot:hover {
        transform: translateX(-50%) scale(1.4);
        box-shadow:
          0 0 0 6px rgba(99, 102, 241, 0.4),
          0 0 30px rgba(99, 102, 241, 0.6);
      }
      .timeline-dot-inner {
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      /* ===== VALUE / WHY CARDS ===== */
      .value-card {
        position: relative;
        overflow: hidden;
      }
      .value-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #6366f1, #a855f7);
        transform: scaleX(0);
        transition: transform 0.4s ease;
      }
      .value-card:hover::after {
        transform: scaleX(1);
      }
      .why-card {
        position: relative;
        overflow: hidden;
      }
      .why-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        transition: left 0.6s ease;
      }
      .why-card:hover::before {
        left: 100%;
      }

      /* ===== SCROLL PROGRESS ===== */
      .scroll-progress {
        position: fixed;
        top: 76px;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
        z-index: 100;
        transition: width 0.1s linear;
        border-radius: 0 2px 2px 0;
      }

      /* ===== PARTICLES ===== */
      .particle {
        position: absolute;
        border-radius: 50%;
        animation: particleFloat linear infinite;
        pointer-events: none;
      }

      /* ===== FLOWING LINES SVG ===== */
      .flow-line {
        position: absolute;
        pointer-events: none;
        z-index: 0;
        opacity: 0.06;
      }
      .flow-line path {
        stroke-dasharray: 10 6;
        animation: dashRotate 40s linear infinite;
      }

      /* ===== RESPONSIVE TIMELINE ===== */
      @media (max-width: 1023px) {
        .timeline-line {
          left: 24px;
        }
        .timeline-dot {
          left: 24px;
        }
      }

      /* ===== MOUSE FOLLOWER ===== */
      .mouse-follower {
        position: fixed;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(99, 102, 241, 0.08) 0%,
          transparent 70%
        );
        pointer-events: none;
        z-index: 1;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease-out;
      }

      /* ===== NOISE OVERLAY ===== */
      .noise-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1000;
        opacity: 0.018;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      }

      /* ===== HERO WORD WRAPPER ===== */
      .hero-word {
        display: inline-block;
        overflow: hidden;
        vertical-align: bottom;
      }
      .hero-word .gs-char {
        will-change: transform, opacity;
      }

      /* ===== MAGNETIC BUTTON ===== */
      .magnetic-btn {
        position: relative;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      }

      /* ===== HERO DECORATION SHAPES ===== */
      .hero-deco {
        position: absolute;
        pointer-events: none;
        z-index: 5;
        will-change: transform;
      }

      /* ===== RESPONSIVE HERO TEXT ===== */
      @media (max-width: 400px) {
        .hero-title-line {
          font-size: 1.75rem !important;
        }
      }
      @media (min-width: 401px) and (max-width: 639px) {
        .hero-title-line {
          font-size: 2.25rem !important;
        }
      }
      @media (min-width: 640px) and (max-width: 767px) {
        .hero-title-line {
          font-size: 3rem !important;
        }
      }
      @media (min-width: 768px) and (max-width: 1023px) {
        .hero-title-line {
          font-size: 3.75rem !important;
        }
      }
      @media (min-width: 1024px) and (max-width: 1279px) {
        .hero-title-line {
          font-size: 4.5rem !important;
        }
      }
      @media (min-width: 1280px) {
        .hero-title-line {
          font-size: 5.5rem !important;
        }
      }

      /* ===== CONNECTED NODES BG ===== */
      #networkCanvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        opacity: 0.4;
      }

      /* ===== INTERACTIVE SHAPE HOVER ===== */
      .interactive-shape {
        cursor: pointer;
        pointer-events: all !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .interactive-shape:hover {
        filter: brightness(1.5) drop-shadow(0 0 20px currentColor);
        transform: scale(1.3) !important;
      }
