    :root {
      --bg: radial-gradient(circle at center, #ffffff 0%, #f8f9fa 100%);
      --ink: #09090b;
      /* Zinc 950 */
      --muted: #71717a;
      /* Zinc 500 */
      --pill: #09090b;
      --accent: #2563eb;
      /* Clean Blue Accent */
      --accent-muted: #eff6ff;
      --border: rgba(0, 0, 0, 0.06);

      /* Dynamic Stage size based on vmin to scale perfectly on all screen resolutions.
         min() with vw guarantees the stage never exceeds the viewport width on very narrow phones. */
      --stage-size: clamp(240px, min(92vmin, 90vw), 1300px);
      --radius: calc(var(--stage-size) * 0.475);
    }

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

    html {
      overflow-x: hidden;
      width: 100%;
    }


    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      max-width: 100% !important;
      width: 100% !important;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(-15px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
      z-index: 1000;
      background: transparent;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      padding: 14px 32px;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    }

    /* Pages whose hero sits on a dark image (blog/case-studies listing,
       blog-post/case-study detail) need light nav text before scrolling,
       since the nav itself is transparent at that point. */
    nav.nav-on-dark-hero:not(.scrolled) .brand-logo-img {
      filter: brightness(0) invert(1);
    }

    nav.nav-on-dark-hero:not(.scrolled) .nav-links {
      color: rgba(255, 255, 255, 0.85);
    }

    nav.nav-on-dark-hero:not(.scrolled) .nav-links a:hover {
      color: #ffffff;
    }

    nav.nav-on-dark-hero:not(.scrolled) .hamburger-btn span {
      background-color: #ffffff;
    }

    .loaded nav {
      opacity: 1;
      transform: translateY(0);
    }

    .logo {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .brand-logo-img {
      height: 36px;
      /* standard navbar logo height */
      width: auto;
      display: block;
      filter: brightness(0);
      /* force logo black */
      transition: opacity 0.2s ease;
    }

    .brand-logo-img:hover {
      opacity: 0.8;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 18px;
      font-weight: 500;
      color: #52525b;
      /* Zinc 600 */
    }

    .nav-links a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    /* MEGA DROPDOWN MENU */
    .has-dropdown {
      position: relative;
    }

    .nav-link-dropdown {
      display: flex;
      align-items: center;
      cursor: pointer;
      position: relative;
    }

    /* Interactive Dropdown Arrow */
    .has-dropdown {
      position: static;
    }

    /* Interactive Dropdown Arrow */
    .chevron {
      display: inline-block;
      width: 5px;
      height: 5px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      margin-left: 6px;
      margin-top: -2px;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .has-dropdown.dropdown-open .chevron {
      transform: rotate(-135deg) translateY(1.5px) translateX(-1.5px);
    }

    /* Invisible hover bridge to prevent menu close */
    .nav-link-dropdown::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 30px;
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      transform: translateY(12px);
      transform-origin: top center;
      background: white;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-radius: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      border-left: none;
      border-right: none;
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 10%;
      gap: 60px;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
      z-index: 101;
    }

    .has-dropdown.dropdown-open .mega-menu {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transform: translateY(0);
    }

    /* Left Sidebar Categories */
    .mega-menu .menu-sidebar {
      width: 240px;
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(0, 0, 0, 0.06);
      padding-right: 32px;
      gap: 16px;
      flex-shrink: 0;
    }

    .mega-menu .sidebar-item {
      font-size: 13px;
      font-weight: 600;
      color: #71717a;
      text-decoration: none;
      background: none;
      border: none;
      padding: 6px 0;
      text-align: left;
      cursor: pointer;
      letter-spacing: 0.05em;
      transition: color 0.25s, transform 0.25s;
      outline: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mega-menu .sidebar-item:hover,
    .mega-menu .sidebar-item.active {
      color: var(--ink);
    }

    .mega-menu .sidebar-item.active {
      font-weight: 700;
      position: relative;
    }

    /* Content Area & Tabs */
    .mega-menu .menu-content-grid {
      flex: 1;
      max-width: 760px;
      position: relative;
    }

    .mega-menu .menu-tab-content {
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .mega-menu .menu-tab-content.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* Horizontal Showcase Card (India Art Fair Design Format) */
    .mega-menu .showcase-card {
      display: flex;
      align-items: center;
      gap: 36px;
      width: 100%;
    }

    .mega-menu .card-image-wrapper {
      width: 330px;
      height: 220px;
      flex-shrink: 0;
      background: none;
      border: none;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mega-menu .card-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: none;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mega-menu .showcase-card:hover .card-image-wrapper img {
      transform: scale(1.04);
    }

    .mega-menu .card-text-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .mega-menu .card-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #71717a;
      text-transform: uppercase;
    }

    .mega-menu .card-title {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--ink);
      letter-spacing: -0.02em;
      margin: 4px 0;
      text-transform: uppercase;
    }

    .mega-menu .card-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .mega-menu .card-btn {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--ink);
      text-decoration: none;
      padding: 10px 24px;
      border: 1.5px solid var(--ink);
      border-radius: 4px;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
      text-transform: uppercase;
      display: inline-block;
    }

    .mega-menu .card-btn:hover {
      background: var(--ink);
      color: #fff;
    }

    .nav-product-icon {
      width: 18px;
      height: 18px;
      object-fit: contain;
      display: inline-block;
      vertical-align: middle;
      flex-shrink: 0;
    }

    .nav-cta-group {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-demo {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      color: #ffffff;
      border: 1px solid transparent;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 8px 20px -10px rgba(122, 164, 246, 0.6);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .btn-demo:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 14px 28px -10px rgba(122, 164, 246, 0.7);
      filter: brightness(1.06);
    }

    .btn-demo:active {
      transform: scale(0.98);
    }

    .btn-try {
      background: #18181b;
      /* Black/Zinc 900 */
      color: #fff;
      border: 1px solid #68686d;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .btn-try:hover {
      background: #000000;
      /* Pure black on hover */
      border-color: #000000;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      transform: scale(1.02);
    }

    .btn-try:active {
      transform: scale(0.98);
    }


    /* HAMBURGER TOGGLE STYLING */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1100;
      margin-left: auto;
    }

    .hamburger-btn span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--ink);
      border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* MOBILE DRAWER STYLING */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      left: auto;
      width: 82vw;
      max-width: 340px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 1050;
      padding: 80px 24px 40px;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.04);
      border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 1040;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .mobile-drawer-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer-close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: transparent;
      border: none;
      font-size: 28px;
      font-weight: 300;
      color: var(--ink);
      cursor: pointer;
      padding: 8px;
      line-height: 1;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .drawer-close-btn:hover {
      opacity: 0.7;
      transform: scale(1.1);
    }

    .mobile-drawer.active {
      transform: translateX(0);
    }

    .mobile-drawer-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      overflow-y: auto;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 24px;
      font-size: 20px;
      font-weight: 600;
    }

    .mobile-nav-links a {
      text-decoration: none;
      color: var(--ink);
      transition: opacity 0.2s;
    }

    .mobile-nav-links a:hover {
      opacity: 0.7;
    }

    .mobile-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: transparent;
      border: none;
      font-size: 20px;
      font-weight: 600;
      color: var(--ink);
      padding: 0;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
    }

    .mobile-dropdown-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mobile-dropdown-menu.active {
      max-height: 400px;
      margin-top: 16px;
    }

    .mobile-product-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.03);
      text-decoration: none;
    }

    .mobile-product-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mobile-product-desc {
      font-size: 12px;
      color: var(--muted);
      font-weight: 400;
      margin-top: 2px;
    }

    .mobile-cta-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 30px;
    }

    .mobile-cta-group button {
      width: 100%;
      padding: 12px;
      border-radius: 99px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
    }

    /* RESPONSIVE NAV */
    @media (max-width: 768px) {
      nav {
        padding: 16px 24px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }

      nav.scrolled {
        padding: 12px 24px;
      }

      .nav-links {
        display: none;
      }

      .nav-cta-group {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 12px 16px;
      }

      .brand-logo-img {
        height: 22px;
      }
    }

    @media (max-width: 380px) {
      nav {
        padding: 10px 14px;
      }

      .mobile-drawer {
        width: 88vw;
        padding: 70px 20px 32px;
      }

      .footer-container {
        padding: 40px 16px 32px 16px;
      }

      .footer-bottom {
        padding: 20px 16px;
      }
    }

    /* FOOTER STYLING */
    .footer {
      background: #ffffff;
      width: 100%;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      z-index: 10;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      padding: 40px 32px 20px 32px;
    }

    .footer-column h4 {
      font-size: 15px;
      font-weight: 700;
      color: #18181b;
      /* Zinc 900 */
      margin-bottom: 24px;
      padding-bottom: 10px;
      border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
      display: block;
      width: 100%;
      letter-spacing: -0.01em;
      text-transform: capitalize;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

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

    .footer-column a {
      text-decoration: none;
      color: #71717a;
      /* Zinc 500 */
      font-size: 13.5px;
      font-weight: 500;
      transition: color 0.2s ease, padding-left 0.2s ease;
      display: inline-block;
    }

    .footer-column a:hover {
      color: #18181b;
      /* Zinc 900 */
      padding-left: 3px;
    }

    .footer-column p {
      color: #71717a;
      /* Zinc 500 */
      font-size: 13.5px;
      line-height: 1.6;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .footer-social-links {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .social-item {
      position: relative;
      display: inline-block;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #fafafa;
      text-decoration: none;
      color: #71717a;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      box-sizing: border-box;
    }

    .social-item:hover {
      color: #8b5cf6;
      /* Violet highlight */
      border-color: rgba(139, 92, 246, 0.2);
      background: #f5f3ff;
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
    }

    .social-item svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 18px;
      height: 18px;
      stroke-width: 1.2;
      display: block;
    }

    .footer-bottom {
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding: 28px 32px;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .footer-bottom-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px 16px;
      font-size: 12px;
      color: #71717a;
      /* Zinc 500 */
      font-weight: 500;
    }

    .footer-bottom-links a {
      text-decoration: none;
      color: inherit;
      transition: color 0.2s ease;
    }

    .footer-bottom-links a:hover {
      color: #18181b;
      /* Zinc 900 */
    }

    .footer-copyright {
      font-size: 12px;
      color: #a1a1aa;
      /* Zinc 400 */
      font-weight: 500;
    }

    @media (max-width: 900px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 60px 24px 40px 24px;
      }
    }

    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 50px 20px 40px 20px;
      }

      .footer-bottom {
        padding: 24px 20px;
      }
    }


    /* COOKIE CONSENT BANNER */
    .cookie-banner {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 1200;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      width: 428px;
      max-width: calc(100vw - 32px);
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.25);
      padding: 20px;
      opacity: 0;
      transform: translateY(24px);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .cookie-banner--visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .cookie-banner-icon {
      font-size: 22px;
      line-height: 1;
      flex-shrink: 0;
    }

    .cookie-banner-text {
      margin: 0 0 14px 0;
      font-size: 13.5px;
      line-height: 1.55;
      color: var(--muted);
    }

    .cookie-banner-link {
      color: var(--accent);
      font-weight: 600;
      text-decoration: underline;
    }

    .cookie-banner-link:hover {
      color: #1d4ed8;
    }

    .cookie-banner-actions {
      display: flex;
      gap: 10px;
    }

    .cookie-btn {
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 999px;
      cursor: pointer;
      transition: opacity 0.15s, transform 0.15s;
      white-space: nowrap;
    }

    .cookie-btn:hover {
      opacity: 0.85;
      transform: translateY(-1px);
    }

    .cookie-btn-decline {
      background: #ffffff;
      color: var(--muted);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cookie-btn-accept {
      background: var(--pill);
      color: #fff;
      border: 1px solid var(--pill);
    }

    @media (max-width: 480px) {
      .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
      }
    }