/* ========== CSS RESET & VARIABLES ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ---------- BRAND PALETTE ---------- */
  --color-green:          #4cda84; /* primary brand */
  --color-green-light:    #6ee7a0;
  --color-green-dark:     #1a8d5c;
  --color-green-darker:   #0f6640;
  --color-teal:           #48d1cc; /* gradient partner */
  --color-teal-deep:      #17c3b2;
  --color-blue:           #2a7de1;
  --color-purple:         #9333ea;
  --color-purple-dark:    #7c3aed;
  --color-purple-darker:  #6d28d9;
  --color-amber:          #f0c050;
  --color-red:            #e74c3c;

  /* ---------- NEUTRALS / SURFACES ---------- */
  --color-bg-dark:        #0b1f2c; /* page body */
  --color-bg-darker:      #081a24; /* deepest panel */
  --color-bg-darkest:     #08192a; /* card extremes */
  --color-bg-section:     #0d2233; /* section backdrops */
  --color-bg-night:       #1a1a2e; /* edit-mode chrome */
  --color-white:          #ffffff;
  --color-gray-light:     #b8c9d6;
  --color-gray:           #7a8fa0;
  --color-gray-dark:      #666666;
  --color-gray-darker:    #555555;
  --color-gray-darkest:   #333333;
  --color-ink:            #222222;

  /* ---------- GRADIENTS ---------- */
  --color-green-gradient: linear-gradient(90deg, var(--color-green), var(--color-teal));

  /* ---------- WHITE OVERLAYS (light on dark) ---------- */
  --overlay-white-03: rgba(255, 255, 255, 0.03);
  --overlay-white-05: rgba(255, 255, 255, 0.05);
  --overlay-white-06: rgba(255, 255, 255, 0.06);
  --overlay-white-08: rgba(255, 255, 255, 0.08);
  --overlay-white-10: rgba(255, 255, 255, 0.10);
  --overlay-white-15: rgba(255, 255, 255, 0.15);
  --overlay-white-18: rgba(255, 255, 255, 0.18);
  --overlay-white-20: rgba(255, 255, 255, 0.20);
  --overlay-white-30: rgba(255, 255, 255, 0.30);
  --overlay-white-32: rgba(255, 255, 255, 0.32);
  --overlay-white-40: rgba(255, 255, 255, 0.40);
  --overlay-white-45: rgba(255, 255, 255, 0.45);
  --overlay-white-50: rgba(255, 255, 255, 0.50);
  --overlay-white-94: rgba(255, 255, 255, 0.94);
  --overlay-white-96: rgba(255, 255, 255, 0.96);
  --overlay-white-97: rgba(255, 255, 255, 0.97);
  --overlay-white-100: rgba(255, 255, 255, 1);

  /* ---------- BLACK SHADOWS / SCRIMS ---------- */
  --overlay-black-03: rgba(0, 0, 0, 0.03);
  --overlay-black-06: rgba(0, 0, 0, 0.06);
  --overlay-black-30: rgba(0, 0, 0, 0.30);
  --overlay-black-35: rgba(0, 0, 0, 0.35);
  --overlay-black-40: rgba(0, 0, 0, 0.40);
  --overlay-black-45: rgba(0, 0, 0, 0.45);
  --overlay-black-55: rgba(0, 0, 0, 0.55);
  --overlay-black-60: rgba(0, 0, 0, 0.60);
  --overlay-black-75: rgba(0, 0, 0, 0.75);
  --overlay-black-90: rgba(0, 0, 0, 0.90);

  /* ---------- GREEN GLOWS (brand glow layers) ---------- */
  --glow-green-06:  rgba(76, 218, 132, 0.06);
  --glow-green-08:  rgba(76, 218, 132, 0.08);
  --glow-green-12:  rgba(76, 218, 132, 0.12);
  --glow-green-20:  rgba(76, 218, 132, 0.20);
  --glow-green-30:  rgba(76, 218, 132, 0.30);
  --glow-green-40:  rgba(76, 218, 132, 0.40);
  --glow-green-50:  rgba(76, 218, 132, 0.50);
  --glow-green-60:  rgba(76, 218, 132, 0.60);
  --glow-green-80:  rgba(76, 218, 132, 0.80);
  --glow-green-100: rgba(76, 218, 132, 1);

  /* ---------- BLUE / PURPLE TINTS ---------- */
  --glow-blue-06:  rgba(42, 125, 225, 0.06);
  --glow-blue-10:  rgba(42, 125, 225, 0.10);
  --glow-purple-50: rgba(147, 51, 234, 0.5);
  --glow-purple-dark-50: rgba(124, 58, 237, 0.5);

  /* ---------- DARK SCRIMS (brand-dark rgba) ---------- */
  --scrim-dark-0:  rgba(11, 31, 44, 0);
  --scrim-dark-45: rgba(11, 31, 44, 0.45);
  --scrim-dark-50: rgba(11, 31, 44, 0.50);
  --scrim-dark-55: rgba(11, 31, 44, 0.55);
  --scrim-dark-72: rgba(11, 31, 44, 0.72);
  --scrim-dark-95: rgba(11, 31, 44, 0.95);

  /* ---------- CANVAS EFFECT TINTS (infinity ribbon gradients) ---------- */
  --ribbon-teal-light:  rgba(90, 210, 200, 0.20);
  --ribbon-teal-soft:   rgba(120, 240, 200, 0.18);
  --ribbon-teal-medium: rgba(140, 230, 220, 0.35);
  --ribbon-teal-deep:   rgba(70, 200, 200, 0.25);
  --ribbon-teal-mist:   rgba(120, 255, 220, 0.12);
  --ribbon-pearl:       rgba(230, 255, 245, 0.95);
  --ribbon-pearl-dim:   rgba(200, 230, 230, 0.75);
  --ribbon-blue-deep:   rgba(40, 110, 180, 0.22);
  --ribbon-amber-dim:   rgba(255, 200, 50, 0.08);

  /* ---------- TYPOGRAPHY / METRICS ---------- */
  --font-primary: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nav-height: 60px;
  --banner-height: 48px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ========== NAVIGATION ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 26, 36, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-svg {
  height: 24px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

/* Active dropdown state */
.nav-item.has-dropdown:hover .nav-link,
.nav-item.has-dropdown:focus-within .nav-link {
  color: var(--color-green);
  background: rgba(76, 218, 132, 0.08);
}

.chevron {
  transition: transform 0.25s;
}

.nav-item.has-dropdown:hover .chevron,
.nav-item.has-dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search, .nav-globe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.2s;
}

.nav-search:hover, .nav-globe:hover {
  background: var(--overlay-white-10);
}

.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-green);
  transition: opacity 0.2s;
}

.nav-signin:hover {
  opacity: 0.8;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--color-green);
  border-radius: 24px;
  color: var(--color-white);
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--color-green);
  color: var(--color-bg-dark);
}

/* ========== ANNOUNCEMENT BANNER ========== */
.announcement-banner {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--color-green), var(--color-teal), var(--color-blue));
  height: var(--banner-height);
}

.announcement-banner p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bg-dark);
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-bg-dark);
  border: 2px solid var(--color-bg-dark);
  border-radius: 20px;
  transition: all 0.2s;
  white-space: nowrap;
}

.banner-btn:hover {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

/* ========== HERO SECTION ========== */
.hero-section {
  margin-top: calc(var(--nav-height) + var(--banner-height));
  height: calc(100vh - var(--nav-height) - var(--banner-height));
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
}

/* Sub-page hero — no carousel, single static hero */
.hero-section--subpage {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hero-section--subpage .hero-text-block {
  position: relative;
  z-index: 1;
  padding: 60px 0px;
  width: 100%;
}
.nr-section.nr-featured{ display:none; }
@media (max-width: 900px) {
  .hero-section--subpage .hero-text-block {
    padding: 40px 24px;
  }
}
.ld-hero__heading { font-size: clamp(36px, 5.5vw, 40px); }
.ld-hero__sub { font-size: 14px; line-height: 1.4; }

/* Utility: green gradient text */
.text-green {
  background: var(--color-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub-page hero content layout */
.hero-section--subpage .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px;
  width: 100%;
}
.hero-section--subpage .hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-section--subpage .hero-date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-green);
  text-transform: uppercase;
}
.hero-section--subpage .hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
}
.hero-section--subpage .hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-section--subpage .hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-gray-light);
}
.hero-section--subpage .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero-section--subpage .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 24px;
  }
}

/* Hero Background — persistent gradient shader canvas */
.hero-shader-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
  opacity: 0.15;
}
/* Ripple variant — slightly more visible since circular patterns are subtler */
#ripple-shader-canvas.hero-shader-canvas {
  opacity: 0.22;
}
/* Noise/FBM variant — organic flowing colours, keep subtle */
#noise-shader-canvas.hero-shader-canvas {
  opacity: 0.18;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* ── Fixed two-column grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  height: 100%;
  padding: 80px 80px 100px;
}

/* ── Left column — text (always same position) ── */
.hero-text-block {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-headline-green {
  color: var(--color-green);
  display: block;
}

.hero-headline-white {
  color: var(--color-white);
  display: block;
}

.hero-subtitle {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  background: var(--color-green);
  color: var(--color-bg-dark);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--glow-green-40);
}

.hero-cta-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-green);
}

.hero-cta-outline:hover {
  background: var(--color-green);
  color: var(--color-bg-dark);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Right column — side content ── */
.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Side cards (vertical stack) */
.hero-side-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 380px;
}

.hero-side-card {
  background: var(--overlay-white-06);
  border: 1px solid var(--overlay-white-06);
  border-left: 3px solid var(--color-green);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.hero-side-card:hover {
  background: var(--overlay-white-10);
  border-left-color: var(--color-teal);
  transform: translateX(4px);
}

.hero-side-stat {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 4px;
}

.hero-side-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.hero-side-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Side stats (2×2 grid) */
.hero-side-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 400px;
}

.hero-side-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-side-stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
}

.hero-side-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 28px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline-light {
  border: 2px solid var(--overlay-white-50);
  color: var(--color-white);
}

.btn-outline-light:hover {
  border-color: var(--color-white);
  background: var(--overlay-white-10);
}

.btn-outline-green {
  border: 2px solid var(--color-green);
  color: var(--color-white);
}

.btn-outline-green:hover {
  background: var(--color-green);
  color: var(--color-bg-dark);
}

/* ========== CAROUSEL CONTROLS ========== */
.carousel-controls {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 2;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--color-green);
  box-shadow: 0 0 12px var(--glow-green-50);
}

.carousel-pause {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-pause:hover {
  opacity: 1;
}

/* ========== LOGOS SECTION ========== */
.logos-section {
  padding: 80px 80px 100px;
  text-align: center;
  background: var(--color-bg-dark);
  position: relative;
}

.logos-heading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-gray);
  text-transform: uppercase;
  margin-bottom: 60px;
}

/* Infinite scroll ticker container */
.logos-ticker {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* The track that moves */
.logos-ticker-track {
  display: flex;
  gap: 32px;
  align-items: center;
  will-change: transform;
  animation: ticker-scroll 40s linear infinite;
}

/* Pause animation on hover */
.logos-ticker:hover .logos-ticker-track {
  animation-play-state: paused;
}

/* Ticker scroll animation */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Individual logo badge items */
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 200px;
}

.logo-badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
}

.logo-item:hover .logo-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px var(--glow-green-20);
  transform: translateY(-2px);
}
/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 120px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-green);
  color: var(--color-bg-dark);
  box-shadow: 0 4px 20px var(--glow-green-30);
  transition: all 0.3s;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-green-40);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    padding: 60px 48px 80px;
    gap: 40px;
  }
  .carousel-controls {
    left: 48px;
  }
  .hero-side-stat-num {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px 80px;
    gap: 32px;
  }
  .hero-side {
    display: none;
  }
  .hero-headline {
    font-size: clamp(28px, 6vw, 44px);
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .carousel-controls {
    left: 24px;
    bottom: 24px;
  }
  .logos-section {
    padding: 48px 24px;
  }
  .logos-heading {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .logos-badge {
    padding: 10px 18px;
    font-size: 11px;
  }
  .logo-item {
    min-width: 160px;
  }
}

/* ========== MEGA MENU ========== */
.mega-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 2px solid var(--color-green);
  padding: 36px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nav-item.has-dropdown:hover .mega-menu,
.nav-item.has-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}

.mega-col {
  flex: 1;
  min-width: 200px;
}

.mega-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-green);
  margin-bottom: 14px;
  margin-top: 24px;
  font-weight: 600;
}

.mega-col .mega-heading:first-child {
  margin-top: 0;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.mega-links li {
  margin-bottom: 4px;
}

.mega-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.mega-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    padding: 16px 0;
    background: var(--color-bg-darker);
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-item.has-dropdown:hover .mega-menu,
  .nav-item.has-dropdown:focus-within .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
    max-width: 100%;
  }

  .mega-col {
    flex: 1;
  }
}
