:root {
  --navy-950: #03111f;
  --navy-900: #06182b;
  --navy-850: #08213a;
  --navy-800: #0b2946;
  --navy-700: #123d5e;
  --teal-600: #1e7180;
  --teal-400: #68b7c2;
  --gold-600: #a97e24;
  --gold-500: #c39a3a;
  --gold-300: #dfc477;
  --ink: #0a1d30;
  --ink-soft: #2f4050;
  --muted: #667481;
  --line: #dfe4e7;
  --line-dark: rgba(255, 255, 255, .14);
  --ivory: #f7f6f2;
  --paper: #ffffff;
  --paper-warm: #fbfaf7;
  --white: #ffffff;
  --shadow-soft: 0 18px 54px rgba(8, 24, 43, .08);
  --shadow-card: 0 12px 34px rgba(8, 24, 43, .07);
  --radius: 18px;
  --container: min(1240px, calc(100vw - 64px));
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
::selection { background: var(--gold-300); color: var(--navy-950); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 300;
  left: 18px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 108px 0; }
.section-light { background: var(--ivory); }
.section-paper { background: var(--paper); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(10, 29, 48, .08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 35px rgba(4, 18, 31, .08);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: 36px;
  align-items: center;
  height: 100%;
}
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand-full { width: 226px; height: auto; }
.brand-mobile { display: none; }
.desktop-nav { display: flex; align-items: stretch; height: 100%; gap: 34px; }
.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #293946;
  font-size: 13px;
  font-weight: 520;
  white-space: nowrap;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--navy-900); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.language-picker { position: relative; }
.language-toggle {
  min-width: 64px;
  height: 38px;
  border: 1px solid rgba(6, 24, 43, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  padding: 0 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 10px;
  letter-spacing: .06em;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
  border-color: rgba(195, 154, 58, .72);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6, 24, 43, .08);
}
.language-icon,
.language-chevron {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.language-icon { width: 15px; height: 15px; color: var(--gold-600); }
.language-chevron { width: 12px; height: 12px; transition: transform .2s ease; }
.language-toggle[aria-expanded="true"] .language-chevron { transform: rotate(180deg); }
.language-current { min-width: 15px; color: var(--navy-900); font-weight: 750; text-align: center; }
.language-menu {
  position: absolute;
  z-index: 180;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 7px;
  border: 1px solid rgba(6, 24, 43, .12);
  border-radius: 12px;
  background: rgba(255,255,255,.985);
  box-shadow: 0 18px 46px rgba(6, 24, 43, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.language-menu.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.language-menu button {
  position: relative;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0 30px 0 10px;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 8px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: left;
  cursor: pointer;
}
.language-menu button:hover,
.language-menu button:focus-visible { outline: 0; background: var(--ivory); color: var(--navy-900); }
.language-menu button.active { background: #f8f5eb; color: var(--navy-900); font-weight: 650; }
.language-menu button.active::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--gold-600);
  border-bottom: 1.5px solid var(--gold-600);
  transform: rotate(-45deg) translateY(-1px);
}
.language-code { color: var(--gold-600); font-size: 10px; font-weight: 750; letter-spacing: .04em; }
.header-cta {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(6, 24, 43, .18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 650;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.header-cta:hover { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 27%, rgba(23, 89, 113, .24), transparent 29%),
    linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 44%, #072540 100%);
  color: var(--white);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 47%, #000 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: 6%; top: -180px; background: rgba(23, 105, 127, .15); }
.hero-orb-two { width: 300px; height: 300px; left: -160px; bottom: -180px; background: rgba(195, 154, 58, .08); }
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 36px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 72px;
}
.hero-copy { padding-right: 10px; }
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 700;
}
.eyebrow > span:first-child { width: 30px; height: 1px; background: var(--gold-500); }
.hero h1 {
  margin: 0;
  max-width: 670px;
  font-family: var(--serif);
  font-size: clamp(58px, 5.4vw, 82px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.04em;
}
.hero h1 span { display: block; }
.hero-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: #c3ced6;
  font-size: 15.5px;
  line-height: 1.62;
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  min-height: 49px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: linear-gradient(135deg, #d1ad58, #bd8e2d); color: var(--white); box-shadow: 0 12px 34px rgba(195,154,58,.2); }
.button-gold:hover { background: linear-gradient(135deg, #dfc274, #c99a36); }
.button-outline { color: var(--white); border: 1px solid var(--gold-500); background: rgba(4, 18, 31, .28); }
.button-outline:hover { background: rgba(195, 154, 58, .12); }
.hero-attributes { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px 22px; color: #91a4b2; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-attributes span::before { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); margin-right: 9px; vertical-align: 2px; }
.hero-visual { position: relative; min-width: 0; height: 500px; }
.world-visual { width: 111%; max-width: none; height: 100%; margin-left: -3%; overflow: visible; }
.world-grid path { stroke: rgba(255,255,255,.05); stroke-width: 1; }
.longitude-lines path { fill: none; stroke: rgba(111, 158, 180, .11); stroke-width: 1; }
.market-line { fill: none; stroke-linecap: round; }
.market-line-gold { stroke: url(#gold-line); stroke-width: 2.3; filter: drop-shadow(0 0 4px rgba(223,196,119,.28)); stroke-dasharray: 800; stroke-dashoffset: 800; animation: draw-line 3.4s ease forwards .35s; }
.market-line-teal { stroke: url(#teal-line); stroke-width: 1.4; opacity: .9; }
.market-line-blue { stroke: rgba(97, 139, 171, .45); stroke-width: 1.15; }
.node-gold { fill: #e4c36e; filter: url(#glow); }
.node-teal { fill: #70d0d8; filter: url(#glow); }
.node-ring { fill: none; stroke: rgba(228,195,110,.55); stroke-width: 1; transform-origin: 641px 241px; animation: node-pulse 2.9s ease-out infinite; }
.node-ring-delay { transform-origin: 389px 319px; animation-delay: 1.1s; }
.visual-label {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: rgba(4, 18, 31, .54);
  backdrop-filter: blur(13px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.visual-label span { display: block; color: var(--gold-300); font-size: 8px; letter-spacing: .15em; }
.visual-label strong { display: block; margin-top: 5px; color: #d7e0e6; font-size: 10px; font-weight: 560; }
.visual-label-one { right: 3%; top: 13%; }
.visual-label-two { left: 8%; bottom: 9%; }

.section-title { max-width: 720px; }
.section-title.centered { margin-inline: auto; text-align: center; }
.section-title h2,
.markets-intro h2,
.company-column h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 55px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.032em;
}
.section-title > p:last-child { margin: 20px auto 0; max-width: 620px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.section-kicker { margin: 0 0 11px; color: var(--gold-600); font-size: 9px; font-weight: 750; letter-spacing: .2em; }
.title-rule { display: block; width: 36px; height: 2px; margin: 14px auto 0; background: var(--gold-500); }
.title-rule.left { margin-left: 0; }

.approach-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.approach-card {
  min-height: 188px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  padding: 27px 24px;
  border: 1px solid #e4e7e8;
  border-radius: 4px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.approach-card:hover { transform: translateY(-4px); border-color: rgba(195,154,58,.45); box-shadow: 0 20px 44px rgba(8,24,43,.09); }
.icon-ring {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(195,154,58,.68);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.icon-ring svg { width: 29px; fill: none; stroke: var(--gold-600); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.approach-card h3 { margin: 1px 0 8px; font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.1; }
.approach-card p { margin: 0; color: var(--muted); font-size: 11.5px; line-height: 1.65; }

.markets { padding: 68px 0 74px; border-top: 1px solid #e7e9ea; }
.markets-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.markets-intro p:last-child { margin: 18px 0 0; max-width: 430px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.market-features { display: grid; grid-template-columns: repeat(3, 1fr); }
.market-feature { min-height: 142px; display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 8px 30px; border-left: 1px solid #e4e7e8; }
.market-feature:first-child { border-left: 0; padding-left: 0; }
.market-feature:last-child { padding-right: 0; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; }
.feature-icon svg { width: 38px; fill: none; stroke: var(--navy-700); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.market-feature h3 { margin: 1px 0 8px; font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.12; }
.market-feature p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.risk {
  position: relative;
  padding: 78px 0 84px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-900) 55%, #082642);
  color: var(--white);
}
.risk-pattern {
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(195,154,58,.08);
  border-radius: 50%;
  right: -280px;
  top: -290px;
  box-shadow: 0 0 0 58px rgba(195,154,58,.03), 0 0 0 116px rgba(195,154,58,.02), 0 0 0 174px rgba(195,154,58,.01);
}
.section-title.inverse h2 { color: var(--white); }
.section-title.inverse > p:last-child { color: #9eafba; }
.risk-grid { position: relative; z-index: 1; margin-top: 46px; display: grid; grid-template-columns: repeat(4, 1fr); }
.risk-item { min-height: 162px; display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 8px 28px; border-left: 1px solid var(--line-dark); }
.risk-item:first-child { border-left: 0; padding-left: 0; }
.risk-item:last-child { padding-right: 0; }
.risk-icon { width: 48px; height: 48px; border: 1px solid rgba(195,154,58,.75); border-radius: 50%; display: grid; place-items: center; }
.risk-icon svg { width: 28px; fill: none; stroke: var(--gold-300); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.risk-item h3 { margin: 2px 0 8px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.risk-item p { margin: 0; color: #a9b7c1; font-size: 11.5px; line-height: 1.62; }

.company-contact-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 74px; align-items: start; }
.company-lede { max-width: 740px; margin: 24px 0 0; font-family: var(--serif); color: #21364a; font-size: 22px; line-height: 1.43; }
.company-copy { max-width: 740px; margin: 15px 0 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.company-facts { margin-top: 30px; border-top: 1px solid var(--line); }
.company-facts > div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.company-facts span { color: #7b8790; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.company-facts strong { font-size: 12px; font-weight: 600; }
.compliance-strip { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 22px; }
.compliance-strip > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 0 17px; border-left: 1px solid var(--line); }
.compliance-strip > div:first-child { padding-left: 0; border-left: 0; }
.compliance-strip > div:last-child { padding-right: 0; }
.mini-icon { width: 38px; height: 38px; border: 1px solid rgba(195,154,58,.65); border-radius: 50%; display: grid; place-items: center; }
.mini-icon svg { width: 23px; fill: none; stroke: var(--gold-600); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.compliance-strip p { margin: 0; }
.compliance-strip strong { display: block; font-size: 10px; line-height: 1.3; }
.compliance-strip p span { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.45; }

.contact-card {
  position: relative;
  padding: 40px 38px;
  border: 1px solid rgba(6,24,43,.09);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.contact-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -105px; top: -105px; border: 1px solid rgba(195,154,58,.18); border-radius: 50%; box-shadow: 0 0 0 28px rgba(195,154,58,.04), 0 0 0 56px rgba(195,154,58,.025); }
.contact-card > p:nth-of-type(2) { position: relative; z-index: 1; margin: 20px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.contact-list { position: relative; z-index: 1; margin-top: 25px; display: grid; gap: 4px; }
.contact-list > a,
.contact-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact-list > a { transition: color .2s ease; }
.contact-list > a:hover strong { color: var(--gold-600); }
.contact-icon { width: 34px; height: 34px; display: grid; place-items: center; }
.contact-icon svg { width: 24px; fill: none; stroke: var(--navy-700); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.contact-list small { display: block; color: #8a949c; font-size: 8px; letter-spacing: .1em; }
.contact-list strong { display: block; margin-top: 3px; font-size: 11px; font-weight: 610; transition: color .2s ease; word-break: break-word; }
.contact-legal { position: relative; z-index: 1; margin-top: 23px; display: inline-flex; gap: 9px; align-items: center; color: var(--gold-600); font-size: 11px; font-weight: 650; }
.contact-legal span:last-child { transition: transform .2s ease; }
.contact-legal:hover span:last-child { transform: translate(2px,-2px); }

.site-footer { padding: 46px 0 26px; background: var(--navy-950); color: var(--white); }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand img { width: 45px; height: 45px; object-fit: contain; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1; }
.footer-brand strong { font-size: 18px; letter-spacing: .01em; }
.footer-brand span { margin-top: 5px; color: #8da0ae; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.footer-nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 25px; }
.footer-nav a { color: #b5c0c8; font-size: 10px; transition: color .2s ease; }
.footer-nav a:hover { color: var(--gold-300); }
.footer-disclaimer { padding-top: 24px; }
.footer-disclaimer > p { max-width: 850px; margin: 0; color: #738795; font-size: 9px; line-height: 1.65; }
.footer-meta { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #566b7a; font-size: 8.5px; letter-spacing: .03em; }

/* Legal page */
.legal-hero { padding: 78px 0 72px; background: linear-gradient(120deg, var(--navy-950), var(--navy-900) 55%, #082642); color: var(--white); }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 76px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.legal-hero p:last-child { max-width: 760px; margin: 22px 0 0; color: #acbbc5; font-size: 14px; line-height: 1.75; }
.legal-layout { padding: 82px 0 100px; display: grid; grid-template-columns: 230px 1fr; gap: 64px; }
.legal-nav { position: sticky; top: calc(var(--header-height) + 28px); align-self: start; display: grid; gap: 3px; }
.legal-nav a { padding: 10px 12px; border-left: 2px solid transparent; color: var(--muted); font-size: 11px; }
.legal-nav a:hover { color: var(--navy-900); border-left-color: var(--gold-500); }
.legal-content { max-width: 850px; }
.legal-section { padding: 0 0 55px; margin: 0 0 55px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-height) + 30px); }
.legal-section:last-child { border-bottom: 0; margin-bottom: 0; }
.legal-section h2 { margin: 0 0 22px; font-family: var(--serif); font-size: 38px; font-weight: 400; letter-spacing: -.025em; }
.legal-section h3 { margin: 28px 0 10px; font-size: 13px; }
.legal-section p,
.legal-section li { color: var(--muted); font-size: 12.5px; line-height: 1.78; }
.legal-section ul { padding-left: 20px; }
.legal-note { padding: 18px 20px; border-left: 3px solid var(--gold-500); background: #fbfaf5; color: var(--ink-soft) !important; }

.reveal { opacity: 1; transform: none; }
.reveal-animate .reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); }
.reveal-animate .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes node-pulse { 0% { transform: scale(.45); opacity: .9; } 100% { transform: scale(2.25); opacity: 0; } }

@media (max-width: 1120px) {
  :root { --container: min(100% - 44px, 980px); --header-height: 82px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand-full { width: 198px; }
  .desktop-nav { display: none; }
  .header-actions { gap: 11px; }
  .menu-toggle {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    padding: 8px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { width: 27px; height: 1px; background: var(--navy-900); transition: transform .22s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 95;
    inset: var(--header-height) 0 0;
    display: block;
    background: rgba(255,255,255,.985);
    transform: translateX(102%);
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-inner { width: var(--container); margin-inline: auto; padding: 48px 0; display: flex; flex-direction: column; gap: 17px; }
  .mobile-menu a:not(.mobile-mail) { font-family: var(--serif); font-size: 36px; line-height: 1.1; }
  .mobile-mail { margin-top: 20px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--gold-600); font-size: 12px; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 88px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { max-width: 760px; }
  .hero-lede { max-width: 690px; }
  .hero-visual { height: 520px; margin-top: -10px; }
  .world-visual { width: 100%; margin-left: 0; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-layout { grid-template-columns: 1fr; gap: 42px; }
  .markets-intro p:last-child { max-width: 620px; }
  .risk-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .risk-item:nth-child(3) { border-left: 0; padding-left: 0; }
  .company-contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-column { max-width: 680px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 34px); --header-height: 72px; }
  .section-pad { padding: 78px 0; }
  .site-header { height: var(--header-height); }
  .brand-full { display: none; }
  .brand-mobile { display: inline-flex; align-items: center; gap: 8px; }
  .brand-mobile img { width: 43px; height: 43px; object-fit: contain; }
  .brand-mobile > span { font-size: 22px; font-weight: 700; color: var(--navy-900); letter-spacing: -.02em; }
  .header-cta { display: none; }
  .language-toggle { min-width: 58px; height: 36px; padding-inline: 8px; font-size: 9px; }
  .language-menu { width: 176px; right: -5px; }
  .hero { min-height: auto; }
  .hero-layout { padding-top: 70px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  html[data-language="zh"] .hero h1 { font-size: clamp(46px, 13vw, 55px); }
  html[data-language="ja"] .hero h1,
  html[data-language="ko"] .hero h1 { font-size: clamp(46px, 12.5vw, 52px); }
  .hero-lede { font-size: 14px; line-height: 1.68; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-attributes { flex-direction: column; gap: 9px; }
  .hero-visual { height: 360px; margin-top: 10px; }
  .world-visual { width: 118%; margin-left: -9%; }
  .visual-label-one { right: 0; top: 11%; }
  .visual-label-two { left: 0; bottom: 3%; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { min-height: 0; }
  .market-features { grid-template-columns: 1fr; }
  .market-feature { min-height: 0; padding: 23px 0; border-left: 0; border-top: 1px solid var(--line); }
  .market-feature:first-child { border-top: 0; }
  .risk { padding: 70px 0; }
  .risk-grid { grid-template-columns: 1fr; gap: 0; }
  .risk-item { min-height: 0; padding: 26px 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .risk-item:first-child { border-top: 0; }
  .company-facts > div { grid-template-columns: 1fr; gap: 5px; }
  .compliance-strip { grid-template-columns: 1fr; gap: 0; }
  .compliance-strip > div { padding: 18px 0; border-left: 0; border-top: 1px solid var(--line); }
  .compliance-strip > div:first-child { border-top: 0; }
  .contact-card { padding: 34px 25px; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-nav { justify-content: flex-start; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 7px; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; padding-top: 56px; }
  .legal-nav { position: static; display: flex; overflow-x: auto; white-space: nowrap; padding-bottom: 8px; }
  .legal-nav a { border-left: 0; border-bottom: 2px solid transparent; }
  .legal-nav a:hover { border-left-color: transparent; border-bottom-color: var(--gold-500); }
  .legal-section h2 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

[data-lang-copy] { display: none; }
html[data-language="en"] [data-lang-copy="en"],
html[data-language="zh"] [data-lang-copy="zh"],
html[data-language="ja"] [data-lang-copy="ja"],
html[data-language="ko"] [data-lang-copy="ko"] { display: block; }

html[lang="zh-CN"] {
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", sans-serif;
  --serif: "Songti SC", SimSun, "Noto Serif CJK SC", Georgia, serif;
}
html[lang="ja"] {
  --sans: "Hiragino Sans", "Yu Gothic", YuGothic, "Noto Sans JP", "Segoe UI", sans-serif;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", Georgia, serif;
}
html[lang="ko"] {
  --sans: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", "Segoe UI", sans-serif;
  --serif: AppleMyungjo, Batang, "Noto Serif KR", Georgia, serif;
}
html[data-language="zh"] .hero h1,
html[data-language="ja"] .hero h1,
html[data-language="ko"] .hero h1 { line-height: 1.08; letter-spacing: -.025em; }
html[data-language="ja"] .hero-lede,
html[data-language="ko"] .hero-lede,
html[data-language="ja"] .legal-section p,
html[data-language="ko"] .legal-section p { line-height: 1.86; }
html[data-language="ja"] .section-kicker,
html[data-language="ko"] .section-kicker,
html[data-language="ja"] .eyebrow,
html[data-language="ko"] .eyebrow { letter-spacing: .12em; }

/* Desktop hero proportion: preserve the approved two-line headline treatment. */
@media (min-width: 1121px) {
  .hero-layout { grid-template-columns: .98fr 1.02fr; gap: 24px; }
  .hero h1 { font-size: clamp(58px, 4.75vw, 72px); max-width: none; }
  .hero h1 span { white-space: nowrap; }
  .hero-visual { height: 490px; }
}
