@font-face {
  font-family: "Estedad";
  src: url("/assets/fonts/Estedad-Arabic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+08A0-08FF, U+200C-200E, U+2010-2011, U+FB50-FDFF, U+FE70-FEFC;
}
@font-face {
  font-family: "Estedad";
  src: url("/assets/fonts/Estedad-Latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Latin.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-LatinExt.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Cyrillic.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --void: #05070b;
  --navy: #0b1220;
  --paper: #e8e0d2;
  --ink: #f3eee4;
  --muted: #9a9588;
  --gold: #d4b27a;
  --gold-deep: #b08948;
  --line: rgba(236, 230, 216, 0.12);
  --line-strong: rgba(236, 230, 216, 0.32);
  --header-h: 4.7rem;
  --gutter: clamp(1.25rem, 4vw, 3.25rem);
  --max: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Estedad", "IBM Plex Sans", system-ui, sans-serif;
  --font-body: "Estedad", "IBM Plex Sans", system-ui, sans-serif;
  --fs-display: clamp(2.35rem, 5.2vw, 4rem);
  --fs-h2: clamp(1.7rem, 3.2vw, 2.65rem);
  --fs-h3: 1.12rem;
  --fs-body: 1.04rem;
  --fs-small: 0.82rem;
  --fs-label: 0.72rem;
  --lh-display: 1.12;
  --lh-body: 1.75;
  --radius: 1.15rem;
  --radius-sm: 0.75rem;
  --pill: 999px;
}

html[dir="ltr"] {
  --font-display: "IBM Plex Sans", "Estedad", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Estedad", system-ui, sans-serif;
  --lh-display: 1.08;
  --fs-display: clamp(2.15rem, 4.7vw, 3.45rem);
  --fs-h2: clamp(1.72rem, 3.05vw, 2.55rem);
}

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

html { scroll-behavior: auto; overflow-x: clip; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -5rem;
  background: var(--paper);
  color: var(--navy);
  padding: 0.55rem 0.9rem;
  z-index: 90;
}
.skip:focus { top: 0.7rem; }

.shell {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.kicker,
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
[dir="rtl"] .kicker,
[dir="rtl"] .eyebrow {
  letter-spacing: 0.06em;
  text-transform: none;
}
.eyebrow.dark { color: #8a6b38; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  text-wrap: pretty;
  overflow-wrap: normal;
  hyphens: manual;
}
h1 {
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.035em;
}
h1 span { display: block; }
h2 { font-size: var(--fs-h2); line-height: 1.2; letter-spacing: -0.03em; }
h3 { font-size: var(--fs-h3); letter-spacing: -0.015em; font-weight: 600; }

.lede {
  margin: 1.15rem 0 0;
  max-width: 38rem;
  color: #d5cfc0;
  font-size: 1.08rem;
  line-height: 1.85;
}
.dim { color: var(--muted); }
.idx {
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.7rem 1.7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  font: inherit;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.btn-brass { background: var(--gold); color: #1a140c; border-color: var(--gold); font-weight: 600; }
.btn-brass:hover { background: #e3c48a; color: #1a140c; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ink { background: #16130d; color: var(--paper); border-color: #16130d; }
.btn-ink:hover { background: #000; color: #fff; }

.text-link {
  display: inline-flex;
  margin-top: 1.6rem;
  font-size: var(--fs-small);
  color: #6d5a36;
  border-bottom: 1px solid #6d5a36;
  padding-bottom: 0.15rem;
}
.text-link:hover { color: var(--navy); border-color: var(--navy); }
.market .text-link {
  color: var(--gold);
  border-bottom-color: var(--gold);
  margin-top: 1rem;
}
.market .text-link:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(5, 7, 11, 0.86);
  border-bottom: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { background: rgba(5, 7, 11, 0.96); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
  width: 100%;
  max-width: none;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: none;
  margin-inline-end: 0.15rem;
}
.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  flex: none;
  object-fit: contain;
  background: transparent;
}
.brand span { min-width: 0; display: grid; gap: 0.12rem; }
.brand-name {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1.15;
}
html[dir="rtl"] .brand-name {
  font-size: 1.12rem;
  letter-spacing: 0;
}
.brand-line {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.nav-desktop { display: none; flex: 1; min-width: 0; }
.nav-desktop ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.2rem 1.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
html[dir="ltr"] .nav-desktop a {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--ink); }
.nav-desktop a[aria-current="page"] {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
}
.header-end { display: flex; align-items: center; gap: 0.55rem; margin-inline-start: auto; }
.header-cta { display: none; }
.lang { position: relative; }
.lang-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--ink);
  min-height: 2.15rem;
  padding: 0 0.85rem;
  font: inherit;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  cursor: pointer;
}
.lang-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 0.4rem);
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-width: 11rem;
  z-index: 50;
}
.lang-menu a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.lang-menu a[aria-current="true"],
.lang-menu a:hover { color: var(--ink); }
.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: none;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}
.menu-btn span:not(.sr-only) { display: block; width: 0.95rem; height: 1px; background: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-mark {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  margin-bottom: 1.1rem;
  background: transparent;
}
.menu {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 45;
  padding-block-start: calc(var(--header-h) + 1.25rem);
  overflow: auto;
}
.menu ul { list-style: none; margin: 1.25rem 0 2rem; padding: 0; }
.menu li + li { border-top: 1px solid var(--line); }
.menu a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.95rem;
  font-size: clamp(1.4rem, 4.5vw, 2.1rem);
}
.menu-langs { display: flex; flex-wrap: wrap; gap: 0.75rem 1.1rem; margin-block-end: 1.75rem; }
.menu-langs a { font-size: var(--fs-small); color: var(--muted); }
.menu-langs a[aria-current="true"] { color: var(--gold); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 18% 48%, rgba(212, 178, 122, 0.12), transparent 58%),
    var(--void);
}

.hero-stage {
  direction: ltr;
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin-inline: 0;
  padding: 1.75rem var(--gutter) 1.15rem;
}

html[dir="ltr"] .hero-stage { flex-direction: row-reverse; }

.globe-stage {
  position: relative;
  flex: 0 1 min(26.5rem, 100%);
  width: min(26.5rem, 88vw);
  height: min(26.5rem, 88vw);
  overflow: visible;
}
.globe-stage::before {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 48% 46%, rgba(212, 178, 122, 0.16) 0%, rgba(90, 130, 170, 0.08) 42%, transparent 68%);
}

#trade-globe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-copy {
  container-type: inline-size;
  container-name: hero;
  flex: 1 1 26rem;
  width: auto;
  max-width: 48rem;
  min-width: 0;
  position: relative;
  padding-top: 0.2rem;
}
html[dir="rtl"] .hero-copy { direction: rtl; text-align: start; }
html[dir="ltr"] .hero-copy { direction: ltr; text-align: start; }
.hero-copy .kicker {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(212, 178, 122, 0.38);
  border-radius: var(--pill);
  background: rgba(212, 178, 122, 0.08);
}
.hero-copy h1 {
  margin-top: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: unset;
  line-height: 1.16;
  font-size: var(--fs-display);
}
html[dir="ltr"] .hero-copy h1 {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
html[lang="ru"] .hero-copy h1 {
  letter-spacing: -0.025em;
}
html[lang="tr"] .hero-copy h1 {
  letter-spacing: -0.03em;
}
html[lang="zh"],
html[lang="zh-CN"] {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "IBM Plex Sans", system-ui, sans-serif;
}
html[lang="zh"] .hero-copy h1,
html[lang="zh-CN"] .hero-copy h1 {
  letter-spacing: 0.02em;
  font-weight: 700;
}
@supports (font-size: 1cqi) {
  .hero-copy h1 {
    font-size: clamp(1.85rem, min(9.2cqi, 100cqw / 11.2), 4rem);
  }
  html[dir="ltr"] .hero-copy h1 {
    font-size: clamp(1.85rem, min(8.6cqi, 100cqw / 13.4), 3.4rem);
  }
  html[lang="en"] .hero-copy h1 {
    font-size: clamp(1.9rem, min(8.8cqi, 100cqw / 13.2), 3.45rem);
  }
  html[lang="tr"] .hero-copy h1 {
    font-size: clamp(1.8rem, min(8.2cqi, 100cqw / 14.4), 3.25rem);
  }
  html[lang="ru"] .hero-copy h1 {
    font-size: clamp(1.7rem, min(7.6cqi, 100cqw / 16.4), 3.1rem);
  }
  html[lang="zh"] .hero-copy h1,
  html[lang="zh-CN"] .hero-copy h1 {
    font-size: clamp(1.85rem, min(8.4cqi, 100cqw / 12.5), 3.35rem);
  }
}
.hero-copy h1 .hero-line {
  display: block;
  white-space: nowrap;
}
.hero-copy h1 .hero-line-gold { color: var(--gold); }
.hero-copy .lede {
  margin-top: 0.9rem;
  max-width: 38rem;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 500;
  color: #d8d2c4;
  white-space: normal;
}
.hero-focus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  color: #cbb892;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-focus li {
  display: inline-flex;
  align-items: center;
}
.hero-focus li + li::before {
  content: "";
  width: 3px;
  height: 3px;
  margin-inline: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
  margin-top: 1.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(212, 178, 122, 0.2);
}
.hero-cta {
  min-height: 3.25rem;
  padding: 0.78rem 1.9rem;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(212, 178, 122, 0.18);
}
.hero-cta:hover {
  color: #1a140c;
  box-shadow: 0 14px 34px rgba(212, 178, 122, 0.28);
}
.hero-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #e6d4b4;
  font-size: 0.92rem;
  font-weight: 600;
  padding-block: 0.35rem;
  border-bottom: 1px solid rgba(212, 178, 122, 0.55);
}
.hero-more::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  color: var(--gold);
}
html[dir="rtl"] .hero-more::after { content: "←"; }
.hero-more:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 1199px) {
  .globe-stage {
    width: min(22rem, 82vw);
    height: min(22rem, 82vw);
  }
}

@media (max-width: 1023px) {
  .hero-stage,
  html[dir="ltr"] .hero-stage {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    padding-block: 1.4rem 1.1rem;
    gap: 1.4rem;
  }
  .hero-copy {
    flex: 1 1 auto;
    order: -1;
    width: 100%;
    max-width: none;
    padding-top: 0;
  }
  .hero-copy h1 .hero-line { white-space: normal; }
  .hero-copy .lede { white-space: normal; }
  .hero-actions {
    margin-top: 1.35rem;
    padding-top: 1.15rem;
  }
  .globe-stage {
    flex: none;
    width: min(20.5rem, 78vw);
    height: min(20.5rem, 78vw);
    margin-inline: auto;
  }
  .gold-band h2 { max-width: none; }
  .trust-copy h2,
  html[dir="ltr"] .trust-copy h2,
  html[lang="ru"] .trust-copy h2 { max-width: none; }
}

@media (max-width: 767px) {
  :root { --header-h: 4.35rem; --fs-body: 1rem; }
  .chapter { padding-block: 3.4rem 3.1rem; }
  .trust { padding-block: 3.6rem 3.2rem; }
  .brand-name { font-size: 0.95rem; }
  html[dir="rtl"] .brand-name { font-size: 1rem; }
  .hero-cta { width: 100%; }
  .hero-actions { align-items: stretch; }
  .hero-more { align-self: flex-start; }
  .inquiry-submit { width: 100%; }
  .ticker::before,
  .ticker::after { width: 2.2rem; }
  .service-rows li { grid-template-columns: 2.4rem 1fr; gap: 0.25rem 0.8rem; }
  .contact-stage { gap: 1.6rem; }
  .inquiry-form { padding: 1.25rem 1rem 1.2rem; }
}

@media (max-width: 479px) {
  .brand-line { display: none; }
  .brand-mark { width: 2.25rem; height: 2.25rem; }
  .header-inner { gap: 0.65rem; }
  .hero-copy h1 { font-size: clamp(1.55rem, 8.5vw, 2.2rem); }
  .btn { width: 100%; }
  .header-end .btn { width: auto; }
}

.ticker {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-block: 0.95rem;
  border-top: 1px solid rgba(212, 178, 122, 0.22);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, #0a0e16 42%);
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.5rem;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, #05070b, transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, #05070b, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  direction: ltr;
  animation: ticker 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  padding-inline: 0.15rem 1.35rem;
  color: #e6d6b6;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ticker-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
  flex: none;
}

.chapter {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.chapter-navy { background: #080c14; }
.chapter-head {
  display: grid;
  gap: 0.6rem 2rem;
  margin-bottom: 2.8rem;
  max-width: 46rem;
}
.mark {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.85;
  font-weight: 600;
  color: rgba(212, 178, 122, 0.18);
  letter-spacing: -0.06em;
}
.section-sub { margin: 0.8rem 0 0; color: var(--muted); max-width: 40em; }

.trust {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 80% at 100% 10%, rgba(201, 165, 106, 0.1), transparent 58%),
    linear-gradient(180deg, #05070b 0%, #0a0e16 100%);
  padding-block: clamp(4.6rem, 10vw, 8.6rem);
  overflow: hidden;
  border-block: 1px solid rgba(201, 165, 106, 0.14);
}
.trust::before,
.trust::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(201, 165, 106, 0.18);
  border-radius: 50%;
}
.trust::before {
  inset-inline-end: -12%;
  top: -18%;
  width: min(52vw, 34rem);
  height: min(52vw, 34rem);
}
.trust::after {
  inset-inline-end: 6%;
  top: 22%;
  width: min(28vw, 16rem);
  height: min(28vw, 16rem);
  opacity: 0.55;
}
.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.6rem;
}
.trust-copy .mark { display: block; margin-bottom: 0.4rem; }
.trust-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.05rem, 4.6vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: pretty;
}
html[dir="ltr"] .trust-copy h2 { max-width: 18ch; }
html[lang="ru"] .trust-copy h2 { max-width: 20ch; }
.trust-copy .lede {
  margin-top: 1.1rem;
  max-width: 38em;
  color: var(--muted);
}
.trust-copy .text-link { margin-top: 1.5rem; }
.trust-rails {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.trust-rails li {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 0.15rem 1rem;
  padding: 1.2rem 0 1.3rem;
  border-bottom: 1px solid var(--line);
}
.trust-rails .idx {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  padding-top: 0.15rem;
}
.trust-rails h3 {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.trust-rails p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  max-width: 36em;
}
.trust-offices {
  display: grid;
  gap: 0.9rem;
}
.trust-office {
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid rgba(201, 165, 106, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(201, 165, 106, 0.08), rgba(8, 12, 20, 0.4));
}
.trust-office .place {
  margin: 0 0 0.4rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.trust-office h3 { margin: 0; font-size: 1.22rem; }
.trust-office p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.service-rows li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.35rem 1.2rem;
  padding: 1.55rem 0 1.65rem;
  border-bottom: 1px solid var(--line);
  border-inline-start: 0 solid var(--gold);
  transition: border-inline-start-width 180ms var(--ease), padding-inline-start 180ms var(--ease);
}
.service-rows li:hover {
  border-inline-start-width: 3px;
  padding-inline-start: 0.85rem;
}
.service-rows h3 {
  grid-column: 2;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  margin: 0;
}
.service-rows p {
  grid-column: 2;
  margin: 0.35rem 0 0;
  color: var(--muted);
  max-width: 38em;
}
.service-rows .idx { grid-row: 1 / span 2; padding-top: 0.45rem; }

.spine {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.spine li {
  position: relative;
  padding: 0 0 2rem 1.4rem;
  border-inline-start: 1px solid rgba(212, 178, 122, 0.45);
}
.spine li:last-child { padding-bottom: 0; }
.spine li::before {
  content: "";
  position: absolute;
  inset-inline-start: -4px;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.spine .idx { display: block; margin-bottom: 0.4rem; }
.spine h3 { margin: 0 0 0.4rem; font-size: 1.2rem; }
.spine p { margin: 0; color: var(--muted); }

.ports {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.ports li {
  padding: 2rem 1.6rem 2.1rem;
  background: linear-gradient(180deg, #121826 0%, #0a101a 100%);
  border: 1px solid rgba(212, 178, 122, 0.28);
  border-radius: var(--radius);
}
.port-place {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.ports h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.ports p { margin: 0; color: var(--muted); }

.commodities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.commodities li {
  padding: 1.4rem 1.25rem 1.5rem;
  background: #0c121c;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 10.5rem;
}
.commodities li:hover { border-color: var(--gold); }
.commodities h3 { margin: 0.55rem 0 0.45rem; font-size: 1.2rem; }
.commodities p { margin: 0; color: var(--muted); }

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.6rem 2.4rem;
}
.pillars li { padding-top: 1rem; border-top: 1px solid var(--gold); }
.pillars h3 { margin: 0 0 0.45rem; font-size: 1.15rem; }
.pillars p { margin: 0; color: var(--muted); }

.corridor {
  position: relative;
  min-height: 8rem;
  margin-top: 1rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.corridor svg { width: 100%; height: 8rem; }
.corridor .lane {
  fill: none;
  stroke: rgba(201, 165, 106, 0.42);
  stroke-width: 1;
  stroke-dasharray: 8 14;
  animation: lane-flow 18s linear infinite;
}
.corridor .lane-b {
  stroke: rgba(236, 230, 216, 0.2);
  animation-duration: 24s;
  animation-direction: reverse;
}
.corridor .port { fill: var(--gold); }

.gold-band {
  background: var(--gold);
  color: #1a140c;
  padding-block: clamp(3.4rem, 7vw, 5.5rem);
}
.gold-band-inner {
  display: grid;
  gap: 1.4rem;
}
.gold-band h2 { max-width: 14ch; }
.gold-band p {
  margin: 0 0 1.3rem;
  max-width: 36em;
  line-height: 1.8;
}

.desk {
  display: grid;
  gap: 1.5rem;
}
.desk-card {
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c121c;
}
.desk-card p { margin: 0; color: #d5cfc0; }
.vcard {
  font-style: normal;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.vcard p { margin: 0 0 0.35rem; color: var(--muted); }

.contact-stage {
  display: grid;
  gap: 2.4rem;
  align-items: start;
}
.contact-intro .lede {
  margin-top: 0.85rem;
  max-width: 36em;
}
.contact-note {
  margin: 1.1rem 0 0;
  max-width: 34em;
  color: var(--muted);
  font-size: 0.88rem;
}
.inquiry-form {
  padding: 1.7rem 1.45rem 1.55rem;
  border: 1px solid rgba(212, 178, 122, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #121a26 0%, #0c121c 100%);
}
.inquiry-kicker {
  margin: 0 0 1.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.inquiry-grid {
  display: grid;
  gap: 0.95rem 1rem;
}
.inquiry-field {
  display: grid;
  gap: 0.38rem;
}
.inquiry-field span {
  color: #d8d0c2;
  font-size: 0.82rem;
  font-weight: 600;
}
.inquiry-field span small {
  margin-inline-start: 0.35rem;
  color: var(--muted);
  font-weight: 500;
}
.inquiry-field em {
  font-style: normal;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
}
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #080c14;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}
.inquiry-field textarea { min-height: 8.5rem; resize: vertical; }
.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  outline: 2px solid rgba(212, 178, 122, 0.45);
  border-color: var(--gold);
}
.inquiry-submit {
  margin-top: 1.2rem;
  min-width: min(12rem, 100%);
}
.inquiry-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.inquiry-status.is-ok { color: #d4b27a; }
.inquiry-status.is-err { color: #e7b6b6; }
.inquiry-form.is-sent .inquiry-grid,
.inquiry-form.is-sent .inquiry-submit { display: none; }
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (min-width: 768px) {
  .contact-stage { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr); gap: 3rem; }
  .inquiry-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-field-wide { grid-column: 1 / -1; }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 3rem 1.4rem;
  background: #05070b;
}
.footer-grid { display: grid; gap: 2rem; }
.footer-mark {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
  margin-bottom: 0.85rem;
  background: transparent;
}
.footer-h {
  margin: 0 0 0.7rem;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  color: var(--gold);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 0.35rem; }
.site-footer a { color: #cfc9bc; }
.footer-langs { display: flex; gap: 0.8rem; margin: 0; }
.footer-langs a[aria-current="true"] { color: var(--gold); border-bottom: 1px solid var(--gold); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 2.4rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-small);
}
.footer-base a { margin-inline-start: 0.9rem; color: var(--muted); }
.footer-base a.karno-credit {
  margin-inline-start: 0;
  color: #e0c08a;
  font-family: "IBM Plex Sans", "Estedad", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(224, 192, 138, 0.55);
}
.footer-base a.karno-credit:hover,
.footer-base a.karno-credit:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--ink);
}
.tiny { font-size: var(--fs-small); margin-top: 0.7rem; }

.market { min-width: 0; }
.market-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}
.market-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-small);
}
.market-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--fs-label);
}
.market-live::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7dcea0;
  box-shadow: 0 0 0 0 rgba(125, 206, 160, 0.7);
  animation: market-pulse 2.2s ease-out infinite;
}
.market-search { min-width: min(22rem, 100%); }
.market-search input {
  width: 100%;
  max-width: 22rem;
  background: rgba(232, 224, 210, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  color: var(--ink);
  font: inherit;
  padding: 0.55rem 1rem;
}
.market-note {
  margin: 0.85rem 0 1.1rem;
  color: var(--muted);
  font-size: var(--fs-small);
}
.market-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.market-tabs button {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: var(--pill);
  padding: 0.42rem 0.95rem;
  font: inherit;
  font-size: var(--fs-small);
  cursor: pointer;
}
.market-tabs button[aria-selected="true"] {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 178, 122, 0.08);
}
.market-caption,
.market-status {
  margin: 0 0 0.75rem;
  font-size: var(--fs-small);
  color: var(--muted);
}
.market-status.is-err { color: #e8b4b4; }
.market-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(11, 18, 32, 0.35);
}
.market table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.market th,
.market td {
  padding: 0.62rem 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: start;
  white-space: nowrap;
}
.market th {
  color: var(--gold);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.market td.num {
  font-variant-numeric: tabular-nums;
  color: var(--paper);
}
.market tbody tr:hover { background: rgba(212, 178, 122, 0.06); }
.market tbody tr.is-hide { display: none; }

.market-page-body { background: var(--void); }
.market-page {
  padding-block: calc(var(--header-h) + 2.2rem) 4rem;
  min-height: 100vh;
}
.market-page h1 {
  font-size: var(--fs-h2);
  line-height: var(--lh-display);
  max-width: 18ch;
}
.market-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin: 1.4rem 0 0.4rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: var(--fs-small);
}
.market-counts strong {
  color: var(--gold);
  font-size: 1.05rem;
  margin-inline-end: 0.35rem;
}
.market-gate {
  max-width: 28rem;
  margin-top: 1.6rem;
}
.market-gate .lede {
  margin-top: 0;
  margin-bottom: 1.1rem;
}
.market-gate .inquiry-field { margin-bottom: 1.1rem; }
.market-gate .inquiry-submit { margin-top: 0.2rem; }
.commodity-note {
  margin-top: 1.2rem;
  max-width: 48rem;
  color: var(--muted);
}
.commodity-meta {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
  font-size: var(--fs-small);
}
.commodity-table-wrap {
  overflow-x: auto;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(212, 178, 122, 0.18);
}
.commodity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}
.commodity-table th,
.commodity-table td {
  padding: 0.75rem 0.65rem;
  text-align: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
.commodity-table th {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.commodity-table tbody tr:hover {
  background: rgba(212, 178, 122, 0.06);
}

@media (max-width: 767px) {
  .market-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .market-search,
  .market-search input {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .market-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
  }
  .market-tabs button {
    flex: 0 0 auto;
  }
  .market-page h1 { max-width: none; }
  .market-scroll {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .market table {
    font-size: 0.95rem;
  }
  .market thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .market tbody tr {
    display: grid;
    gap: 0;
    margin-bottom: 0.75rem;
    padding: 0.2rem 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(11, 18, 32, 0.35);
  }
  .market tbody tr.is-hide { display: none; }
  .market tbody tr:hover { background: rgba(212, 178, 122, 0.08); }
  .market th,
  .market td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.85rem;
    white-space: normal;
    overflow-wrap: anywhere;
    border-bottom: 1px solid var(--line);
  }
  .market td:last-child { border-bottom: 0; }
  .market td::before {
    content: attr(data-label);
    color: var(--gold);
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.04em;
    flex: 0 0 38%;
    max-width: 8.5rem;
  }
}

@keyframes market-pulse {
  70% { box-shadow: 0 0 0 0.45rem rgba(125, 206, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 206, 160, 0); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}
@keyframes lane-flow {
  to { stroke-dashoffset: -220; }
}

@media (min-width: 768px) {
  .chapter-head { grid-template-columns: auto 1fr; align-items: end; }
  .spine { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .ports { grid-template-columns: 1fr 1fr; }
  .commodities { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .gold-band-inner { grid-template-columns: 1.1fr 0.9fr; align-items: end; }
  .desk { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .trust-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    grid-template-rows: auto auto;
    column-gap: 4.2rem;
    row-gap: 1.6rem;
    align-items: start;
  }
  .trust-copy { grid-row: 1 / span 2; padding-inline-end: 1rem; }
}

@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

@media (min-width: 1200px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem 1.25rem;
  }
  .brand { justify-self: start; }
  .nav-desktop {
    display: flex;
    flex: none;
    justify-self: center;
  }
  .header-end {
    display: flex;
    justify-self: end;
    margin-inline-start: 0;
  }
  .header-cta { display: flex; }
  .menu-btn { display: none; }
  .spine { grid-template-columns: repeat(3, 1fr); }
  .commodities { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .nav-desktop ul { gap: 0.15rem 0.8rem; }
  .nav-desktop a { font-size: 0.84rem; }
  html[dir="ltr"] .nav-desktop a { font-size: 0.88rem; }
}
@media (min-width: 1280px) {
  .nav-desktop ul { gap: 0.2rem 1.15rem; }
  .nav-desktop a { font-size: 0.92rem; }
  html[dir="ltr"] .nav-desktop a { font-size: 0.96rem; }
}

@media (prefers-reduced-motion: reduce) {
  .corridor .lane,
  .corridor .ship,
  .ticker-track,
  .market-live::before { animation: none; }
}

.news-page .chapter-head {
  display: block;
  max-width: 40rem;
  margin-bottom: 2rem;
}
.news-page .mark { display: none; }
.news-page.market-page h1,
.news-page h1 {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}
.news-page .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.news-page .section-sub {
  margin-top: 0.7rem;
  max-width: 34em;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(236, 230, 216, 0.78);
}
.news-list { display: grid; gap: 1.15rem; margin-top: 1.35rem; }
.news-card {
  padding: 1.25rem 1.3rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 18, 32, 0.55);
}
.news-card h2 {
  margin: 0.4rem 0 0.55rem;
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.65;
}
.news-card h2 a { color: var(--ink); text-decoration: none; }
.news-card h2 a:hover { color: var(--gold); }
.news-card > p {
  margin: 0;
  color: rgba(236, 230, 216, 0.82);
  font-size: 1.02rem;
  line-height: 1.9;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  color: var(--gold);
  font-size: 0.8rem;
  margin: 0 0 0.55rem;
}
.news-body {
  white-space: pre-wrap;
  margin-top: 1.15rem;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 2;
  color: var(--ink);
}
.news-photo {
  display: block;
  max-width: min(100%, 720px);
  max-height: 420px;
  object-fit: contain;
  margin: 1rem 0;
  border-radius: var(--radius-sm);
  background: #05070b;
}
.news-file {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-size: var(--fs-small);
}
.news-file-line { margin: 0.7rem 0 0; }
