    /* RESET */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    /* Remove text selection highlight */
    ::selection {
      background: transparent;
      color: inherit;
    }
    
    ::-moz-selection {
      background: transparent;
      color: inherit;
    }

    html, body {
      height: 100%;
      scroll-behavior: smooth;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    /* Global premium easing for all animations */
    * {
      transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Focus states for accessibility */
    *:focus-visible {
      outline: none;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: none;
    }

    /* Ensure focus is visible on dark background - subtle only */
    .section-nav-dot:focus-visible,
    .faq-question:focus-visible {
      outline: 1px solid rgba(0, 212, 255, 0.3);
      outline-offset: 2px;
    }

    body {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      background: #050509;
      color: #ffffff;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
      position: relative;
       /* Hide default cursor */
    }

    /* CUSTOM CURSOR */
    .custom-cursor {
      position: fixed;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 212, 255, 0.95);
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
      mix-blend-mode: difference;
    }

    .custom-cursor-outer {
      position: fixed;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid rgba(0, 212, 255, 0.4);
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
      backdrop-filter: blur(2px);
    }

    .custom-cursor.hover {
      width: 16px;
      height: 16px;
      background: rgba(0, 212, 255, 1);
      box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }

    .custom-cursor-outer.hover {
      width: 56px;
      height: 56px;
      border-color: rgba(0, 212, 255, 0.8);
      box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    }

    /* Distinct hover modes */
    .custom-cursor.hover-primary,
    .custom-cursor-outer.hover-primary {
      width: 20px;
      height: 20px;
    }

    .custom-cursor-outer.hover-primary {
      width: 64px;
      height: 64px;
      border-color: rgba(0, 212, 255, 1);
      box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }

    .custom-cursor.hover-card,
    .custom-cursor-outer.hover-card {
      transform: scale(1.1);
    }

    .custom-cursor.hover-link,
    .custom-cursor-outer.hover-link {
      width: 4px;
      height: 4px;
    }

    .custom-cursor-outer.hover-link {
      width: 24px;
      height: 24px;
      border-width: 1px;
    }

    /* Skip link for accessibility */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 0;
      background: var(--accent);
      color: #020617;
      padding: 1rem;
      z-index: 10000;
      text-decoration: none;
      font-weight: 600;
    }

    .skip-link:focus {
      top: 0;
    }

    /* Prefers reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .star,
      .particle,
      .decor-orb,
      .floating-figure,
      .hero-3d-card,
      .hero-orbit {
        animation: none !important;
      }

      .star {
        opacity: 0.8 !important;
      }
    }

    /* Ensure decorative layers never block taps */
    .starfield,
    #starfield,
    .decor-orb,
    .particle-layer,
    .hero-orbit,
    .hero-3d-figure,
    .scroll-progress,
    .loading-overlay {
      pointer-events: none;
    }

    /* Ensure clickable content is above decorative layers - MAXIMUM PRIORITY */
    .hero-left,
    .hero-cta-row,
    .hero-cta-row a,
    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-ghost,
    nav,
    nav a,
    .nav-right,
    .nav-right a,
    .nav-right .btn-cta,
    .mobile-menu,
    .mobile-menu a,
    .footer-links a,
    .section-nav,
    .section-nav-dot,
    .cta-actions,
    .cta-actions a,
    .cta-actions .btn-primary,
    .cta-actions .btn-ghost {
      position: relative !important;
      z-index: 1000 !important;
      pointer-events: auto !important;
    }

    /* Hero content must sit above decorative layers */
    .hero-left,
    .hero-cta-row,
    .hero-cta-row a,
    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-ghost {
      position: relative !important;
      z-index: 1000 !important;
      pointer-events: auto !important;
    }

    /* HARD OVERRIDE: buttons must be clickable everywhere */
    .btn-primary,
    .btn-ghost,
    .btn-cta,
    a.btn-primary,
    a.btn-ghost,
    a.btn-cta {
      cursor: pointer !important;
      touch-action: manipulation !important;
      -webkit-tap-highlight-color: rgba(0, 212, 255, 0.3) !important;
      position: relative !important;
      z-index: 1000 !important;
      pointer-events: auto !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      -webkit-appearance: none !important;
      appearance: none !important;
      user-select: none !important;
      -webkit-user-select: none !important;
    }
    
    /* Ensure button pseudo-elements NEVER block touches */
    .btn-primary::before,
    .btn-primary::after,
    .btn-ghost::before,
    .btn-ghost::after,
    .btn-cta::before,
    .btn-cta::after {
      pointer-events: none !important;
      z-index: -1 !important;
    }

    @media (max-width: 768px) {
      body {
        cursor: auto !important;
      }
      
      /* Completely disable custom cursor on mobile */
      .custom-cursor,
      .custom-cursor-outer {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
      }
      
      body.custom-cursor-disabled .custom-cursor,
      body.custom-cursor-disabled .custom-cursor-outer {
        display: none !important;
        pointer-events: none !important;
      }

      /* CRITICAL: Force all buttons to be clickable on mobile */
      .btn-primary,
      .btn-ghost,
      .btn-cta,
      .btn-submit,
      a.btn-primary,
      a.btn-ghost,
      a.btn-cta {
        min-height: 48px !important;
        min-width: 48px !important;
        padding: 0.95rem 2rem !important;
        font-size: 0.9rem !important;
        position: relative !important;
        z-index: 10000 !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.5) !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        user-select: none !important;
        -webkit-user-select: none !important;
      }
      
      /* CTA containers must also be interactive */
      .hero-cta-row,
      .cta-actions,
      .nav-right {
        position: relative !important;
        z-index: 9999 !important;
        pointer-events: auto !important;
      }
      
      /* Ensure button pseudo-elements NEVER block touches on mobile */
      .btn-primary::before,
      .btn-primary::after,
      .btn-ghost::before,
      .btn-ghost::after,
      .btn-cta::before,
      .btn-cta::after {
        pointer-events: none !important;
        z-index: -1 !important;
        display: block !important;
      }
      
      /* Disable any overlay layers that could block taps */
      .custom-cursor,
      .custom-cursor-outer,
      #starfield,
      #particleLayer,
      .hero-orbit,
      .loading-overlay,
      .starfield,
      .particle-layer {
        pointer-events: none !important;
      }

      .mobile-menu a {
        min-height: 48px;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
      }
      
      /* Make Contact link prominent in mobile menu */
      .mobile-menu a[href="#contact"] {
        font-weight: 600 !important;
        color: var(--accent) !important;
        border-bottom: 2px solid var(--accent) !important;
        padding-bottom: 0.5rem !important;
        margin-bottom: 0.5rem;
      }
      
      /* Make header nav Contact link prominent on mobile */
      nav a[href="#contact"] {
        font-weight: 600 !important;
        color: var(--accent) !important;
      }

      input,
      textarea,
      select {
        font-size: 16px; /* Prevent iOS zoom */
      }

      .btn-primary:active,
      .btn-ghost:active,
      .btn-cta:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
      }
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    :root {
      --bg-main: #050509;
      --bg-elevated: #0a0a0a;
      --bg-card: #101018;
      --bg-soft: #151521;

      --accent: #00d4ff;
      --accent-soft: rgba(0, 212, 255, 0.16);
      --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --accent-cyan: #00d4ff;

      --text-main: #ffffff;
      --text-muted: #9ca3af;
      --text-soft: #6b7280;

      --border-soft: rgba(148, 163, 184, 0.2);
      --radius-xxl: 40px;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;

      --shadow-deep: 0 40px 120px rgba(0, 0, 0, 0.65);
      --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.5);

      --container-width: 1200px;
      --nav-height: 80px;
    }

    .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      width: 100%;
      box-sizing: border-box;
    }
    
    @media (max-width: 768px) {
      .container {
        padding: 0 1rem;
      }
    }

    /* GLOBAL STARFIELD (twinkling, scroll parallax) */
    .starfield {
      position: fixed;
      inset: 0;
      z-index: -3;
      overflow: hidden;
      pointer-events: none;
      background: radial-gradient(circle at top, #020617 0, #020617 35%, #020617 100%);
    }

    .star {
      position: absolute;
      width: 2.2px;
      height: 2.2px;
      border-radius: 50%;
      background: rgba(248, 250, 252, 0.9);
      opacity: 0;
    }

    .star.small {
      width: 1.5px;
      height: 1.5px;
      opacity: 0.7;
    }

    .star.blue {
      background: rgba(56, 189, 248, 0.95);
    }

    .star.violet {
      background: rgba(129, 140, 248, 0.95);
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0; transform: scale(0.7); }
      20% { opacity: 0.95; transform: scale(1); }
      60% { opacity: 0.35; }
    }

    @keyframes drift {
      0% { transform: translateX(0); }
      50% { transform: translateX(20px); }
      100% { transform: translateX(0); }
    }

    /* FLOATING ORBS (scroll reactive) */
    .decor-orb {
      position: fixed;
      border-radius: 999px;
      filter: blur(0);
      opacity: 0.9;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: -2;
    }

    .decor-orb.orb-1 {
      width: 320px;
      height: 320px;
      top: 10%;
      right: -80px;
      background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.8), transparent 60%);
      animation: orbFloat1 12s ease-in-out infinite;
    }

    .decor-orb.orb-2 {
      width: 280px;
      height: 280px;
      top: 55%;
      left: -80px;
      background: radial-gradient(circle at 60% 30%, rgba(118,75,162,0.8), transparent 60%);
      animation: orbFloat2 15s ease-in-out infinite;
    }

    .decor-orb.orb-3 {
      width: 200px;
      height: 200px;
      top: 80%;
      right: 20%;
      background: radial-gradient(circle at 50% 50%, rgba(102,126,234,0.6), transparent 70%);
      animation: orbFloat3 10s ease-in-out infinite;
    }

    @keyframes orbFloat1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-30px, 40px) scale(1.1); }
    }

    @keyframes orbFloat2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(40px, -30px) scale(1.15); }
    }

    @keyframes orbFloat3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-20px, -40px) scale(1.2); }
    }

    /* Floating particles layer */
    .particle-layer {
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(0, 212, 255, 0.6);
      box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
      animation: particleFloat 20s linear infinite;
    }

    .particle:nth-child(2n) {
      background: rgba(102, 126, 234, 0.6);
      box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
      animation-duration: 25s;
    }

    .particle:nth-child(3n) {
      background: rgba(118, 75, 162, 0.6);
      box-shadow: 0 0 10px rgba(118, 75, 162, 0.8);
      animation-duration: 30s;
      width: 6px;
      height: 6px;
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
      }
    }

    /* LOADER */
    .loading-overlay {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at top, #111827 0, #020617 40%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }

    .loading-overlay.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader-ring {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 2px solid rgba(148, 163, 184, 0.2);
      border-top-color: var(--accent);
      animation: rotate 0.9s linear infinite;
    }

    @keyframes rotate {
      to { transform: rotate(360deg); }
    }

    /* HEADER / NAV */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-height);
      z-index: 1000;
      background: rgba(5, 5, 9, 0.9);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(15, 23, 42, 0.7);
      transition: all 0.3s ease;
    }

    header.scrolled {
      height: 68px;
      background: rgba(5, 5, 9, 0.98);
      border-bottom-color: rgba(30, 64, 175, 0.75);
    }

    /* SCROLL PROGRESS INDICATOR */
    .scroll-progress {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-cyan), #667eea);
      z-index: 1001;
      transition: width 0.1s ease-out;
      box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
      pointer-events: none;
    }

    header.scrolled ~ .scroll-progress {
      top: 68px;
    }

    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-img {
      height: 50px;
      width: auto;
      object-fit: contain;
      display: block;
      max-width: 200px;
    }
    
    @media (max-width: 900px) {
      .logo-img {
        height: 40px;
        max-width: 160px;
      }
    }
    
    @media (max-width: 480px) {
      .logo-img {
        height: 35px;
        max-width: 140px;
      }
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    nav a {
      color: #e5e7eb;
      position: relative;
      padding-bottom: 0.14rem;
      opacity: 0.82;
      transition: opacity 0.25s ease;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1.5px;
      border-radius: 999px;
      background: var(--accent-gradient);
      transition: width 0.24s ease;
    }

    nav a:hover {
      opacity: 1;
    }

    nav a:hover::after {
      width: 100%;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
      position: relative;
      z-index: 1000;
      pointer-events: auto;
    }
    
    .nav-right a.btn-cta {
      position: relative;
      z-index: 1001;
      pointer-events: auto !important;
    }

    .nav-cart {
      position: relative;
      font-size: 1.05rem;
      padding: 0.2rem 0.35rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.4);
      cursor: pointer;
    }

    .nav-cart-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: var(--accent);
      color: #020617;
      font-size: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .btn-cta,
    a.btn-cta {
      border: 2px solid #ffffff;
      padding: 0.55rem 1.6rem;
      border-radius: 999px;
      background: transparent;
      color: #ffffff;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }
    
    a.btn-cta:link,
    a.btn-cta:visited {
      color: #ffffff;
    }
    
    @media (max-width: 900px) {
      .btn-cta {
        padding: 0.65rem 1.8rem;
        min-height: 48px;
      }
    }

    .btn-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #ffffff;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      z-index: -1;
      pointer-events: none;
    }

    .btn-cta:hover {
      background: #ffffff;
      color: #000000;
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 20px 50px rgba(255, 255, 255, 0.25);
    }

    .btn-cta:hover::before {
      transform: scaleX(1);
    }

    .btn-cta:active {
      transform: translateY(0) scale(1);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
      min-width: 44px;
      min-height: 44px;
      width: 44px;
      height: 44px;
      justify-content: center;
      align-items: center;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      position: relative;
      z-index: 1000;
    }
    
    @media (max-width: 900px) {
      .nav-toggle {
        min-width: 48px;
        min-height: 48px;
        width: 48px;
        height: 48px;
      }
    }
    
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #e5e7eb;
      transition: all 0.3s ease;
      border-radius: 2px;
    }
    
    .nav-toggle:hover span {
      background: var(--accent-cyan);
    }
    
    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    @media (max-width: 900px) {
      nav {
        display: none;
      }
      .nav-cart {
        display: none;
      }
      .nav-toggle {
        display: flex;
      }
    }

    .mobile-menu {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: rgba(5,5,9,0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(31, 41, 55, 0.7);
      display: none;
      flex-direction: column;
      padding: 1rem 1.75rem 1.2rem;
      gap: 0.5rem;
      z-index: 900;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #e5e7eb;
      opacity: 0.9;
      padding: 0.85rem 1rem;
      border-radius: 8px;
      min-height: 44px;
      display: flex;
      align-items: center;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: all 0.2s ease;
      position: relative;
      z-index: 1;
    }

    .mobile-menu a:hover,
    .mobile-menu a:active {
      opacity: 1;
      background: rgba(31, 41, 55, 0.5);
      color: var(--accent-cyan);
    }
    
    @media (max-width: 900px) {
      .mobile-menu a {
        min-height: 48px;
        font-size: 0.85rem;
        padding: 1rem 1.2rem;
      }
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      padding-top: calc(var(--nav-height) + 3.5rem);
      padding-bottom: 4rem;
      background:
        radial-gradient(circle at top left, rgba(0, 212, 255, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(118, 75, 162, 0.18), transparent 55%),
        transparent;
      overflow: hidden;
      isolation: isolate;
    }
    
    /* Reduce gap between header and content on mobile */
    @media (max-width: 900px) {
      .hero {
        padding-top: calc(var(--nav-height) + 1rem) !important;
        min-height: auto;
      }
      
      section[id] {
        scroll-margin-top: calc(var(--nav-height) + 0.5rem) !important;
      }
    }

    .hero-orbit {
      position: absolute;
      inset: -30%;
      background:
        radial-gradient(circle at 10% 0, rgba(0, 212, 255, 0.2), transparent 60%),
        radial-gradient(circle at 90% 70%, rgba(102, 126, 234, 0.3), transparent 60%);
      mix-blend-mode: screen;
      opacity: 0.85;
      transform: translate3d(0, 0, 0);
      will-change: transform;
      z-index: -1;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3.5rem;
      align-items: center;
      width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
        padding: 0 1rem;
      }
      .hero-right {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      .hero-inner {
        gap: 1.5rem;
      }
      .hero-title {
        font-size: clamp(36px, 10vw, 56px);
      }
      .hero-subtitle {
        font-size: 1rem;
      }
      .hero-stats-row {
        flex-direction: column;
        gap: 0.5rem;
      }
      .hero-stat-pill {
        width: 100%;
        text-align: center;
      }
    }
    
    @media (max-width: 480px) {
      .hero-cta-row {
        flex-direction: column;
        width: 100%;
      }
      .hero-cta-row button,
      .hero-cta-row a {
        width: 100%;
      }
    }

    .hero-left {
      position: relative;
      z-index: 5;
      pointer-events: auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: rgba(15, 23, 42, 0.95);
      font-size: 0.75rem;
      color: var(--text-soft);
      margin-bottom: 1.4rem;
      backdrop-filter: blur(14px);
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    }

    .hero-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: clamp(48px, 8vw, 120px);
      line-height: 0.95;
      font-weight: 900;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      background: linear-gradient(
        180deg,
        #ffffff 0%,
        #00d4ff 40%,
        #667eea 70%,
        #ff00ff 100%
      );
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: none;
      animation: gradient-shift 8s ease-in-out infinite, textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      position: relative;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      opacity: 1;
      z-index: 2;
    }

    @keyframes textReveal {
      to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
      }
    }

    /* Text glow pulse effect - Removed blue highlight */
    .hero-title::before {
      display: none;
    }

    @keyframes glowPulse {
      0%, 100% {
        opacity: 0.4;
        transform: scale(1);
      }
      50% {
        opacity: 0.8;
        transform: scale(1.05);
      }
    }

    @keyframes gradient-shift {
      0%, 100% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
    }

    /* Section title reveal animations */
    .section-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .section-title.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .section-description {
      font-size: clamp(1rem, 1.2vw, 1.15rem);
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
    }
    
    .section-kicker {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-cyan);
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    .hero-title span.accent {
      background: linear-gradient(135deg, 
        #00d4ff 0%, 
        #667eea 50%, 
        #764ba2 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: none;
    }

    .hero-subtitle {
      max-width: 32rem;
      font-size: clamp(1rem, 1.1vw, 1.15rem);
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.2rem;
      position: relative;
      z-index: 5;
      pointer-events: auto;
    }

    .hero-cta-row a,
    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-ghost {
      position: relative;
      z-index: 5;
      pointer-events: auto;
    }

    .btn-primary,
    a.btn-primary {
      border-radius: 999px;
      border: none;
      padding: 0.85rem 1.8rem;
      font-size: 0.86rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      background: var(--accent-gradient);
      color: #f9fafb;
      cursor: pointer;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.4s ease,
                  background 0.4s ease,
                  scale 0.4s ease,
                  border 0.4s ease;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }
    
    a.btn-primary:link,
    a.btn-primary:visited {
      color: #f9fafb;
    }
    
    @media (max-width: 900px) {
      .btn-primary {
        padding: 0.95rem 2rem;
        min-height: 48px;
        font-size: 0.88rem;
      }
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 999px;
      padding: 2px;
      background: linear-gradient(135deg, #00d4ff, #667eea, #764ba2);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: -1;
    }

    .btn-primary:hover::after {
      opacity: 1;
      animation: borderGlow 2s ease-in-out infinite;
    }

    @keyframes borderGlow {
      0%, 100% {
        filter: brightness(1);
      }
      50% {
        filter: brightness(1.3);
      }
    }

    .btn-primary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: -1;
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 30px 100px rgba(102, 126, 234, 0.5),
                  0 0 40px rgba(0, 212, 255, 0.4);
      background: linear-gradient(135deg, #00d4ff 0%, #667eea 50%, #764ba2 100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.4s ease,
                  background 0.4s ease;
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary:active {
      transform: translateY(-1px) scale(1.01);
    }

    .btn-ghost,
    a.btn-ghost {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      padding: 0.85rem 1.4rem;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      background: rgba(15, 23, 42, 0.95);
      color: #e5e7eb;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }
    
    a.btn-ghost:link,
    a.btn-ghost:visited {
      color: #e5e7eb;
    }
    
    @media (max-width: 900px) {
      .btn-ghost {
        padding: 0.95rem 1.6rem;
        min-height: 48px;
        font-size: 0.84rem;
      }
    }

    .btn-ghost::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 212, 255, 0.05);
      opacity: 0;
      transition: opacity 0.3s ease;
      box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1);
      pointer-events: none;
      z-index: -1;
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 1);
      border-color: var(--accent);
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2),
                  inset 0 0 20px rgba(0, 212, 255, 0.1);
    }

    .btn-ghost:hover::before {
      opacity: 1;
    }

    .btn-ghost:active {
      transform: translateY(0) scale(1);
    }

    .hero-footnote {
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    .hero-stats-row {
      display: flex;
      gap: 1.2rem;
      margin-top: 1.8rem;
      flex-wrap: wrap;
    }

    .hero-stat-pill {
      border-radius: 999px;
      padding: 0.45rem 0.85rem;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: rgba(10, 10, 15, 0.9);
      font-size: 0.78rem;
      color: var(--text-soft);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .hero-stat-pill strong {
      color: #e5e7eb;
      font-weight: 600;
    }

    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 1.8rem;
      transform: translateX(-50%);
      font-size: 0.75rem;
      color: var(--text-soft);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      opacity: 0.8;
      animation: scrollIndicatorPulse 2s ease-in-out infinite;
    }

    @keyframes scrollIndicatorPulse {
      0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
      }
      50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
      }
    }

    .scroll-indicator-arrow {
      width: 1px;
      height: 26px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.6);
      position: relative;
      overflow: hidden;
    }

    .scroll-indicator-arrow::after {
      content: "";
      position: absolute;
      left: 0;
      top: -40%;
      width: 100%;
      height: 40%;
      background: var(--accent);
      animation: scrollPulse 1.8s infinite;
    }

    @keyframes scrollPulse {
      0% { transform: translateY(0); opacity: 1; }
      100% { transform: translateY(160%); opacity: 0; }
    }

    .hero-right {
      display: flex;
      justify-content: center;
    }
    
    @media (max-width: 960px) {
      .hero-right {
        display: none;
      }
    }

    .hero-3d-wrapper {
      width: 100%;
      max-width: 420px;
      perspective: 1200px;
      position: relative;
      z-index: 10;
    }
    
    @media (max-width: 960px) {
      .hero-3d-wrapper {
        display: none;
      }
    }

    .hero-3d-card {
      position: relative;
      border-radius: var(--radius-xxl);
      padding: 1.6rem 1.4rem;
      background:
        radial-gradient(circle at top left, rgba(0, 212, 255, 0.18), transparent 60%),
        radial-gradient(circle at bottom right, rgba(118, 75, 162, 0.3), transparent 60%),
        #050509;
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow: var(--shadow-deep);
      transform-style: preserve-3d;
      transform: rotateX(10deg) rotateY(-8deg) translateZ(0);
      animation: heroFloat 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
      overflow: hidden;
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-3d-card.scrolled {
      opacity: 0.3;
      transform: rotateX(10deg) rotateY(-8deg) translateY(-40px) translateZ(0);
    }

    @keyframes heroFloat {
      0% { transform: rotateX(10deg) rotateY(-8deg) translate3d(0, 0, 0) scale(1); }
      50% { transform: rotateX(6deg) rotateY(-4deg) translate3d(0, -15px, 20px) scale(1.02); }
      100% { transform: rotateX(10deg) rotateY(-8deg) translate3d(0, 0, 0) scale(1); }
    }

    .chromatic {
      position: relative;
      filter: drop-shadow(0 0 30px rgba(0,170,255,0.5));
    }

    .chromatic::before {
      content: "";
      position: absolute;
      inset: 0;
      background: inherit;
      filter: blur(2px);
      transform: translate(3px, 0);
      mix-blend-mode: screen;
      opacity: 0.4;
      pointer-events: none;
    }

    .hero-3d-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.1rem;
    }

    .hero-3d-title {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
    }

    .hero-3d-chip {
      font-size: 0.7rem;
      border-radius: 999px;
      padding: 0.25rem 0.7rem;
      border: 1px solid rgba(148, 163, 184, 0.55);
      background: rgba(10, 10, 20, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .hero-3d-chip-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-3d-main {
      border-radius: var(--radius-lg);
      padding: 1rem;
      background: rgba(5, 5, 12, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.35);
      margin-bottom: 1rem;
    }

    .hero-3d-balance-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 1rem;
    }

    .hero-3d-label {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-soft);
    }

    .hero-3d-value {
      font-size: 1.6rem;
      font-weight: 600;
      font-family: "Poppins", system-ui, sans-serif;
    }

    .hero-3d-gain {
      font-size: 0.8rem;
      border-radius: 999px;
      padding: 0.3rem 0.65rem;
      background: rgba(22, 163, 74, 0.18);
      color: #4ade80;
    }

    .hero-3d-chart {
      display: flex;
      align-items: flex-end;
      gap: 0.4rem;
      height: 130px;
    }

    .hero-3d-bar {
      flex: 1;
      border-radius: 999px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 212, 255, 0.95));
      transform-origin: bottom;
      animation: chartWave 2.8s ease-in-out infinite;
    }

    .hero-3d-bar:nth-child(2) { animation-delay: 0.15s; }
    .hero-3d-bar:nth-child(3) { animation-delay: 0.3s; }
    .hero-3d-bar:nth-child(4) { animation-delay: 0.45s; }
    .hero-3d-bar:nth-child(5) { animation-delay: 0.6s; }
    .hero-3d-bar:nth-child(6) { animation-delay: 0.75s; }

    @keyframes chartWave {
      0%,100% { transform: scaleY(0.7); }
      50% { transform: scaleY(1); }
    }

    .hero-3d-footer {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
      font-size: 0.75rem;
    }

    .hero-3d-stat {
      border-radius: 14px;
      padding: 0.65rem 0.6rem;
      background: rgba(10, 10, 20, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.4);
    }

    .hero-3d-stat-label {
      color: var(--text-soft);
      margin-bottom: 0.25rem;
    }

    .hero-3d-stat-value {
      font-weight: 500;
    }

    .hero-3d-pill-floating {
      position: absolute;
      left: 14px;
      bottom: 14px;
      border-radius: 999px;
      padding: 0.35rem 0.8rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(10, 10, 20, 0.95);
      font-size: 0.75rem;
      color: var(--text-soft);
      backdrop-filter: blur(14px);
      animation: floatSoft 6s ease-in-out infinite;
    }

    @keyframes floatSoft {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* STATS SECTION */
    .stats-section {
      padding: 3.5rem 0 3.2rem;
      border-top: 1px solid rgba(15, 23, 42, 0.9);
      background: radial-gradient(circle at top, rgba(0, 212, 255, 0.08), transparent 55%), transparent;
    }

    .stats-row {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      padding: 0 1rem;
      width: 100%;
      box-sizing: border-box;
    }
    
    @media (max-width: 768px) {
      .stats-row {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
      }
      
      .stat-card {
        width: 100%;
        padding: 1.25rem 1.5rem;
      }
    }

    .stat-card {
      min-width: 170px;
      border-radius: 30px;
      padding: 1.3rem 1.6rem;
      background: linear-gradient(135deg, 
        rgba(20, 20, 40, 0.9) 0%, 
        rgba(10, 10, 20, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 80px rgba(102, 126, 234, 0.05);
      text-align: left;
      transform-origin: center;
      transform-style: preserve-3d;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      opacity: 1;
      transform: translateY(0);
      position: relative;
      overflow: visible;
      backdrop-filter: blur(20px);
      flex: 1 1 auto;
      max-width: 100%;
    }
    
    .stat-card:not(.visible) {
      opacity: 0;
      transform: translateY(20px);
    }
    
    .stat-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    @media (max-width: 768px) {
      .stat-card {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.2rem;
        margin-bottom: 0.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .stat-card {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.2rem;
        margin-bottom: 0.5rem;
      }
    }

    /* Shimmer effect on hover */
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
      );
      transition: left 0.7s;
      z-index: 1;
      border-radius: 30px;
    }

    .stat-card:hover::before {
      left: 100%;
    }

    .stat-card:hover {
      box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 212, 255, 0.4),
        0 0 120px rgba(102, 126, 234, 0.3),
        inset 0 0 120px rgba(102, 126, 234, 0.15);
      transform: translateY(-10px) scale(1.03);
    }

    .stat-card::after {
      content: '';
      position: absolute;
      inset: -25px;
      background: radial-gradient(circle at center, rgba(0,212,255,0.2), transparent 70%);
      filter: blur(35px);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    .stat-card:hover::after {
      opacity: 1;
    }

    .stat-card.animate-in {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Section scroll offset for fixed header */
    section[id] {
      scroll-margin-top: 96px;
    }
    
    /* Reduce scroll margin on mobile for less gap */
    @media (max-width: 900px) {
      section[id] {
        scroll-margin-top: calc(var(--nav-height) + 0.5rem) !important;
      }
    }

    .stat-value {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .stat-label {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
    }

    /* SECTION TEMPLATE */
    .section {
      padding: 4rem 0;
      width: 100%;
      overflow-x: hidden;
    }

    /* Ensure sections offset for fixed header */
    section[id] {
      scroll-margin-top: 96px;
    }
    
    .section:first-of-type {
      padding-top: 2rem;
    }
    
    @media (max-width: 768px) {
      .section {
        padding: 3rem 0;
      }
    }

    .section-header {
      max-width: 720px;
      margin: 0 auto 3.5rem;
      text-align: center;
      padding: 0 1.5rem;
    }
    
    @media (max-width: 768px) {
      .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
      }
    }

    .section-kicker {
      font-size: 0.85rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      letter-spacing: -0.03em;
      margin-bottom: 0.8rem;
      font-weight: 700;
    }

    .section-description {
      font-size: clamp(1rem, 1.2vw, 1.15rem);
      color: var(--text-muted);
      line-height: 1.8;
    }

    /* ARCHITECTURE SECTION */
    .architecture-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      padding: 5rem 0;
    }
    
    @media (max-width: 768px) {
      .architecture-section {
        padding: 3rem 0;
      }
    }

    .architecture-steps {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      position: relative;
      width: 100%;
      box-sizing: border-box;
    }
    
    @media (max-width: 900px) {
      .architecture-steps {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
      }
    }

    .architecture-steps::before {
      content: "";
      position: absolute;
      top: 80px;
      left: 20%;
      right: 20%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
      z-index: 0;
    }

    .architecture-steps::after {
      content: "";
      position: absolute;
      top: 80px;
      left: 20%;
      right: 20%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
      z-index: 0;
      transform: translateY(2px);
    }

    /* Connecting arrows between steps */
    .architecture-step:not(:last-child)::after {
      content: "→";
      position: absolute;
      right: -2.5rem;
      top: 80px;
      font-size: 1.5rem;
      color: rgba(0, 212, 255, 0.6);
      z-index: 2;
      animation: arrowPulse 2s ease-in-out infinite;
    }

    @keyframes arrowPulse {
      0%, 100% { opacity: 0.6; transform: translateX(0); }
      50% { opacity: 1; transform: translateX(5px); }
    }

    @media (max-width: 900px) {
      .architecture-step:not(:last-child)::after {
        display: none;
      }
    }

    @media (max-width: 900px) {
      .architecture-steps {
        flex-direction: column;
        gap: 3rem;
      }
      .architecture-steps::before {
        display: none;
      }
    }

    .architecture-step {
      flex: 1;
      position: relative;
      z-index: 1;
      opacity: 1;
      transform: translateX(0);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .architecture-step.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .architecture-step:nth-child(2) {
      transition-delay: 0.15s;
    }

    .architecture-step:nth-child(3) {
      transition-delay: 0.3s;
    }

    .architecture-step-card {
      border-radius: var(--radius-xl);
      padding: 2rem 1.8rem;
      background: rgba(10, 10, 18, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .architecture-step-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 212, 255, 0.6);
      box-shadow: var(--shadow-deep);
    }

    .architecture-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-cyan), #667eea);
      color: #020617;
      font-family: "Poppins", system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
    }

    .architecture-step-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .architecture-step-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .architecture-step-product {
      display: inline-block;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-cyan);
      font-weight: 600;
      margin-bottom: 0.4rem;
      text-decoration: none;
      transition: color 0.3s ease, opacity 0.3s ease;
    }
    
    .architecture-step-product:hover {
      color: var(--accent);
      opacity: 0.9;
    }

    .architecture-step-microcopy {
      font-size: 0.75rem;
      color: var(--text-soft);
      font-style: italic;
      margin-top: 0.3rem;
    }

    /* BENTO GRID */
    .bento-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
    }

    .bento-grid {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.5rem;
      width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 1024px) {
      .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0 1rem;
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .bento-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1rem;
      }
    }

    .bento-card {
      position: relative;
      border-radius: 30px;
      padding: 1.8rem 2rem;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        radial-gradient(circle at top left, rgba(102, 126, 234, 0.18), transparent 60%),
        radial-gradient(circle at bottom right, rgba(0, 212, 255, 0.18), transparent 60%),
        linear-gradient(135deg, rgba(20, 20, 40, 0.9) 0%, rgba(10, 10, 20, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      overflow: visible;
      transform-style: preserve-3d;
      transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 80px rgba(102, 126, 234, 0.05);
      backdrop-filter: blur(20px);
      opacity: 1;
      visibility: visible;
    }
    
    @media (max-width: 768px) {
      .bento-card {
        min-height: auto;
        padding: 1.5rem 1.25rem;
      }
    }
    
    .bento-card a {
      position: relative;
      z-index: 10;
      pointer-events: auto;
    }

    /* Enhanced 3D depth layers */
    .bento-card .bento-label,
    .bento-card .bento-title,
    .bento-card .bento-subtitle {
      transform: translateZ(40px);
      position: relative;
      z-index: 2;
    }

    /* Shimmer effect on hover */
    .bento-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
      );
      transition: left 0.7s;
      z-index: 3;
      border-radius: var(--radius-xxl);
      pointer-events: none;
    }

    .bento-card:hover::before {
      left: 100%;
    }

    .bento-card:hover {
      box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 212, 255, 0.4),
        0 0 100px rgba(102, 126, 234, 0.3),
        inset 0 0 80px rgba(102, 126, 234, 0.15);
      border-color: rgba(0,212,255,1);
      transform: translateY(-8px) scale(1.02);
    }

    /* Enhanced depth glow for cards */
    .bento-card::after {
      content: '';
      position: absolute;
      inset: -30px;
      background: radial-gradient(circle at center, rgba(0,212,255,0.15), transparent 70%);
      filter: blur(40px);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    .bento-card:hover::after {
      opacity: 1;
    }


    .bento-hero {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }

    .bento-tall {
      grid-row: span 2;
    }

    .bento-label {
      font-size: clamp(0.75rem, 0.9vw, 0.85rem);
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 0.4rem;
    }

    .beta-badge {
      display: inline-block;
      font-size: 0.65rem;
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      background: rgba(0, 212, 255, 0.15);
      border: 1px solid rgba(0, 212, 255, 0.4);
      color: var(--accent-cyan);
      margin-left: 0.4rem;
      font-weight: 600;
    }

    /* TRUST SECTION */
    .trust-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      padding: 5rem 0;
    }

    .trust-grid {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 2rem;
      width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 900px) {
      .trust-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
      }
    }

    .trust-card {
      border-radius: var(--radius-xl);
      padding: 2rem 1.8rem;
      background: rgba(10, 10, 18, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow: var(--shadow-soft);
      transform-style: preserve-3d;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .trust-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 212, 255, 0.6);
      box-shadow: var(--shadow-deep);
    }

    .trust-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: var(--accent-cyan);
    }
    
    .trust-icon svg {
      width: 100%;
      height: 100%;
    }

    .trust-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .trust-description {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .trust-metric {
      font-size: 0.8rem;
      color: var(--text-soft);
      font-weight: 500;
    }

    .bento-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: clamp(1.2rem, 1.5vw, 1.4rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0.75rem;
      min-height: auto;
      color: #ffffff;
    }

    .bento-subtitle {
      font-size: clamp(0.9rem, 1vw, 1rem);
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 1rem;
    }
    
    .bento-tag-row {
      margin: auto 0 1rem 0;
    }
    
    .bento-label {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 0.6rem;
      font-weight: 600;
    }

    .bento-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-bottom: 1.1rem;
    }

    .bento-tag {
      font-size: 0.75rem;
      border-radius: 999px;
      padding: 0.26rem 0.7rem;
      border: 1px solid rgba(148, 163, 184, 0.45);
      background: rgba(10, 10, 18, 0.9);
      color: var(--text-soft);
    }

    .bento-link {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      cursor: pointer;
      position: relative;
      z-index: 10;
      pointer-events: auto;
      text-decoration: none;
      transition: color 0.3s ease, opacity 0.3s ease;
    }
    
    .bento-link:hover {
      color: var(--accent-cyan);
      opacity: 0.9;
    }

    .bento-link span {
      font-size: 1rem;
    }

    .bento-metric-row {
      display: flex;
      justify-content: space-between;
      gap: 0.8rem;
      flex-wrap: wrap;
      margin-top: 0.8rem;
      font-size: 0.84rem;
      color: var(--text-soft);
    }

    .bento-metric strong {
      display: block;
      font-size: 1rem;
      color: #e5e7eb;
    }

    /* PERSONA / USE CASE CARDS */
    .personas-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      padding: 5rem 0;
    }
    
    @media (max-width: 768px) {
      .personas-section {
        padding: 3rem 0;
      }
    }

    .personas-grid {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.8rem;
      width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 900px) {
      .personas-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
      }
    }

    .persona-card {
      border-radius: var(--radius-xl);
      padding: 2.2rem 2rem;
      background: rgba(10, 10, 18, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow: var(--shadow-soft);
      transform-style: preserve-3d;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      opacity: 1;
      transform: translateY(0);
    }

    .persona-card:not(.visible) {
      opacity: 0;
      transform: translateY(20px);
    }

    .persona-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .persona-card:hover {
      border-color: rgba(0, 212, 255, 0.6);
      box-shadow: var(--shadow-deep);
      transform: translateY(-6px);
    }

    .persona-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(102, 126, 234, 0.15));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      border: 1px solid rgba(0, 212, 255, 0.3);
      color: var(--accent-cyan);
      transition: all 0.3s ease;
    }
    
    .persona-icon:hover {
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(102, 126, 234, 0.25));
      border-color: rgba(0, 212, 255, 0.5);
      transform: translateY(-2px);
    }
    
    .persona-icon svg {
      width: 28px;
      height: 28px;
    }

    .persona-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: clamp(1.3rem, 1.5vw, 1.5rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0.6rem;
      color: #ffffff;
    }

    .persona-subtitle {
      font-size: 0.85rem;
      color: var(--accent-cyan);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
    }

    .persona-description {
      font-size: clamp(0.95rem, 1.1vw, 1rem);
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    .persona-benefits {
      list-style: none;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .persona-benefits li {
      margin-bottom: 0.4rem;
      padding-left: 1.2rem;
      position: relative;
    }

    .persona-benefits li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--accent-cyan);
    }

    /* SERVICES */
    .services-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
    }

    .services-grid {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.8rem;
    }

    @media (max-width: 900px) {
      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .service-card {
      border-radius: 30px;
      padding: 2.4rem 2rem;
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
      border: 1px solid rgba(31, 41, 55, 0.95);
      text-align: left;
      transition: transform 0.32s ease, background 0.32s ease, border-color 0.32s ease;
      transform-style: preserve-3d;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
      opacity: 1;
      visibility: visible;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
      );
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
      z-index: 1;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-8px);
      background: #111119;
      border-color: rgba(148, 163, 184, 0.8);
      box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.2),
        inset 0 0 60px rgba(102, 126, 234, 0.1);
    }

    .service-title {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: clamp(1.2rem, 1.5vw, 1.4rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0.6rem;
      color: #ffffff;
    }

    .service-subtitle {
      font-size: clamp(0.95rem, 1.1vw, 1.05rem);
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .service-link {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* TESTIMONIALS */
    .testimonials-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
    }

    .testimonial-inner {
      max-width: 840px;
      margin: 0 auto;
      padding: 0 1.75rem;
      text-align: center;
    }

    .testimonial-stats-row {
      display: flex;
      justify-content: center;
      gap: 2.2rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .testimonial-stat {
      font-family: "Poppins", system-ui, sans-serif;
      font-size: 1.6rem;
    }

    .testimonial-stat span {
      display: block;
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-top: 0.2rem;
    }

    blockquote {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
      position: relative;
      padding: 0 1rem;
    }

    blockquote::before {
      content: "“";
      position: absolute;
      left: 0;
      top: -1rem;
      font-size: 3rem;
      color: rgba(148, 163, 184, 0.2);
    }

    .testimonial-client {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
    }

    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: radial-gradient(circle at 20% 0, #00d4ff, #667eea);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      box-shadow: var(--shadow-soft);
      margin-bottom: 0.4rem;
    }

    .testimonial-name {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .testimonial-title {
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    /* FAQ ACCORDION */
    .faq-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      padding: 5rem 0;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1.75rem;
    }

    .faq-item {
      border-radius: var(--radius-lg);
      margin-bottom: 1rem;
      background: rgba(10, 10, 18, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.3);
      overflow: hidden;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-item.active {
      border-color: rgba(0, 212, 255, 0.5);
      box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    }

    .faq-question {
      padding: 1.4rem 1.6rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: "Poppins", system-ui, sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      transition: color 0.3s ease;
      user-select: none;
    }

    .faq-question:hover {
      color: var(--accent-cyan);
    }

    .faq-item.active .faq-question {
      color: var(--accent-cyan);
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(0, 212, 255, 0.1);
      transition: transform 0.3s ease, background 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      background: rgba(0, 212, 255, 0.2);
    }

    .faq-icon::before {
      content: "▼";
      font-size: 0.7rem;
      color: var(--accent-cyan);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 1.6rem;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 1.6rem 1.4rem;
    }

    .faq-answer-content {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding-top: 0.5rem;
    }

    /* PRICING */
    .pricing-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
    }

    .pricing-grid {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 1.75rem;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 1.8rem;
      width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 900px) {
      .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
      }
    }

    .pricing-card {
      border-radius: 28px;
      padding: 2rem 1.9rem;
      background: #0a0a11;
      border: 1px solid rgba(31, 41, 55, 0.9);
      position: relative;
    }

    .pricing-tag {
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 0.4rem;
    }

    .pricing-name {
      font-family: "Poppins";
      font-size: 1.2rem;
      margin-bottom: 0.2rem;
    }

    .pricing-price {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }

    .pricing-badge {
      position: absolute;
      top: 1.3rem;
      right: 1.4rem;
      font-size: 0.72rem;
      border-radius: 999px;
      padding: 0.22rem 0.65rem;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(10, 10, 18, 0.95);
      color: var(--accent);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .pricing-list {
      font-size: 0.88rem;
      color: var(--text-muted);
      list-style: none;
      margin-top: 0.6rem;
    }

    .pricing-list li {
      margin-bottom: 0.25rem;
    }

    /* CTA SECTION */
    .cta-section {
      background: radial-gradient(circle at center, rgba(102, 126, 234, 0.25), transparent 60%);
      border-top: 1px solid rgba(37, 99, 235, 0.7);
    }

    .cta-inner {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      border-radius: 32px;
      background:
        radial-gradient(circle at top right, rgba(0, 212, 255, 0.22), transparent 60%),
        rgba(5, 5, 12, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.6rem;
      padding: 2.3rem 2rem;
    }

    .cta-main {
      max-width: 430px;
    }

    .cta-title {
      font-family: "Poppins";
      font-size: 1.5rem;
      margin-bottom: 0.6rem;
    }

    .cta-text {
      font-size: 0.92rem;
      color: var(--text-muted);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1000;
      pointer-events: auto;
    }

    .cta-actions a,
    .cta-actions .btn-primary,
    .cta-actions .btn-ghost {
      position: relative;
      z-index: 1001;
      pointer-events: auto !important;
    }
    
    @media (max-width: 900px) {
      .cta-actions {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
      }
      
      .cta-actions a {
        width: 100%;
        text-align: center;
      }
    }

    .cta-badge {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* CONTACT */
    .contact-section {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      padding-bottom: 3.5rem;
    }

    .contact-grid {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 2rem;
      align-items: flex-start;
      width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
      }
    }

    .contact-copy {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .contact-line {
      font-size: 0.86rem;
      color: var(--text-soft);
      margin-bottom: 0.4rem;
    }

    .contact-form {
      border-radius: 28px;
      padding: 1.8rem 1.6rem;
      background: #0a0a11;
      border: 1px solid rgba(31, 41, 55, 0.95);
    }

    .form-group {
      margin-bottom: 0.9rem;
    }

    .form-label {
      font-size: 0.78rem;
      color: var(--text-soft);
      margin-bottom: 0.25rem;
      display: block;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(51, 65, 85, 0.9);
      background: #050509;
      padding: 0.7rem 0.75rem;
      font-size: 0.86rem;
      color: #f9fafb;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      font-family: inherit;
      resize: vertical;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--text-soft);
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.6);
    }

    .btn-submit {
      margin-top: 0.4rem;
      border-radius: 999px;
      border: none;
      padding: 0.75rem 1.6rem;
      font-size: 0.86rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 600;
      background: var(--accent-gradient);
      color: #f9fafb;
      cursor: pointer;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.3s ease,
                  background 0.3s ease,
                  scale 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-submit::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn-submit:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 30px 100px rgba(102, 126, 234, 0.5),
                  0 0 40px rgba(0, 212, 255, 0.4);
      background: linear-gradient(135deg, #00d4ff 0%, #667eea 50%, #764ba2 100%);
    }

    .btn-submit:hover::before {
      opacity: 1;
    }

    .btn-submit:active {
      transform: translateY(-1px) scale(1.01);
    }

    /* FOOTER */
    footer {
      background: transparent;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      padding: 1.6rem 0 2rem;
    }

    .footer-inner {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.78rem;
      color: var(--text-soft);
    }
    
    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
      }
      
      .footer-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        justify-content: center;
      }
      
      .footer-social {
        justify-content: center;
      }
    }

    .footer-links {
      display: flex;
      gap: 1.4rem;
      flex-wrap: wrap;
      list-style: none;
    }

    .footer-links a:hover {
      color: #e5e7eb;
    }

    .footer-social {
      display: flex;
      gap: 0.8rem;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(31, 41, 55, 0.9);
      background: #050509;
      color: var(--text-soft);
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      border-color: var(--accent-cyan);
      color: var(--accent-cyan);
      background: rgba(0, 212, 255, 0.1);
      transform: translateY(-2px);
    }
    
    .footer-social a svg {
      width: 18px;
      height: 18px;
    }
    
    @media (max-width: 768px) {
      .footer-social {
        gap: 0.6rem;
      }
      .footer-social a {
        width: 32px;
        height: 32px;
      }
      .footer-social a svg {
        width: 16px;
        height: 16px;
      }
    }

    /* REVEAL ANIMATION UTIL - Simplified for better rendering */
    .reveal {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    /* Only apply animation if JS is enabled and element is not yet visible */
    .reveal:not(.visible) {
      opacity: 0;
      transform: translateY(20px);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered animations for child elements */
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-stagger.visible > *:nth-child(1) {
      transition-delay: 0.1s;
    }
    .reveal-stagger.visible > *:nth-child(2) {
      transition-delay: 0.2s;
    }
    .reveal-stagger.visible > *:nth-child(3) {
      transition-delay: 0.3s;
    }
    .reveal-stagger.visible > *:nth-child(4) {
      transition-delay: 0.4s;
    }
    .reveal-stagger.visible > *:nth-child(5) {
      transition-delay: 0.5s;
    }
    .reveal-stagger.visible > *:nth-child(6) {
      transition-delay: 0.6s;
    }

    .reveal-stagger.visible > * {
      opacity: 1;
      transform: translateY(0);
    }

    /* FLOATING SECTION NAVIGATOR */
    .section-nav {
      position: fixed;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 800;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .section-nav.visible {
      opacity: 1;
    }

    .section-nav-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(148, 163, 184, 0.4);
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .section-nav-dot:hover {
      background: rgba(0, 212, 255, 0.6);
      transform: scale(1.3);
    }

    .section-nav-dot.active {
      background: var(--accent-cyan);
      border-color: rgba(0, 212, 255, 0.5);
      box-shadow: 0 0 12px rgba(0, 212, 255, 0.6), 0 0 24px rgba(0, 212, 255, 0.4);
      transform: scale(1.5);
    }

    .section-nav-dot.active::before {
      content: "";
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(0, 212, 255, 0.3);
      animation: activeGlow 2s ease-in-out infinite;
    }

    @keyframes activeGlow {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.2); }
    }

    .section-nav-dot::after {
      content: attr(data-label);
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      white-space: nowrap;
      font-size: 0.7rem;
      color: var(--text-soft);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .section-nav-dot:hover::after {
      opacity: 1;
    }

    @media (max-width: 1024px) {
      .section-nav {
        display: none;
      }
    }

    /* 3D HOLOGRAPHIC FIGURE - Premium Enhanced */
    .hero-3d-figure {
      position: absolute;
      right: 0%;
      top: 10%;
      width: 600px;
      height: 800px;
      perspective: 1500px;
      z-index: 1;
      pointer-events: none;
      opacity: 0.85;
    }

    @media (max-width: 1200px) {
      .hero-3d-figure {
        width: 400px;
        height: 500px;
        right: 2%;
      }
    }

    @media (max-width: 960px) {
      .hero-3d-figure {
        display: none;
      }
    }

    .floating-figure {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      animation: float3d 8s cubic-bezier(0.4, 0, 0.2, 1) infinite, slowRotate 25s linear infinite;
      will-change: transform;
      filter: 
        drop-shadow(0 0 60px rgba(0, 212, 255, 0.8)) 
        drop-shadow(0 0 120px rgba(102, 126, 234, 0.6))
        drop-shadow(0 0 180px rgba(118, 75, 162, 0.4))
        saturate(1.4) brightness(1.3);
    }

    /* Chromatic aberration effect */
    .floating-figure::before,
    .floating-figure::after {
      content: '';
      position: absolute;
      inset: 0;
      background: inherit;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: -1;
    }

    .floating-figure::before {
      transform: translate(-4px, 0);
      filter: hue-rotate(180deg) blur(3px);
      opacity: 0.4;
    }

    .floating-figure::after {
      transform: translate(4px, 0);
      filter: hue-rotate(90deg) blur(3px);
      opacity: 0.4;
    }

    /* Create 3D financial symbol using CSS */
    .figure-base {
      position: absolute;
      width: 200px;
      height: 200px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(102, 126, 234, 0.2));
      border-radius: 50%;
      filter: blur(40px);
      animation: pulse-glow 6s ease-in-out infinite;
      will-change: opacity, transform;
    }

    .figure-main {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform-style: preserve-3d;
    }

    /* Create rupee symbol or financial graph shape */
    .figure-symbol {
      font-size: 16rem;
      font-weight: 900;
      color: transparent;
      background: linear-gradient(135deg, #00d4ff, #667eea, #764ba2, #ff00ff);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      text-shadow: 0 0 80px rgba(0, 212, 255, 1),
                   0 0 120px rgba(102, 126, 234, 0.8),
                   0 0 160px rgba(118, 75, 162, 0.6);
      animation: symbol-glow 3s ease-in-out infinite, gradientShift 5s ease-in-out infinite;
      transform: translateZ(80px) scale(1.1);
      font-family: "Poppins", system-ui, sans-serif;
      line-height: 1;
      will-change: filter, transform;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Glowing ring around figure - Enhanced */
    .holographic-glow-ring {
      position: absolute;
      width: 150%;
      height: 150%;
      top: -25%;
      left: -25%;
      background: 
        radial-gradient(ellipse at 30% 30%, rgba(0, 212, 255, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
      animation: pulse-glow 5s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotateGlow 20s linear infinite;
      filter: blur(50px);
      pointer-events: none;
      z-index: -2;
    }

    @keyframes pulse-glow {
      0%, 100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
      }
      50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
      }
    }

    @keyframes rotateGlow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes float3d {
      0%, 100% {
        transform: translateY(0) translateZ(0) rotateY(0deg) scale(1);
      }
      25% {
        transform: translateY(-25px) translateZ(20px) rotateY(5deg) scale(1.02);
      }
      50% {
        transform: translateY(-40px) translateZ(40px) rotateY(15deg) scale(1.05);
      }
      75% {
        transform: translateY(-25px) translateZ(20px) rotateY(5deg) scale(1.02);
      }
    }

    @keyframes slowRotate {
      from {
        transform: rotateY(0deg) rotateX(0deg);
      }
      to {
        transform: rotateY(360deg) rotateX(10deg);
      }
    }

    @keyframes pulse-glow {
      0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
      }
      50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
      }
    }

    @keyframes symbol-glow {
      0%, 100% {
        filter: brightness(1) drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
      }
      50% {
        filter: brightness(1.2) drop-shadow(0 0 60px rgba(102, 126, 234, 0.6));
      }
    }

    /* RESPONSIVE HERO */
    @media (max-width: 768px) {
      .hero-title {
        font-size: clamp(36px, 10vw, 56px);
        line-height: 1;
        margin-bottom: 1rem;
      }
      .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        max-width: 100%;
      }
      .hero-inner {
        padding: 0 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero-title {
        font-size: clamp(32px, 12vw, 48px);
      }
    }

    /* FINAL MOBILE BUTTON FIX - MAXIMUM PRIORITY */
    @media (max-width: 900px) {
      a.btn-primary, a.btn-ghost, a.btn-cta, .btn-primary, .btn-ghost, .btn-cta {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
        display: inline-flex !important;
        min-height: 48px !important;
        min-width: 48px !important;
      }
      .hero-cta-row, .cta-actions, .nav-right {
        position: relative !important;
        z-index: 99998 !important;
        pointer-events: auto !important;
      }
      a.btn-primary::before, a.btn-primary::after, a.btn-ghost::before, a.btn-ghost::after, a.btn-cta::before, a.btn-cta::after,
      .btn-primary::before, .btn-primary::after, .btn-ghost::before, .btn-ghost::after, .btn-cta::before, .btn-cta::after {
        pointer-events: none !important;
        z-index: -999 !important;
      }
      
      /* SPECIFIC FIX FOR "GET STARTED" AND "TALK ABOUT SETUP" */
      .nav-right a.btn-cta,
      .cta-actions a.btn-primary {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
        display: inline-flex !important;
        min-height: 48px !important;
        min-width: 48px !important;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.5) !important;
      }
      
      .nav-right a.btn-cta::before,
      .nav-right a.btn-cta::after,
      .cta-actions a.btn-primary::before,
      .cta-actions a.btn-primary::after {
        pointer-events: none !important;
        z-index: -999 !important;
      }
    }

    /* ============================================
       ULTIMATE FIX FOR "GET STARTED" AND "TALK ABOUT SETUP" BUTTONS
       ============================================ */
    #ctaGetStarted,
    #ctaTalkSetup {
      position: relative !important;
      z-index: 999999 !important;
      pointer-events: auto !important;
      touch-action: manipulation !important;
      cursor: pointer !important;
      display: inline-flex !important;
      min-height: 48px !important;
      min-width: 48px !important;
      -webkit-tap-highlight-color: rgba(0, 212, 255, 0.5) !important;
      user-select: none !important;
      -webkit-user-select: none !important;
    }
    
    #ctaGetStarted::before,
    #ctaGetStarted::after,
    #ctaTalkSetup::before,
    #ctaTalkSetup::after {
      pointer-events: none !important;
      z-index: -999 !important;
      display: none !important;
    }
    
    @media (max-width: 768px) {
      #ctaGetStarted,
      #ctaTalkSetup {
        z-index: 999999 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        position: relative !important;
        display: inline-flex !important;
        min-height: 48px !important;
        min-width: 48px !important;
      }
      
      .nav-right,
      .cta-actions {
        position: relative !important;
        z-index: 999998 !important;
        pointer-events: auto !important;
      }
      
      header,
      .cta-section {
        position: relative !important;
        z-index: 999997 !important;
      }
    }

    /* CRITICAL MOBILE BUTTON FIX - HIGHEST PRIORITY */
    @media (max-width: 900px) {
      .nav-right {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        overflow: visible !important;
      }
      
      #ctaGetStarted {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
        display: inline-flex !important;
        min-height: 48px !important;
        min-width: 48px !important;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.5) !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        overflow: visible !important;
      }
      
      #ctaGetStarted::before,
      #ctaGetStarted::after {
        pointer-events: none !important;
        z-index: -999 !important;
        display: none !important;
      }
      
      #ctaTalkSetup {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
        display: inline-flex !important;
        min-height: 48px !important;
        min-width: 48px !important;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.5) !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        overflow: visible !important;
      }
      
      #ctaTalkSetup::before,
      #ctaTalkSetup::after {
        pointer-events: none !important;
        z-index: -999 !important;
        display: none !important;
      }
      
      .cta-actions {
        position: relative !important;
        z-index: 99998 !important;
        pointer-events: auto !important;
        overflow: visible !important;
      }
      
      .cta-actions a,
      .cta-actions .btn-primary,
      .cta-actions .btn-ghost {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
        overflow: visible !important;
      }
      
      header {
        overflow: visible !important;
      }
      
      .cta-section,
      .cta-inner {
        position: relative !important;
        overflow: visible !important;
        pointer-events: auto !important;
      }
    }

/* ======  MOBILE KILL-SWITCH FOR CURSOR  ====== */
@media (max-width: 768px) {
  #customCursor,
  #customCursorOuter {
    display: none !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  body {
    cursor: auto !important;
  }
}

/* ======  HIDE PROBLEMATIC BUTTONS ON MOBILE - SHOW ALTERNATIVES  ====== */
/* Mobile Contact Us button - hidden by default, only visible on mobile */
.mobile-contact-btn {
  display: none !important;
}

@media (max-width: 900px) {
  /* Hide the problematic buttons on mobile */
  #ctaGetStarted,
  #ctaTalkSetup {
    display: none !important;
  }
  
  /* Show mobile Contact Us button */
  .mobile-contact-btn {
    display: inline-flex !important;
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    cursor: pointer !important;
    min-height: 48px !important;
    min-width: 48px !important;
    -webkit-tap-highlight-color: rgba(0, 212, 255, 0.5) !important;
  }
  
  /* Ensure nav-right still looks good */
  .nav-right {
    gap: 0.5rem;
  }
  
  /* Make CTA section look good with just one button */
  .cta-actions {
    justify-content: center;
  }
  
  /* Ensure mobile menu Contact link is prominent */
  .mobile-menu a[href="#contact"] {
    font-weight: 600;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
  }
  
  /* Make header nav Contact link more prominent on mobile */
  nav a[href="#contact"] {
    font-weight: 600;
    color: var(--accent);
  }
}

/* Desktop: Show Get Started button, hide Contact Us button */
@media (min-width: 901px) {
  /* Force hide mobile Contact Us button on desktop */
  .mobile-contact-btn,
  #mobileContactBtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Show Get Started button on desktop */
  #ctaGetStarted {
    display: inline-flex !important;
  }
  
  /* Show TALK ABOUT SETUP button on desktop */
  #ctaTalkSetup {
    display: inline-flex !important;
  }
}