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

    /* ── SOURCE SERIF 4 (display serif, EN/ES only — see :lang() scoping below) ──
       Variable font, single woff2 file covers weight range 200–900.
       Not applied to zh.html (lang="zh-CN"): CJK glyphs are not covered by this font. */
    @font-face {
      font-family: 'Source Serif 4';
      font-style: normal;
      font-weight: 200 900;
      font-display: swap;
      src: url('../fonts/source-serif-4-variable.woff2') format('woff2-variations'),
           url('../fonts/source-serif-4-variable.woff2') format('woff2');
    }

    :root {
      --navy:   #0A1628;
      --navy2:  #0D1B2A;
      --navy3:  #1B263B;
      --gold:   #C9A14A;
      --gold2:  #E0B85A;
      /* Darker gold for text-on-light-background use only (WCAG AA).
         --gold (#C9A14A) stays unchanged for text on navy backgrounds. */
      --gold-deep: #83672A;
      --white:  #FFFFFF;
      --cream:  #F5F3EE;
      --muted:  rgba(255,255,255,0.62);
      --border: rgba(201,161,74,0.2);
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
      --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      /* semantic text tokens — light backgrounds */
      --text-body:  #4a4a4a;
      --text-muted: #777777;
      --navy-deep:  #050D18;
      /* radius tokens */
      --radius-sm: 8px;
      --radius-md: 12px;
    }

    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
    section[id] { scroll-margin-top: 80px; }

    body {
      font-family: 'Satoshi', system-ui, sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
      max-width: 100%;
    }

    img, video, canvas, svg { max-width: 100%; height: auto; }

    .wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

    #prog {
      position: fixed; top: 0; left: 0;
      width: 0%; height: 2px;
      background: var(--gold);
      box-shadow: 0 0 12px rgba(201,161,74,0.5);
      z-index: 2000;
      transition: width 0.08s linear;
    }

    .skip {
      position: absolute; top: -100px; left: 20px;
      background: var(--gold); color: var(--navy);
      font-weight: 700; font-size: 13px;
      padding: 8px 16px; border-radius: 2px;
      z-index: 9999; transition: top 0.2s;
      text-decoration: none;
    }
    .skip:focus { top: 20px; }

    /* ── NAV ─────────────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; width: 100%;
      z-index: 1000;
      transform: translateZ(0);
      transition: background 0.35s, box-shadow 0.35s;
    }
    /* Full-width override — nav is not constrained by .wrap max-width */
    #nav .wrap {
      max-width: none;
      margin: 0;
      padding: 0 48px;
    }
    #nav.solid {
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      height: 60px;
    }
    /* 3-zone nav: brand · center · right */
    .nav-center {
      flex: 1;
      display: flex;
      align-items: center;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; flex-shrink: 0;
    }
    .nav-brand img {
      height: 36px; width: 36px;
      object-fit: contain;
      border-radius: 0;
    }
    .nav-brand-text {
      font-size: 13px; font-weight: 700;
      color: var(--white); letter-spacing: 0.04em; line-height: 1.2;
    }
    .nav-brand-text small {
      display: block; font-size: 8.5px; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold);
    }

    /* ── NAV LINKS (desktop) ───────────────────────────── */
    .nav-links {
      display: flex; align-items: center;
      list-style: none;
      width: 100%; justify-content: space-between; gap: 0;
    }
    .nav-item { position: relative; flex: 1; text-align: center; padding: 0 10px; }
    .nav-links > .nav-item > a,
    .nav-links > .nav-item > .nav-top {
      display: flex; align-items: center; justify-content: center; gap: 5px;
      width: 100%;
      font-size: 11.5px; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      white-space: nowrap;
      color: rgba(255,255,255,0.52); text-decoration: none;
      padding: 8px 12px;
      border-radius: 7px;
      transition: color 0.2s, background 0.2s;
      cursor: pointer;
      position: relative;
    }
    .nav-links > .nav-item > a::after,
    .nav-links > .nav-item > .nav-top::after {
      content: ''; position: absolute;
      bottom: 2px; left: 12px; right: 12px; height: 1px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.25s var(--ease-out);
    }
    .nav-links > .nav-item > a:hover,
    .nav-links > .nav-item > .nav-top:hover { color: var(--white); background: rgba(255,255,255,0.05); }
    .nav-links > .nav-item > a:hover::after,
    .nav-links > .nav-item > .nav-top:hover::after,
    .nav-links > .nav-item > a.active::after,
    .nav-links > .nav-item > .nav-top.active::after { transform: scaleX(1); }
    .nav-links > .nav-item > a.active,
    .nav-links > .nav-item > .nav-top.active { color: var(--gold); }

    /* chevron icon */
    .nav-chevron {
      flex-shrink: 0; opacity: 0.45;
      transition: transform 0.22s var(--ease-out), opacity 0.2s;
    }
    .nav-item.has-dropdown:hover .nav-chevron,
    .nav-item.has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); opacity: 1; }

    /* ── DROPDOWN PANEL ────────────────────────────────── */
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%; transform: translateX(-50%) translateY(-8px);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0 20px;
      padding: 16px 20px;
      min-width: 280px;
      background: rgba(10, 25, 50, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 12px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.18s var(--ease-out), transform 0.22s var(--ease-out);
      z-index: 1100;
      box-shadow: 0 20px 44px rgba(0,0,0,0.45);
    }
    /* section label — driven by data-label on each dropdown */
    .nav-dropdown::before {
      content: attr(data-label);
      display: block;
      grid-column: span 2;
      font-size: 9px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.32);
      opacity: 0.65;
      padding-bottom: 8px;
      margin-bottom: 2px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    /* invisible hover bridge (moved from ::before) */
    .nav-dropdown::after {
      content: '';
      position: absolute;
      top: -12px; left: 0; right: 0; height: 12px;
    }
    .nav-item.has-dropdown:hover .nav-dropdown,
    .nav-item.has-dropdown:focus-within .nav-dropdown {
      opacity: 1; pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown a {
      display: block; padding: 6px 0;
      font-size: 11.5px; font-weight: 500;
      letter-spacing: 0.02em; text-transform: none;
      line-height: 1.4;
      color: rgba(255,255,255,0.58);
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }
    .nav-dropdown a::after { display: none !important; }
    .nav-dropdown a:first-of-type {
      font-weight: 600;
      color: rgba(255,255,255,0.88);
    }
    .nav-dropdown a:hover {
      color: var(--gold2);
      transform: translateX(3px);
    }

    /* separator hidden in grid — 2×N layout makes explicit dividers redundant */
    .nav-dropdown .dd-sep {
      display: none;
    }

    /* ── LANGUAGE SWITCHER DROPDOWN ─────────────────────── */
    .lang-switcher { position: relative; display: inline-flex; align-items: center; }
    .lang-toggle {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11.5px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      background: none; border: none; cursor: pointer;
      padding: 6px 2px; min-height: 44px;
      transition: color 0.18s; font-family: inherit;
    }
    .lang-toggle:hover { color: var(--gold); }
    .lang-arrow { font-size: 8px; opacity: 0.65; line-height: 1; }
    .lang-dropdown {
      display: none; position: absolute;
      top: calc(100% + 2px); right: 0;
      width: 140px; background: var(--navy2);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.28);
      list-style: none; padding: 4px 0; z-index: 200;
    }
    .lang-switcher:hover .lang-dropdown,
    .lang-switcher.open .lang-dropdown { display: block; }
    .lang-opt {
      display: block; padding: 10px 16px;
      font-size: 11.5px; font-weight: 600;
      letter-spacing: 0.13em; text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.15s, background 0.15s;
      cursor: pointer; font-family: inherit;
    }
    .lang-opt:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
    .lang-opt.lang-opt-active { color: rgba(255,255,255,0.95); font-weight: 700; cursor: default; }
    .lang-opt.lang-opt-active:hover { background: none; }

    /* ── NAV CTA ───────────────────────────────────────── */
    .nav-cta {
      display: inline-flex; align-items: center;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none;
      color: var(--navy);
      background: var(--gold);
      padding: 7px 18px;
      min-height: 44px;
      border-radius: var(--radius-sm);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .nav-cta:hover {
      background: var(--gold2);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(201,161,74,0.35);
      color: var(--navy);
    }

    /* ── HAMBURGER + MOBILE ────────────────────────────── */
    .nav-right-mob {
      display: none; align-items: center; gap: 14px;
    }
    .nav-right-mob .lang-switcher .lang-dropdown { right: 0; }
    .hamburger {
      display: flex; flex-direction: column;
      gap: 5px; cursor: pointer;
      background: none; border: none;
      padding: 11px 11px;
      min-width: 44px; min-height: 44px;
      align-items: center; justify-content: center;
    }
    .hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--white); transition: transform 0.25s, opacity 0.25s;
    }
    .mob-menu {
      display: flex; flex-direction: column;
      background: var(--navy2);
      border-top: 1px solid var(--border);
      padding: 0 48px; gap: 0;
      overflow: hidden; max-height: 0; opacity: 0;
      transition: max-height 0.42s var(--ease-out), opacity 0.28s var(--ease-out), padding 0.42s var(--ease-out);
    }
    .mob-menu.open { max-height: calc(100dvh - 60px); overflow-y: auto; opacity: 1; padding: 24px 48px 36px; }
    .mob-section { margin-bottom: 22px; }
    .mob-section-label {
      font-size: 9px; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px; display: block;
    }
    .mob-menu a {
      display: block;
      font-size: 13px; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: rgba(255,255,255,0.68); text-decoration: none;
      padding: 7px 0;
      transition: color 0.18s;
    }
    .mob-menu a:hover { color: var(--white); }
    .mob-menu-cta {
      margin-top: 10px;
    }
    .mob-menu-cta a {
      display: inline-block !important;
      background: var(--gold); color: var(--navy) !important;
      padding: 11px 28px !important;
      border-radius: 10px; font-weight: 700 !important;
      letter-spacing: 0.1em; text-transform: uppercase;
      font-size: 11px !important;
      transition: background 0.2s !important;
    }
    .mob-menu-cta a:hover { background: var(--gold2) !important; }

    /* ── HERO ─────────────────────────────────────────────── */
    #hero {
      position: relative; min-height: 100dvh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
      padding: 80px 40px 64px;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 80% 55% at 50% 38%, rgba(201,161,74,0.06) 0%, transparent 65%),
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(5,13,24,0.95) 0%, transparent 70%),
        #0A1628;
    }
    #heroCanvas {
      position: absolute; inset: 0; z-index: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      filter: brightness(1.2) contrast(1.15);
    }
    .hero-content {
      position: relative; z-index: 1;
      max-width: 1100px; width: 100%;
    }
    .hero-logo { margin-bottom: 20px; }
    .hero-logo img {
      width: clamp(170px, 26vw, 400px);
      height: clamp(170px, 26vw, 400px);
      object-fit: contain;
      border-radius: 0;
    }
    .hero-eyebrow {
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .hero-h1 {
      font-size: clamp(1.65rem, 2.4vw, 2.4rem);
      font-weight: 700; color: var(--white);
      line-height: 1.07; letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .hero-h1 em { font-style: italic; color: var(--gold); }
    .hero-sub {
      font-size: clamp(13px, 0.95vw, 14px); font-weight: 400;
      color: rgba(255,255,255,0.62);
      max-width: 540px; margin: 0 auto 36px; line-height: 1.78;
    }
    .hero-btns {
      display: flex; justify-content: center;
      gap: 12px; flex-wrap: wrap;
    }
    .btn {
      display: inline-block;
      font-family: 'Satoshi', system-ui, sans-serif;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      text-decoration: none; padding: 12px 28px;
      border-radius: var(--radius-sm); border: 1.5px solid transparent;
      cursor: pointer;
      touch-action: manipulation;
      transition: background 0.2s var(--ease-out), color 0.18s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.18s var(--ease-out), box-shadow 0.25s var(--ease-out);
    }
    .btn:active { transform: scale(0.97) translateY(1px); }
    .btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .btn-gold:hover {
      background: var(--gold2); border-color: var(--gold2);
      box-shadow: 0 8px 28px rgba(201,161,74,0.38);
      transform: translateY(-2px);
    }
    .btn-ghost {
      background: transparent; color: rgba(255,255,255,0.8);
      border-color: rgba(255,255,255,0.22);
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.5); color: var(--white);
      transform: translateY(-2px);
    }
    /* ── WORD REVEAL ─────────────────────────────────────── */
    #reveal {
      padding: 80px 0 140px;
      background: var(--navy);
    }
    .reveal-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
    .reveal-tag {
      display: block;
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .reveal-text {
      font-size: clamp(1rem, 1.8vw, 1.5rem);
      font-weight: 500; line-height: 1.6;
      color: rgba(255,255,255,0.88);
    }
    /* Dim starting color for the GSAP scrub reveal — only applied once GSAP
       is confirmed loaded (see .gsap-ok gate in js/main.js). Without GSAP the
       text stays at full, readable opacity (.reveal-text default above). */
    html.gsap-ok .reveal-text { color: rgba(255,255,255,0.18); }
    .reveal-text .w { display: inline-block; margin-right: 0.28em; }

    /* ── PROGRESSIVE ENHANCEMENT FALLBACK ────────────────────
       aos.css (loaded from unpkg) hides every [data-aos] element
       (opacity:0 + transform) until AOS's JS adds .aos-animate.
       If the AOS script fails to load (or JS runs but the CDN for
       aos.js specifically is down) while aos.css still loaded, or
       any other case where .aos-ok never gets set, this keeps all
       that content visible instead of permanently hidden. */
    html:not(.aos-ok) [data-aos] {
      opacity: 1 !important;
      transform: none !important;
    }

    /* ── SERVICES (flat layout) ──────────────────────────── */
    #services { background: var(--cream); color: var(--navy2); padding: 80px 0; overflow-x: clip; }

    .services-intro { margin-bottom: 52px; }

    .svc-tag {
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--gold-deep);
      margin-bottom: 14px;
      display: block;
    }
    .svc-h2 {
      font-size: clamp(0.87rem, 1.1vw, 1.05rem);
      font-weight: 400;
      line-height: 1.65;
      color: var(--text-body);
      letter-spacing: 0;
      margin-bottom: 16px;
      max-width: 900px;
    }
    .svc-desc {
      font-size: 16.5px; color: var(--text-body); line-height: 1.65;
      max-width: 860px; margin-bottom: 14px;
    }
    .svc-desc:last-of-type { margin-bottom: 0; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }

    .service-card {
      background: var(--white); padding: 36px 32px;
      border-top: 2px solid var(--gold);
      border-radius: var(--radius-md);
      transition: background 0.25s, transform 0.25s;
      scroll-margin-top: 120px;
    }
    .service-card:hover {
      background: rgba(201,161,74,0.025);
      transform: translateY(-1px);
    }
    .service-num {
      font-size: 10.5px; font-weight: 600;
      letter-spacing: 0.18em; color: var(--gold-deep); margin-bottom: 16px;
    }
    .service-icon {
      width: 32px; height: 32px;
      margin-bottom: 18px; opacity: 0.8;
      transition: transform 0.3s ease;
      display: block;
    }
    .service-card:hover .service-icon { transform: none; }
    .service-card h3 {
      font-size: 17px; font-weight: 700;
      color: var(--navy2); margin-bottom: 12px; letter-spacing: -0.01em;
    }
    .service-card p { font-size: 15px; color: var(--text-body); line-height: 1.65; }

    /* ── MARQUEE ─────────────────────────────────────────── */
    #commodities { background: var(--navy2); padding: 80px 0; overflow: hidden; }
    .comm-head { padding: 0 48px; max-width: 1240px; margin: 0 auto 56px; }
    .comm-tag {
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold);
      display: block;
      margin-bottom: 14px;
    }
    .comm-h2 {
      font-size: clamp(0.87rem, 1.1vw, 1.05rem);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.65;
      color: rgba(255,255,255,0.82);
      margin-bottom: 14px;
      max-width: 760px;
    }
    .comm-sub { font-size: 15px; color: var(--muted); max-width: 760px; line-height: 1.6; }
    .mq-wrap { overflow: hidden; cursor: grab; user-select: none; -webkit-user-select: none; }
    .mq-wrap.mq-dragging { cursor: grabbing; }
    .mq-track {
      display: flex; width: max-content;
      will-change: transform;
    }
    .mq-item {
      display: flex; align-items: center; gap: 18px;
      padding: 28px 52px;
      border-right: 1px solid var(--border);
      white-space: nowrap;
      transition: background 0.2s;
    }
    .mq-item:hover { background: rgba(201,161,74,0.06); }
    .mq-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
    .mq-item span { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }
    .comm-note { padding: 44px 48px 52px; max-width: 1240px; margin: 0 auto; }
    .comm-note-title {
      font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); display: block; margin-bottom: 22px;
    }
    .comm-vol-grid {
      border: 1px solid var(--border); border-radius: 2px;
      overflow: hidden; margin-bottom: 38px;
    }
    .comm-vol-head {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      background: rgba(201,161,74,0.07);
      border-bottom: 1px solid var(--border);
      padding: 19px 28px;
    }
    .comm-vol-head span {
      font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(255,255,255,0.52);
    }
    .comm-vol-row {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      padding: 19px 28px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background 0.18s;
    }
    .comm-vol-row:last-child { border-bottom: none; }
    .comm-vol-row:hover { background: rgba(201,161,74,0.05); }
    .comm-vol-row span:first-child {
      font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88);
    }
    .comm-vol-row span:not(:first-child) {
      font-size: 13px; color: rgba(255,255,255,0.62); font-variant-numeric: tabular-nums;
    }
    .comm-note-origins {
      font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7;
      margin-bottom: 12px; font-style: normal; letter-spacing: 0.01em;
    }
    .comm-note-footer {
      font-size: 12.5px; color: rgba(255,255,255,0.48); font-style: italic; letter-spacing: 0.02em;
    }
    @media (max-width: 600px) {
      .comm-vol-head, .comm-vol-row { grid-template-columns: 2fr 1fr; padding: 11px 16px; }
      .comm-vol-head span:last-child, .comm-vol-row span:last-child { display: none; }
    }

    /* ── ABOUT ───────────────────────────────────────────── */
    #about { background: var(--cream); padding: 80px 0; overflow-x: clip; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 52px; align-items: center;
    }
    .about-tag {
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold-deep);
      display: block;
      margin-bottom: 16px;
    }
    .about-h2 {
      font-size: clamp(0.87rem, 1.1vw, 1.05rem);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.65;
      color: var(--text-body);
      margin-bottom: 22px;
    }
    .about-p { font-size: 16.5px; color: var(--text-body); line-height: 1.72; margin-bottom: 16px; }
    .about-p:last-child { margin-bottom: 0; }
    .stat-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      grid-auto-flow: dense; gap: 14px;
    }
    .stat-card {
      background: var(--white);
      border: 1px solid rgba(13,27,42,0.08);
      padding: 28px 24px; border-radius: var(--radius-md);
      transition: border-color 0.22s, background 0.22s, transform 0.22s;
    }
    .stat-card:hover {
      border-color: rgba(13,27,42,0.14);
      background: rgba(201,161,74,0.018);
      transform: translateY(-1px);
    }
    .stat-label {
      font-size: 10.5px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold-deep); margin-bottom: 7px;
    }
    .stat-value { font-size: 15px; font-weight: 700; color: var(--navy2); line-height: 1.3; }

    /* ── GLOBAL ──────────────────────────────────────────── */
    #global { background: var(--navy); padding: 80px 0; }
    .global-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 52px; align-items: center;
    }
    .global-tag {
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold);
      display: block;
      margin-bottom: 16px;
    }
    .global-h2 {
      font-size: clamp(0.87rem, 1.1vw, 1.05rem);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.65;
      color: rgba(255,255,255,0.82);
      margin-bottom: 22px;
    }
    .global-p { font-size: 16.5px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 16px; }
    .global-p:last-child { margin-bottom: 0; }
    .regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-content: start; }

    /* ── GLOBAL PRESENCE card overrides (dark section) ── */
    #global .regions { gap: 24px; align-items: stretch; }
    #global .partner-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,161,74,0.30);
      padding: 22px 24px;
      box-shadow: none;
      display: flex;
      flex-direction: column;
    }
    #global .partner-card:hover {
      background: rgba(255,255,255,0.065);
      border-color: rgba(201,161,74,0.34);
      transform: translateY(-1px);
      box-shadow: none;
    }
    #global .partner-card h3 {
      font-size: 10px;
      letter-spacing: 0.28em;
      color: var(--gold);
      margin-bottom: 16px;
    }
    #global .partner-card p {
      font-size: 13px;
      color: rgba(255,255,255,0.62);
      line-height: 1.9;
      font-weight: 400;
    }
    #global .partner-card p strong {
      font-weight: 600;
      color: rgba(255,255,255,0.88);
      font-style: normal;
    }

    .region {
      display: flex; align-items: center; gap: 16px;
      padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
      position: relative; cursor: default;
    }
    .region:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
    .region::before { display: none; }
    .region:hover .rnum { transform: translateX(10px); color: var(--white); }
    .region:hover .rname { transform: translateX(10px); color: var(--white); }
    .rnum { font-size: 10px; font-weight: 600; color: var(--gold); width: 22px; flex-shrink: 0; transition: transform 0.25s var(--ease-out), color 0.22s; }
    .rname { font-size: 14px; font-weight: 500; line-height: 1.5; color: rgba(255,255,255,0.85); transition: transform 0.25s var(--ease-out), color 0.22s; }

    /* ── PARTNERS ────────────────────────────────────────── */
    #partners { background: var(--cream); padding: 80px 0; }
    .partners-tag {
      font-size: clamp(1.3rem, 1.75vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold-deep);
      display: block;
      margin-bottom: 18px;
    }
    .partners-intro {
      font-size: 16.5px;
      font-weight: 400;
      line-height: 1.72;
      color: var(--text-body);
      max-width: 920px;
      letter-spacing: 0;
      margin-bottom: 48px;
    }
    .partners-h2 {
      font-size: clamp(0.87rem, 1.1vw, 1.05rem);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.65;
      color: var(--text-body);
      margin-bottom: 22px;
      max-width: 900px;
    }
    .partners-sub { font-size: 16.5px; color: var(--text-body); max-width: 900px; line-height: 1.72; margin-bottom: 40px; }
    .partners-row1 {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 16px; margin-bottom: 16px;
    }

    /* Values card inside About section */
    /* ── CORE VALUES (in About) ──────────────────────────── */
    .values-block {
      background: var(--navy2);
      padding: 52px 48px;
      margin-top: 32px;
      border-radius: var(--radius-md);
      position: relative;
      overflow: hidden;
    }
    .values-block-label {
      display: block;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .values-block-title {
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: rgba(255,255,255,0.95);
      line-height: 1.15;
      margin-bottom: 48px;
      text-wrap: balance;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 36px;
      transition: opacity 0.22s;
    }
    .value-card {
      padding-right: 32px;
      border-right: 1px solid rgba(255,255,255,0.07);
      position: relative;
      transition: opacity 0.25s var(--ease-out);
    }
    .value-card:not(:first-child) { padding-left: 32px; }
    .value-card:last-child { border-right: none; padding-right: 0; }
    .values-grid:hover .value-card { opacity: 0.35; }
    .values-grid:hover .value-card:hover { opacity: 1; }
    .value-card:hover .value-num { color: rgba(201,161,74,0.65); }
    .value-num {
      display: block;
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      font-weight: 700;
      letter-spacing: -0.04em;
      color: rgba(201,161,74,0.16);
      line-height: 1;
      margin-bottom: 18px;
      transition: color 0.3s var(--ease-out);
    }
    .value-title {
      font-size: 14px; font-weight: 700;
      color: rgba(255,255,255,0.92); line-height: 1.35;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .value-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.42);
      line-height: 1.72;
    }

    .partner-card {
      background: var(--white); border: 1px solid rgba(13,27,42,0.08);
      padding: 26px 28px; border-radius: var(--radius-md);
      transition: border-color 0.22s, background 0.22s, transform 0.22s;
    }
    .partner-card:hover {
      border-color: rgba(13,27,42,0.14); background: rgba(201,161,74,0.018); transform: translateY(-1px);
    }
    .partner-card h3 { font-size: 16px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy2); margin-bottom: 14px; }
    .partner-card h3 .legal-suffix { font-size: 0.75em; font-weight: 400; opacity: 0.62; letter-spacing: 0.06em; margin-left: 4px; }
    .partner-card p { font-size: 15.5px; font-weight: 400; color: rgba(13,27,42,0.62); line-height: 1.6; letter-spacing: 0; text-wrap: pretty; }
    .partner-card.has-logo { display: flex; flex-direction: row; align-items: flex-start; gap: 20px; }
    .partner-logo-wrap { width: 72px; min-width: 72px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding-top: 2px; }
    .partner-logo-wrap img { max-width: 56px; max-height: 40px; object-fit: contain; opacity: 1; display: block; }
    .partner-card-body { flex: 1; min-width: 0; }
    .partners-row2 {
      display: grid; grid-template-columns: repeat(4, 1fr);
      grid-auto-flow: dense; gap: 14px;
    }
    .partner-badge {
      background: var(--white); border: 1px solid rgba(13,27,42,0.08);
      border-left: 2px solid var(--gold);
      padding: 18px 20px 18px 22px; border-radius: var(--radius-md);
      transition: border-color 0.2s, background 0.2s;
    }
    .partner-badge:hover { border-color: rgba(13,27,42,0.12); border-left-color: var(--gold); background: rgba(201,161,74,0.018); }
    .partner-badge strong { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy2); margin-bottom: 8px; }
    .partner-badge span { display: block; font-size: 14.5px; font-weight: 400; color: var(--text-body); line-height: 1.6; letter-spacing: 0; text-wrap: pretty; }

    /* ── PARTNERS GROUP LAYOUT ───────────────────────────── */
    .partners-groups { display: flex; flex-direction: column; gap: 80px; }
    .partners-group-label {
      display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold-deep);
      margin-bottom: 20px; padding-bottom: 10px;
      border-bottom: 1px solid rgba(201,161,74,0.22);
    }
    .partners-group-grid { display: grid; gap: 20px; }
    .partners-group-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
    .partners-group-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
    .partners-group-grid.grid-featured { grid-template-columns: repeat(2, 1fr); margin-bottom: 20px; }
    .partners-group-grid.institutional-grid { gap: 20px; }
    /* Orphan centering: 3 cards in a 2-col institutional grid */
    /* Featured (SENECA + MCH) — gold border + shadow */
    .partner-card.featured-card {
      border: 1px solid rgba(201,161,74,0.52);
      padding: 34px 36px;
      box-shadow: 0 4px 24px rgba(13,27,42,0.08);
    }
    .partner-card.featured-card:hover {
      border-color: rgba(201,161,74,0.56);
      box-shadow: none;
    }
    .partner-card.featured-card h3 { font-size: 14px; }
    /* Entity cards */
    .partner-card.entity-card { padding: 28px 30px; }
    /* Institutional cards */
    .partner-card.institutional-card {
      border-left: 2px solid rgba(201,161,74,0.45); padding: 26px 30px 26px 28px;
    }
    .partner-card.institutional-card:hover { background: rgba(201,161,74,0.02); }
    .partner-card.institutional-card h3 { color: var(--navy2); font-size: 16px; }
    .partner-card.institutional-card p { font-size: 15px; line-height: 1.65; }
    /* Advisors — "board of advisors" horizontal list.
       Distinct on purpose from the company/entity grids above: individual
       people get a personal, editorial row treatment (photo | text) instead
       of a logo-grid card, and there's no multi-column grid so 3 items never
       leave a orphaned gap. */
    .advisors-list {
      display: flex; flex-direction: column; gap: 20px;
    }
    .partner-card.advisor-card {
      display: grid; grid-template-columns: auto 1fr; align-items: center;
      gap: 28px; text-align: left;
      padding: 24px 28px;
    }
    .partner-card.advisor-card:hover { transform: translateY(-1px); box-shadow: none; }
    .advisor-avatar {
      width: 84px; height: 84px; border-radius: 50%;
      background: var(--navy2); margin: 0;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: box-shadow 0.25s;
      overflow: hidden;
    }
    .partner-card.advisor-card:hover .advisor-avatar { box-shadow: none; }
    .advisor-avatar span { font-size: 15px; font-weight: 700; color: var(--gold); letter-spacing: 0.03em; }
    .advisor-body { min-width: 0; }
    .partner-card.advisor-card h3 { text-align: left; font-size: 14px; letter-spacing: 0.04em; margin-bottom: 6px; }
    .advisor-role { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
    .advisor-desc { font-size: 15px; color: rgba(13,27,42,0.48); line-height: 1.6; text-align: left; }

    /* ── COMPLIANCE ──────────────────────────────────────── */
    #governance { background: var(--navy3); padding: 80px 0; }
    .comp-tag {
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }
    .comp-h2 {
      font-size: clamp(12px, 1.1vw, 14px);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.7;
      color: rgba(255,255,255,0.52);
      margin-bottom: 32px;
    }
    .comp-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    }
    .comp-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border); padding: 32px 26px; border-radius: var(--radius-md);
      transition: border-color 0.22s, background 0.22s, transform 0.22s;
    }
    .comp-item:hover {
      border-color: rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04); transform: translateY(-1px);
    }
    .comp-item h3 { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
    .comp-item p { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.6; }

    /* ── TEAM ────────────────────────────────────────────── */
    #team { background: var(--cream); padding: 80px 0; }
    .team-tag {
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold-deep);
      display: block;
      margin-bottom: 10px;
    }
    .team-sub { font-size: 14.5px; color: var(--text-body); max-width: 65ch; line-height: 1.6; margin-bottom: 36px; }
    .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: stretch; }
    .team-card {
      background: var(--white); border: 1px solid rgba(13,27,42,0.08);
      padding: 36px 28px 28px; text-align: center; border-radius: var(--radius-md);
      position: relative;
      display: flex; flex-direction: column; height: 100%;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .team-card:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 24px rgba(13,27,42,0.08);
      transform: translateY(-1px);
    }
    .team-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--navy2); margin: 0 auto 20px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; transition: box-shadow 0.25s;
    }
    .team-card:hover .team-avatar { box-shadow: 0 0 0 4px rgba(201,161,74,0.28); }
    .team-avatar span { font-size: 17px; font-weight: 700; color: var(--gold); }
    .team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    .team-card h3 { font-size: 13px; font-weight: 700; color: var(--navy2); line-height: 1.3; margin-bottom: 6px; }
    .team-role {
      font-size: 8.5px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold-deep); margin-bottom: 5px;
    }
    .team-affil { font-size: 11.5px; color: var(--text-muted); letter-spacing: 0.02em; }

    .team-bio {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-top: 12px;
      flex-grow: 1;
    }

    /* ── FAQ ─────────────────────────────────────────────── */
    #faq { background: var(--navy3); padding: 80px 0; }
    .faq-tag {
      font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }
    .faq-h2 {
      font-size: clamp(12px, 1.1vw, 14px);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.7;
      color: rgba(255,255,255,0.52);
      margin-bottom: 32px;
      max-width: 640px;
    }
    .faq-list { display: flex; flex-direction: column; gap: 2px; }
    .faq-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border); border-radius: var(--radius-md);
      padding: 4px 26px;
      transition: border-color 0.22s, background 0.22s;
    }
    .faq-item:hover {
      border-color: rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 0;
      font-size: 13px; font-weight: 700; color: var(--white);
      line-height: 1.5;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      flex: none;
      width: 20px; height: 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 400; color: var(--gold);
      transition: transform 0.25s ease;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item[open] summary { color: var(--gold); }
    .faq-item p {
      font-size: 15px; color: rgba(255,255,255,0.58);
      line-height: 1.6; padding: 0 0 24px;
      max-width: 78ch;
    }

    /* ── CONTACT ─────────────────────────────────────────── */
    #contact { background: var(--navy); padding: 80px 0; }
    #contact .wrap { max-width: 1200px; }
    .contact-tag {
      font-size: 36px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: none;
      color: var(--white);
      display: block;
      line-height: 1.16;
      margin-bottom: 12px;
    }
    .contact-h2 {
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.6;
      color: rgba(255,255,255,0.68);
      max-width: 680px;
      margin-bottom: 10px;
    }
    .contact-intro {
      font-size: 15px;
      color: rgba(255,255,255,0.72);
      line-height: 1.6;
      margin-top: 10px;
    }
    .contact-nav-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      margin-bottom: 20px;
      display: block;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(240px, 40%) minmax(0, 60%);
      gap: 48px;
      align-items: start;
      margin-top: 40px;
    }
    .contact-tabs { position: relative; }
    .contact-tabs input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .contact-nav {
      display: flex;
      flex-direction: column;
      gap: 13px;
      list-style: none;
    }
    .contact-nav label {
      position: relative;
      display: block;
      padding: 18px 20px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 2px;
      background: rgba(255,255,255,0.025);
      color: rgba(255,255,255,0.54);
      cursor: pointer;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.14em;
      line-height: 1.25;
      text-transform: uppercase;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .contact-nav label:hover {
      background: rgba(201,161,74,0.07);
      border-color: rgba(201,161,74,0.30);
      color: var(--white);
    }
    #contact-finance:checked ~ .contact-grid .contact-nav label[for="contact-finance"],
    #contact-commodities:checked ~ .contact-grid .contact-nav label[for="contact-commodities"],
    #contact-partnerships:checked ~ .contact-grid .contact-nav label[for="contact-partnerships"],
    #contact-accounting:checked ~ .contact-grid .contact-nav label[for="contact-accounting"] {
      background: rgba(201,161,74,0.11);
      border-color: rgba(201,161,74,0.55);
      color: var(--gold);
    }
    .contact-panel {
      display: none;
      min-height: 360px;
      padding: 40px;
      border: 1px solid rgba(201,161,74,0.25);
      background: rgba(255,255,255,0.02);
      border-radius: var(--radius-md);
    }
    .contact-role {
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255,255,255,0.6);
    }
    .contact-block {
      margin-bottom: 22px;
    }
    #contact-finance:checked ~ .contact-grid .contact-panel[data-contact="finance"],
    #contact-commodities:checked ~ .contact-grid .contact-panel[data-contact="commodities"],
    #contact-partnerships:checked ~ .contact-grid .contact-panel[data-contact="partnerships"],
    #contact-accounting:checked ~ .contact-grid .contact-panel[data-contact="accounting"] {
      display: block;
    }
    .contact-panel-label {
      display: none;
    }
    .contact-person {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px 32px;
      margin-bottom: 32px;
    }
    .contact-field {
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .contact-field.full { grid-column: 1 / -1; }
    .contact-meta {
      display: block;
      margin-bottom: 4px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.52);
    }
    .contact-name {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--white);
      margin-bottom: 14px;
    }
    .contact-detail {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.4;
      color: rgba(255,255,255,0.78);
    }
    .contact-detail a {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-detail a:hover { color: var(--gold); }
    .contact-actions {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      padding-top: 20px;
    }
    .contact-note {
      max-width: 320px;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.48);
    }
    .contact-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 14px 22px;
      background: var(--gold);
      color: var(--navy);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--radius-sm);
      box-shadow: 0 2px 8px rgba(0,0,0,0.20);
      transition: background 0.2s ease-out, transform 0.18s ease-out, box-shadow 0.18s ease-out;
      white-space: nowrap;
    }
    .contact-cta:hover {
      background: var(--gold2);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    }
    .contact-cta:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(0,0,0,0.20);
    }
    .contact-cta:focus-visible {
      outline: 2px solid rgba(201,161,74,0.6);
      outline-offset: 3px;
    }
    .contact-cta-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    .contact-cta-copy {
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(201,161,74,0.55);
      cursor: pointer;
    }
    .contact-cta-copy:hover {
      background: rgba(201,161,74,0.10);
      color: var(--gold2);
      border-color: var(--gold2);
      transform: translateY(-1px);
      box-shadow: none;
    }
    .contact-cta-copy:active {
      transform: translateY(0);
      background: rgba(201,161,74,0.16);
    }
    .contact-cta-copy.copied {
      background: rgba(63,174,106,0.12);
      color: #6FCF97;
      border-color: rgba(111,207,151,0.55);
    }
    .contact-cta-copy.copied:hover {
      background: rgba(63,174,106,0.16);
      color: #6FCF97;
      border-color: rgba(111,207,151,0.55);
    }

    /* ── FOOTER ──────────────────────────────────────────── */
    footer {
      background: var(--navy-deep);
      border-top: 1px solid var(--border);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; margin-bottom: 16px;
    }
    .footer-brand-name {
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.10em; text-transform: uppercase;
      color: rgba(255,255,255,0.65);
    }
    .footer-brand-name small { color: var(--gold); font-style: normal; font-size: inherit; }
    .footer-tagline {
      font-size: 14.5px; color: rgba(255,255,255,0.58);
      line-height: 1.65; max-width: 28ch; margin-bottom: 20px;
    }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 32px; height: 32px;
      border: 1px solid rgba(255,255,255,0.10); border-radius: 4px;
      color: rgba(255,255,255,0.38);
      transition: border-color 0.2s, color 0.2s;
      position: relative;
    }
    .footer-social a::before {
      content: '';
      position: absolute;
      inset: -6px;
    }
    .footer-social a:hover { border-color: rgba(201,161,74,0.40); }
    .footer-social a svg { width: 14px; height: 14px; fill: currentColor; }
    .footer-social a:has(img.social-icon-li) {
      border: none; background: none; width: auto; height: auto;
    }
    .footer-social a img.social-icon-li {
      width: 32px; height: 32px; display: block;
      opacity: 0.85; transition: opacity 0.3s ease;
    }
    .footer-social a:hover img.social-icon-li { opacity: 1; }
    .footer-col h3 {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.50); margin-bottom: 16px;
    }
    .footer-col a {
      display: block; font-size: 14px;
      color: rgba(255,255,255,0.48); text-decoration: none;
      padding: 4px 0; line-height: 1.5;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; align-items: center;
      justify-content: space-between;
      padding-top: 24px; gap: 16px; flex-wrap: wrap;
    }
    .footer-bottom span {
      font-size: 12px; color: rgba(255,255,255,0.52);
      letter-spacing: 0.04em; line-height: 1.7;
    }
    .footer-bottom.footer-legal-wrap {
      display: block; border-top: none; padding-top: 0; margin-bottom: 0;
    }
    .footer-bottom span.footer-legal {
      display: block; font-size: 12px; color: rgba(255,255,255,0.55);
      line-height: 1.7; max-width: 900px; margin-bottom: 20px;
      letter-spacing: normal;
    }

    /* ── SECTION WIDTH FILL ─────────────────────────────── */
    #services .wrap,
    #about .wrap,
    #global .wrap,
    #partners .wrap { max-width: 1440px; padding: 0 32px; }
    #commodities .comm-head { max-width: 1440px; padding-left: 32px; padding-right: 32px; }
    #commodities .comm-note { max-width: 1440px; padding-left: 32px; padding-right: 32px; }

    /* ── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 960px) {
      .nav-center { display: none; }
      .nav-right  { display: none; }
      .hamburger { display: flex; }
      .nav-right-mob { display: flex; }
      .about-grid, .global-grid { grid-template-columns: 1fr; gap: 52px; }
      .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .contact-panel { min-height: 0; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .service-card { padding: 36px 32px; }
      .values-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; padding-top: 0; border-top: none; }
      .values-grid .value-card,
      .values-grid .value-card:not(:first-child),
      .values-grid .value-card:last-child { padding: 0; padding-top: 28px; border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .comp-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
      .comp-grid .comp-item:last-child { grid-column: 1 / -1; }
      .partners-row1 { grid-template-columns: repeat(2, 1fr); }
      .partners-row2 { grid-template-columns: repeat(2, 1fr); }
      .partners-group-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 768px) {
      #reveal, #about, #global, #partners,
      #governance, #team, #contact, #faq { padding: 60px 0; }
      #commodities { padding: 60px 0; }
      #services { padding: 60px 0; }
      .service-card { padding: 28px 24px; }
      .service-card:hover { transform: none; }
      .services-intro { margin-bottom: 36px; }
      .values-block { padding: 36px 28px; }
      .values-block-title { margin-bottom: 32px; }
      .value-num {
        color: rgba(201,161,74,0.52);
        font-size: clamp(2.2rem, 8vw, 3rem);
      }
      /* Team: force single column — !important overrides the inline style="grid-template-columns: repeat(3,1fr)" */
      .team-grid { grid-template-columns: 1fr !important; gap: 12px; }
      /* Globe: center-anchor via left:50%+translateX(-50%) so the canvas
         midpoint sits on the hero's horizontal axis regardless of overflow.
         Scale 1.2 keeps the visual globe radius (R*1.2 ≈ 180px) comfortably
         within a 375px viewport; the 20% canvas edge bleed is clipped by
         clip-path:inset(0) on #hero without touching the globe itself. */
      #heroCanvas {
        top: 0;
        left: 50%;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        transform: translateX(-50%) scale(1.2);
        transform-origin: center center;
        filter: brightness(1.3) contrast(1.15);
        opacity: 0.88;
      }

      /* Readability: bump small body text for mobile */
      .service-card p { font-size: 16px; }
      .svc-list li { font-size: 16px; }
      .partner-card p { font-size: 16px; }
      .partner-badge span { font-size: 15.5px; }
      .team-sub { font-size: 16px; }
      .team-bio { font-size: 15px; }
      .team-affil { font-size: 12px; }
      .comm-sub { font-size: 16px; }
      .mq-item span { font-size: 14px; }
      .comm-vol-row span:first-child { font-size: 15px; }
      .comm-vol-row span:not(:first-child) { font-size: 14px; }
      .comm-note-origins { font-size: 14.5px; }
      .comm-note-footer { font-size: 14px; }
      .footer-tagline { font-size: 15px; }
      .footer-col a { font-size: 15px; }
      .footer-bottom span { font-size: 13px; }
      .footer-bottom > span.footer-legal { font-size: 13px; }
    }

    @media (max-width: 600px) {
      .wrap { padding: 0 20px; }
      #nav .wrap { padding: 0 20px; }
      #services .wrap,
      #about .wrap,
      #global .wrap,
      #partners .wrap { padding: 0 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .regions { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .reveal-inner, .comm-head, .comm-note { padding-left: 20px; padding-right: 20px; }
      #hero { padding: 64px 20px 48px; }
      #reveal, #about, #global, #partners,
      #governance, #team, #contact, #faq { padding: 44px 0; }
      #commodities { padding: 48px 0; }
      #services { padding: 44px 0; }
      .hero-logo img { width: 230px; height: 230px; }
      .hero-logo { margin-bottom: 24px; }
      .hero-sub { margin-bottom: 36px; }
      .service-card { padding: 28px 20px; }
      .services-intro { margin-bottom: 40px; }
      .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .partners-row1 { grid-template-columns: 1fr; }
      .partners-row2 { grid-template-columns: 1fr; }
      .partners-group-grid.grid-3, .partners-group-grid.grid-2, .partners-group-grid.grid-featured { grid-template-columns: 1fr; }
      .partner-card.has-logo { flex-direction: column; }
      .partner-logo-wrap { width: 100%; min-width: unset; margin-bottom: 12px; }
      /* Advisors: photo-left/text-right row collapses to photo-top/text-below
         so the description text isn't squeezed into a narrow column. */
      .partner-card.advisor-card { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 14px; }
      .partner-card.advisor-card h3,
      .advisor-role,
      .advisor-desc { text-align: center; }
      .team-grid { grid-template-columns: 1fr; gap: 12px; }
      .comp-grid { grid-template-columns: 1fr; gap: 10px; }
      .comp-grid .comp-item:last-child { grid-column: auto; }
      .contact-tag { font-size: 28px; }
      .contact-h2 { font-size: 15px; }
      .contact-name { font-size: 18px; }
      .contact-detail, .contact-detail a { font-size: 14px; }
      .contact-grid { margin-top: 32px; }
      .contact-person { grid-template-columns: 1fr; gap: 20px; }
      .contact-panel { padding: 28px 20px; }
      .contact-actions { align-items: flex-start; flex-direction: column; }
      .contact-cta-group { flex-direction: column; align-items: stretch; width: 100%; }
      .contact-cta { width: 100%; }
      .mob-menu.open { padding: 20px 20px 28px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-tagline { max-width: none; }
      footer { padding: 48px 0 24px; }
    }

    @media (max-width: 360px) {
      .hero-h1 { font-size: 1.65rem; }
      .hero-logo img { width: 180px; height: 180px; }
      .btn { padding: 13px 24px; font-size: 10.5px; }
    }

    @media (hover: none) {
      .btn-gold:hover, .btn-ghost:hover, .nav-cta:hover { transform: none !important; }
      .service-card:hover { transform: none; }
      .stat-card:hover { transform: none; }
      .partner-card:hover { transform: none; }
      .comp-item:hover { transform: none; }
      .team-card:hover { transform: none; }
      .values-grid:hover .value-card { opacity: 1; }
      .value-num { color: rgba(201,161,74,0.45); }
      .value-card:hover .value-num { color: rgba(201,161,74,0.45); }
      .region:hover .rnum,
      .region:hover .rname { transform: none; }
    }

    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px;
    }
    /* ── HERO ENTRANCE ────────────────────────────────────────── */
    @keyframes heroFadeDown {
      from { opacity: 0; transform: translateY(-18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-logo    { animation: heroFadeDown 0.9s var(--ease-out-expo)  0.05s both; }
    .hero-eyebrow { animation: heroFadeUp   0.8s var(--ease-out)       0.28s both; }
    .hero-h1      { animation: heroFadeUp   0.9s var(--ease-out-expo)  0.44s both; }
    .hero-sub     { animation: heroFadeUp   0.7s var(--ease-out)       0.60s both; }
    .hero-btns    { animation: heroFadeUp   0.7s var(--ease-out)       0.74s both; }

    /* ── DIVIDER ──────────────────────────────────────────────── */
    .divider {
      width: 48px; height: 2px; background: var(--gold);
      margin: 14px 0 44px; transform: scaleX(0); transform-origin: left;
      transition: transform 0.85s var(--ease-out);
    }
    .divider.drawn { transform: scaleX(1); }

    /* Tighter divider margin for compliance / team / contact (preserve existing feel) */
    #governance .divider,
    #team .divider,
    #contact .divider { margin: 6px 0 28px; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    }

    /* ── SERVICE CARD DENSITY ──────────────────────────────────
       Class-based styles replacing inline markup on service cards.
       Dash via ::before so HTML stays clean. */
    .svc-card-intro {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .svc-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .svc-list li {
      position: relative;
      padding-left: 28px;
      font-size: 15px;
      line-height: 1.65;
    }
    .svc-list li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: var(--gold-deep);
      font-weight: 600;
      line-height: inherit;
    }

    /* ── MOBILE LAYOUT CONTAINMENT ─────────────────────────────────
       Structural fixes scoped to mobile ONLY.
       Root cause of horizontal overflow: #heroCanvas has transform:scale(1.6)
       on mobile. overflow:hidden alone does not stop transform bleed in iOS
       Safari — the browser still extends the scroll extent to include scaled
       bounds. clip-path:inset(0) creates a hard clipping boundary at the
       element edge, containing the transform without masking with overflow. */
    @media (max-width: 768px) {
      /* Structural containment: clip-path clips the scaled canvas at the hero
         boundary. .mq-wrap already has overflow:hidden for the marquee track. */
      #hero { clip-path: inset(0); }
      /* Explicit width containment for the mobile nav drawer */
      .mob-menu,
      .mob-menu.open {
        width: 100%;
        box-sizing: border-box;
      }
    }

    /* ── DISPLAY SERIF TYPOGRAPHY — EN/ES ONLY ──────────────────────
       Source Serif 4 applied to section "tags" and the hero H1 for a
       display/body typographic contrast. Scoped via :lang() so it never
       matches html[lang="zh-CN"] (zh.html) — CJK is not covered by this
       font, so that page keeps Satoshi throughout. */
    html[lang="en"] .svc-tag,   html[lang="es"] .svc-tag,
    html[lang="en"] .about-tag, html[lang="es"] .about-tag,
    html[lang="en"] .global-tag,html[lang="es"] .global-tag,
    html[lang="en"] .comp-tag,  html[lang="es"] .comp-tag,
    html[lang="en"] .team-tag,  html[lang="es"] .team-tag,
    html[lang="en"] .faq-tag,   html[lang="es"] .faq-tag,
    html[lang="en"] .comm-tag,  html[lang="es"] .comm-tag,
    html[lang="en"] .advisor-name, html[lang="es"] .advisor-name,
    html[lang="en"] .hero-h1,   html[lang="es"] .hero-h1 {
      font-family: 'Source Serif 4', Georgia, serif;
    }

