/* roulang page: index */
:root {
      --color-brand: #2563EB;
      --color-accent: #10B981;
      --bg-slate: #F8FAFC;
    }
    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    .custom-scroll::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    .custom-scroll::-webkit-scrollbar-thumb {
      background-color: #cbd5e1;
      border-radius: 9999px;
    }
    .hero-glow {
      background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.06) 0%, rgba(16, 185, 129, 0.04) 50%, transparent 80%);
    }
    .trans-standard {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
