    /* ========== NAV ========== */
    #heroWrapper {
      position: relative;
      padding: 0;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      z-index: 1000;
      padding: 28px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 0;
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0;
      transform: translateY(-40px);
    }

    nav.nav-entered {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    nav.scrolled {
      pointer-events: none;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 45px;
      width: auto;
    }

    .nav-logo-blocks {
      display: grid;
      grid-template-columns: repeat(3, 8px);
      grid-template-rows: repeat(3, 8px);
      gap: 2px;
    }

    .nav-logo-blocks .b {
      width: 8px;
      height: 8px;
      background: var(--white);
    }

    .nav-logo-blocks .b.orange {
      background: var(--orange);
    }

    .nav-logo-blocks .b.empty {
      background: transparent;
    }

    .nav-logo-text {
      font-family: 'Inter', Arial, sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    nav .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      overflow: visible;
      /* Group the links next to the logo instead of centered: the left gap spaces
         them from the logo, margin-right:auto absorbs the slack so .nav-right stays
         pinned to the far right. */
      margin-left: 38px;
      margin-right: auto;
    }

    nav .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 4px;
      background:
        linear-gradient(to right, var(--orange), var(--orange)) no-repeat left,
        linear-gradient(to right, var(--white), var(--white));
      background-size: 0% 100%, 100% 100%;
      -webkit-background-clip: text, text;
      background-clip: text, text;
      -webkit-text-fill-color: transparent;
      transition: background-size 0.3s linear;
    }

    nav .nav-links a.fill-active {
      background-size: 100% 100%, 100% 100%;
    }

    /* Invisible padding that enlarges the click/hover target WITHOUT growing the text box —
       so the orange dot (positioned at the text's right edge) stays glued to the text. */
    nav .nav-links a::before {
      content: '';
      position: absolute;
      inset: -16px -14px;
    }

    nav .nav-links a::after {
      content: '';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%) scale(0);
      width: 6px;
      height: 6px;
      background: var(--orange);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      transform-origin: center;
    }

    nav .nav-links a.underline-active::after {
      transform: translateY(-50%) scale(1);
    }

    /* Plain :hover drives the fill + dot now (the cursor square just hides over links). */
    nav .nav-links a:hover { background-size: 100% 100%, 100% 100%; }
    nav .nav-links a:hover::after { transform: translateY(-50%) scale(1); }

    /* ===== Standardized fixed language switcher — sits just left of the hamburger on every
       page, always visible. Colour follows the background (ui-controls sets --lf-color). ===== */
    .lang-fixed {
      position: fixed;
      top: 42px;
      right: 92px;
      z-index: 100007;
      font-family: 'Inter', Arial, sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--lf-color, #fff);
      transition: opacity 0.5s ease, color 0.25s ease;
    }
    .lang-fixed:hover { color: var(--orange); }

    /* Inline desktop language toggle — shows the inverse language (no dropdown), with the SAME
       effect as the nav links: orange fill sweeps in on hover + the little orange dot. Base
       colour adapts per page (white by default, black on light/nav-dark headers). */
    .lang-toggle {
      font-family: 'Inter', Arial, sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      cursor: pointer;
      color: var(--white);
      background:
        linear-gradient(to right, var(--orange), var(--orange)) no-repeat left,
        linear-gradient(to right, var(--white), var(--white));
      background-size: 0% 100%, 100% 100%;
      -webkit-background-clip: text, text;
      background-clip: text, text;
      -webkit-text-fill-color: transparent;
      transition: background-size 0.3s linear;
    }
    .lang-toggle:hover { background-size: 100% 100%, 100% 100%; }
    .lang-toggle::after {
      content: '';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%) scale(0);
      width: 6px;
      height: 6px;
      background: var(--orange);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      transform-origin: center;
    }
    .lang-toggle:hover::after { transform: translateY(-50%) scale(1); }
    /* Enlarge the hover/click target without growing the text box. */
    .lang-toggle::before {
      content: '';
      position: absolute;
      inset: -16px -14px;
    }
    /* Light header (sustainability nav-dark / home nav over light sections) → black base. */
    nav.nav-dark .lang-toggle {
      background:
        linear-gradient(to right, var(--orange), var(--orange)) no-repeat left,
        linear-gradient(to right, var(--black), var(--black));
      background-size: 0% 100%, 100% 100%;
      -webkit-background-clip: text, text;
      background-clip: text, text;
      -webkit-text-fill-color: transparent;
    }
    /* Desktop uses the inline switcher in the nav (left of "Let's Talk"); the fixed one is
       mobile-only (left of the hamburger). */
    @media (min-width: 1025px) {
      .lang-fixed { display: none; }
    }

    .nav-contact-btn {
      font-family: 'Inter', Arial, sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      padding: 12px 15px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 0px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

    .nav-contact-btn--portal {
      border-color: var(--orange);
    }

    .nav-contact-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.8);
    }

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

    .lang-switcher {
      position: relative;
    }

    .lang-link {
      color: var(--white);
      text-decoration: none;
      font-family: 'Inter', Arial, sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 4px;
      background:
        linear-gradient(to right, var(--orange), var(--orange)) no-repeat left,
        linear-gradient(to right, var(--white), var(--white));
      background-size: 0% 100%, 100% 100%;
      -webkit-background-clip: text, text;
      background-clip: text, text;
      -webkit-text-fill-color: transparent;
      transition: background-size 0.3s linear;
      cursor: pointer;
    }

    .lang-link::after {
      content: '';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%) scale(0);
      width: 6px;
      height: 6px;
      background: var(--orange);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      transform-origin: center;
    }

    .lang-link.underline-active::after {
      transform: translateY(-50%) scale(1);
    }

    .lang-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      /* Hover bridge: padding-top keeps the corridor gapless vertically, and the
         extra min-width makes it WIDER than the trigger so a diagonal mouse path
         toward the (slightly wider, centered) option never falls out of the hover
         zone. box-sizing is border-box globally, so 100% alone would clamp the
         corridor to the narrow "EN" width — hence the +40px. The dropdown has no
         background, so the wider area is purely an invisible hit target. */
      min-width: calc(100% + 40px);
      padding-top: 10px;
      display: flex;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      /* Grace period on close so a brief drift off the trigger doesn't snap it shut. */
      transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    }

    .lang-switcher:hover .lang-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.25s ease, visibility 0s;
    }

    .lang-alt {
      background-size: 0% 100%, 100% 100% !important;
      opacity: 0.5;
      /* Larger hit target around the short option text. */
      padding: 4px 10px;
      transition: opacity 0.2s ease, background-size 0.3s linear;
    }

    .lang-alt:hover {
      opacity: 1;
    }

    nav.nav-dark .lang-link {
      background:
        linear-gradient(to right, var(--orange), var(--orange)) no-repeat left,
        linear-gradient(to right, var(--black), var(--black));
      background-size: 0% 100%, 100% 100%;
      -webkit-background-clip: text, text;
      background-clip: text, text;
      -webkit-text-fill-color: transparent;
    }

    /* ========== NAV CONTRAST (dark over light bg) ========== */
    nav.nav-dark .nav-logo-blocks .b:not(.empty):not(.orange) {
      background: var(--black);
    }
    nav.nav-dark .nav-logo-text {
      color: var(--black);
    }
    nav.nav-dark .nav-links a {
      color: var(--black);
      background:
        linear-gradient(to right, var(--orange), var(--orange)) no-repeat left,
        linear-gradient(to right, var(--black), var(--black));
      background-size: 0% 100%, 100% 100%;
      -webkit-background-clip: text, text;
      background-clip: text, text;
      -webkit-text-fill-color: transparent;
    }
    nav.nav-dark .nav-links a.fill-active {
      background-size: 100% 100%, 100% 100%;
    }
    nav.nav-dark .nav-contact-btn {
      color: var(--black);
      border-color: rgba(0, 0, 0, 0.3);
      background: rgba(0, 0, 0, 0.05);
    }
    nav.nav-dark .nav-contact-btn:hover {
      background: rgba(0, 0, 0, 0.1);
      border-color: rgba(0, 0, 0, 0.5);
    }
    nav.nav-dark.scrolled {
      background: rgba(255, 255, 255, 0.75);
      border-color: rgba(0, 0, 0, 0.1);
    }
    /* transition for smooth color swap */
    nav .nav-logo-blocks .b:not(.empty):not(.orange) {
      transition: background 0.3s ease;
    }
    nav .nav-logo-text,
    nav .nav-contact-btn {
      transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }

    /* ========== HAMBURGER FIXO ========== */
    .hamburger-fixed {
      position: fixed;
      top: 35px;
      right: 40px;
      z-index: 100006; /* above the fixed cube canvas (100002) so it's never painted over */
      width: 36px;
      height: 28px;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
      padding: 0;
      background: none;
      border: none;
      outline: none;
    }

    .hamburger-fixed span {
      display: block;
      height: 2px;
      background: var(--white);
      border-radius: 0;
      transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                  background 0.3s ease,
                  transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.25s ease;
      transform-origin: center;
    }

    .hamburger-fixed span:nth-child(1) { width: 100%; }
    .hamburger-fixed span:nth-child(2) { width: 100%; }
    .hamburger-fixed span:nth-child(3) { width: 100%; }

    .hamburger-fixed.visible {
      opacity: 1;
      pointer-events: all;
    }

    .hamburger-fixed:hover span { width: 100%; }

    /* X state */
    .hamburger-fixed.active span:nth-child(1) {
      width: 100%;
      transform: translateY(13px) rotate(45deg);
    }
    .hamburger-fixed.active span:nth-child(2) {
      width: 0%;
      opacity: 0;
    }
    .hamburger-fixed.active span:nth-child(3) {
      width: 100%;
      transform: translateY(-13px) rotate(-45deg);
    }

    /* ========== MENU OVERLAY ========== */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 99998;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .menu-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .menu-overlay a {
      font-family: 'Inter', Arial, sans-serif;
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s ease;
    }

    .menu-overlay a:hover {
      color: var(--orange);
    }

    .menu-overlay a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--orange);
      transition: width 0.3s ease;
    }

    .menu-overlay a:hover::after {
      width: 100%;
    }

    /* Investor Portal — highlighted in orange to stand out from nav links */
    .menu-overlay a.menu-overlay-link--portal {
      color: var(--orange);
    }

    .menu-overlay a.menu-overlay-link--portal::after {
      background: var(--orange);
    }

    .hero-letter {
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .hero-letter.visible {
      opacity: 1;
    }

    .hero-letter.bold {
      font-weight: 400;
    }

