:root {
  --bg: #F2F5F4;
  --surface: #FFFFFF;
  --surface-2: #E7EFED;
  --ink: #171B26;
  --ink-muted: #545C6B;
  --ink-faint: #8A90A0;
  --line: #D4DEDB;
  --line-strong: #B7C5C0;
  --accent: #B65C18;
  --accent-ink: #FFFFFF;
  --accent-2: #17666C;
  --good: #2E7D4F;
  --good-bg: #E4F0E5;
  --warn: #9C6A17;
  --warn-bg: #F5EBD6;
  --crit: #A43F2C;
  --crit-bg: #F5E3DD;

  --font-display: ui-serif, "Iowan Old Style", "Palatino Linotype", Georgia, "Noto Serif", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", "Roboto Mono", Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12151C; --surface: #191D26; --surface-2: #1F2430;
    --ink: #E8E6DC; --ink-muted: #A0A6B3; --ink-faint: #6B7180;
    --line: #2A2F3B; --line-strong: #3A4050;
    --accent: #D98B4A; --accent-ink: #12151C; --accent-2: #7EA3D4;
    --good: #55B37B; --good-bg: #1C2B22;
    --warn: #D9A54E; --warn-bg: #2E2717;
    --crit: #E17A61; --crit-bg: #322119;
  }
}
:root[data-theme="dark"] {
  --bg: #12151C; --surface: #191D26; --surface-2: #1F2430;
  --ink: #E8E6DC; --ink-muted: #A0A6B3; --ink-faint: #6B7180;
  --line: #2A2F3B; --line-strong: #3A4050;
  --accent: #D98B4A; --accent-ink: #12151C; --accent-2: #7EA3D4;
  --good: #55B37B; --good-bg: #1C2B22;
  --warn: #D9A54E; --warn-bg: #2E2717;
  --crit: #E17A61; --crit-bg: #322119;
}
:root[data-theme="light"] {
  --bg: #F2F5F4; --surface: #FFFFFF; --surface-2: #E7EFED;
  --ink: #171B26; --ink-muted: #545C6B; --ink-faint: #8A90A0;
  --line: #D4DEDB; --line-strong: #B7C5C0;
  --accent: #B65C18; --accent-ink: #FFFFFF; --accent-2: #17666C;
  --good: #2E7D4F; --good-bg: #E4F0E5;
  --warn: #9C6A17; --warn-bg: #F5EBD6;
  --crit: #A43F2C; --crit-bg: #F5E3DD;
}

/* CJK languages read better in a system sans at every size -- a Latin
   display serif renders inconsistently (or falls back ungracefully) for
   Japanese/Chinese headings across platforms. */
html[lang="ja"], html[lang="zh"] {
  --font-display: -apple-system, "Hiragino Sans", "Yu Gothic", "PingFang SC", "Noto Sans CJK JP", "Microsoft YaHei", sans-serif;
  --font-body: -apple-system, "Hiragino Sans", "Yu Gothic", "PingFang SC", "Noto Sans CJK JP", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

a { color: var(--accent-2); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.12; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0;
  color: var(--ink);
}
.brand-legal {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0;
  color: var(--ink-muted);
  margin-top: 1px;
}

/* Hero stats */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px;
}
.hero-stats .stat {
  flex: 1 1 160px; min-width: 150px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 8px; padding: 14px 16px; background: var(--surface);
}
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--accent-2); line-height: 1.1;
}
.stat-label {
  display: block; margin-top: 4px; font-size: 12.5px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0;
}

/* Services */
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-card {
  border: 1px solid var(--line); border-radius: 8px; padding: 26px 22px;
  background: var(--surface); transition: transform .15s, box-shadow .15s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(31,58,95,.10); }
.service-icon {
  width: 52px; height: 52px; border-radius: 8px; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 14px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}
.service-card h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 8px; }
.service-card p { color: var(--ink-muted); margin: 0; font-size: 14.5px; }

/* Products by category with clickable chips */
.cat-block { margin-top: 26px; }
.cat-title {
  font-family: var(--font-display); font-size: 20px; margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.cat-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.cat-dot-1 { background: var(--accent); }
.cat-dot-2 { background: var(--good); }
.cat-dot-3 { background: var(--accent-2); }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.product-chip {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 9px 18px; cursor: pointer; transition: all .13s;
}
.product-chip::after { content: " ＋"; color: var(--accent); font-weight: 700; }
.product-chip:hover {
  border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  transform: translateY(-1px);
}
.chip-hint { margin-top: 18px; font-size: 13px; color: var(--ink-faint); }

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
  .brand-legal { display: none; }
}
nav.primary-nav { display: flex; align-items: center; gap: 22px; }
nav.primary-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
nav.primary-nav a:hover { color: var(--ink); }
.lang-switch { position: relative; }
.lang-switch select {
  appearance: none;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0;
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 7px 26px 7px 10px;
  cursor: pointer;
}
.lang-switch::after {
  content: "▾";
  position: absolute; right: 9px; top: 50%; transform: translateY(-50%);
  font-size: 10px; color: var(--ink-faint); pointer-events: none;
}
.nav-toggle { display: none; }

@media (max-width: 760px) {
  nav.primary-nav .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border: 1px solid var(--line-strong);
    border-radius: 4px; background: var(--surface-2); color: var(--ink);
    font-size: 16px; cursor: pointer;
  }
  nav.primary-nav.open .nav-links {
    display: flex; flex-direction: column; gap: 14px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 18px 24px;
  }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 76px 0 64px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
h1.headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
  margin: 0 0 20px;
  max-width: 16ch;
}
.subhead {
  font-size: 17px; color: var(--ink-muted); max-width: 56ch; margin: 0 0 32px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  padding: 13px 22px; border-radius: 4px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 45%, transparent); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--accent); }

/* ── Section scaffolding ─────────────────────────────────── */
section { padding: 56px 0; border-top: 1px solid var(--line); }
.section-head { margin-bottom: 32px; max-width: 62ch; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(18,39,45,.58);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--cinema-brass), rgba(216,154,85,.08));
}
.section-kicker-on-dark { color: rgba(255,255,255,.62); }
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 700; margin: 0 0 10px; letter-spacing: 0;
}
.section-intro { color: var(--ink-muted); font-size: 15.5px; margin: 0; }

/* ── Products ────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 24px;
}
.product-card .swatch {
  width: 34px; height: 34px; border-radius: 6px; margin-bottom: 16px;
}
.product-card:nth-child(1) .swatch { background: color-mix(in srgb, var(--accent) 80%, var(--ink)); }
.product-card:nth-child(2) .swatch { background: color-mix(in srgb, var(--accent-2) 75%, var(--ink)); }
.product-card h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; }
.product-card p { color: var(--ink-muted); font-size: 14.5px; margin: 0; }

/* ── About / leadership ──────────────────────────────────── */
.leader-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 640px) { .leader-grid { grid-template-columns: 1fr; } }
.leader-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 18px 20px;
}
.leader-avatar {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--accent-2);
}
.leader-card .name { font-weight: 600; font-size: 14.5px; }
.leader-card .role { font-size: 12.5px; color: var(--ink-muted); }

/* ── Compliance ──────────────────────────────────────────── */
.compliance-facts {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.compliance-facts li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink);
}
.compliance-facts .check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--good-bg); color: var(--good);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.compliance-box {
  background: var(--surface-2); border: 1px dashed var(--line-strong); border-radius: 6px;
  padding: 22px 24px; font-size: 14px; color: var(--ink-muted);
}

/* ── Quote form ──────────────────────────────────────────── */
.quote-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  padding: 32px; max-width: 640px;
}
.buyer-panel { max-width: 860px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 14.5px;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 4px;
  padding: 10px 12px;
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field-error {
  color: var(--crit); font-size: 12.5px; margin-top: 5px; display: none;
}
.field.invalid input { border-color: var(--crit); }
.field.invalid .field-error { display: block; }
.form-note {
  font-size: 12.5px; color: var(--ink-faint); margin-top: 4px;
}
.form-status {
  margin-top: 16px; padding: 12px 14px; border-radius: 4px; font-size: 13.5px;
  display: none;
}
.form-status.success { display: block; color: var(--good); background: var(--good-bg); }
.form-status.error { display: block; color: var(--crit); background: var(--crit-bg); }
.form-success-actions {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(196, 149, 88, 0.32);
  background: rgba(255, 248, 238, 0.86);
}
.form-success-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-success-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-success-buttons .btn {
  min-width: 220px;
  justify-content: center;
}
.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0 20px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.55;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent-2);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; padding: 16px 4px; font-weight: 600; font-size: 15px;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 18px; color: var(--accent);
  flex-shrink: 0; transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; padding: 0 4px; color: var(--ink-muted); font-size: 14.5px; max-width: 62ch; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0; font-size: 12.5px; color: var(--ink-faint);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   VISUAL RICHNESS OVERHAUL — hero image, colored/separated section
   titles, alternating light/dark bands, scroll-reveal animations.
   ═══════════════════════════════════════════════════════════════ */

/* Hero over the branded background image */
.hero {
  position: relative; border-top: none; overflow: hidden;
  padding: 104px 0 92px;
  background:
    linear-gradient(90deg, rgba(9,16,28,.94) 0%, rgba(11,20,36,.74) 46%, rgba(14,26,46,.42) 100%),
    url("hero-bg.jpg") right center / cover no-repeat;
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { color: #EDB06A; }
.hero h1.headline { color: #FBF7EF; max-width: 19ch; }
.hero .subhead { color: rgba(246,240,231,.88); }
.hero .btn-secondary { color: #FBF7EF; border-color: rgba(246,240,231,.42); }
.hero .btn-secondary:hover { border-color: #EDB06A; background: rgba(255,255,255,.07); }

/* Hero stats — glassy on the dark hero */
.hero-stats .stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(217,139,74,.34);
  border-left: 3px solid var(--accent);
}
.hero-stats .stat-num { color: #F3CE84; }
.hero-stats .stat-label { color: rgba(246,240,231,.74); }

/* Sections: more breathing room, colored + separated titles */
section { border-top: none; padding: 74px 0; }
#services, #products, #buyers, #suppliers, #about, #compliance, #consulting, #quote, #faq, #insights { scroll-margin-top: 84px; }
.section-head { position: relative; }
h2.section-title {
  color: var(--accent-2);
  font-size: clamp(26px, 3.4vw, 34px);
  padding-top: 18px; position: relative;
}
h2.section-title::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 48px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), #EDB06A);
}
.section-intro { font-size: 16px; }

/* Alternating band backgrounds for clear separation */
.sec-light { background: var(--surface-2); }
.sec-tint  { background: color-mix(in srgb, var(--accent) 8%, var(--bg)); }
.sec-dark  { background: linear-gradient(160deg, #17454A 0%, #102F34 100%); }
.sec-dark h2.section-title { color: #FBF7EF; }
.sec-dark .section-intro { color: rgba(246,240,231,.82); }
.sec-dark .leader-card {
  background: rgba(255,255,255,.05); border-color: rgba(217,139,74,.30);
}
.sec-dark .leader-card .name { color: #FBF7EF; }
.sec-dark .leader-card .role { color: rgba(246,240,231,.72); }
.sec-dark .leader-avatar {
  background: rgba(255,255,255,.08); color: #F3CE84; border-color: rgba(217,139,74,.42);
}

/* Service cards a touch richer */
.service-icon {
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 22%, transparent), color-mix(in srgb, var(--accent-2) 16%, transparent));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* Scroll-reveal animation (JS adds .reveal then .in) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.service-card.reveal:nth-child(2) { transition-delay: .10s; }
.service-card.reveal:nth-child(3) { transition-delay: .20s; }
.cat-block.reveal:nth-child(3) { transition-delay: .08s; }
.cat-block.reveal:nth-child(4) { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { animation: none; }
}

/* ── Live market ticker (fixed bottom) + news embed ────────── */
body { padding-bottom: 0; }
.ticker-band {
  position: static; z-index: 1;
  display: flex; align-items: center; min-height: 46px;
  background: #143A3F; border-top: 2px solid var(--accent);
}
.ticker-tag {
  flex: none; padding: 0 16px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0; text-transform: uppercase;
  color: #F3CE84; white-space: nowrap;
  border-right: 1px solid rgba(217,139,74,.3);
}
.ticker-tv { flex: 1 1 auto; min-width: 0; }
.ticker-tv .tradingview-widget-container,
.ticker-tv .tradingview-widget-container__widget { width: 100%; }
.news-embed {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--surface); min-height: 320px;
}
.footer-disclaimer { color: var(--ink-faint); font-size: 11.5px; display: block; margin-top: 6px; }
@media (max-width: 640px) { .ticker-tag { display: none; } }

/* ── Nav spacing + polish (links were too tight) ───────────── */
.nav-links { display: flex; align-items: center; gap: 30px; }
nav.primary-nav { gap: 30px; }
nav.primary-nav a:not(.btn) { position: relative; padding: 4px 0; }
nav.primary-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
nav.primary-nav a:not(.btn):hover::after { transform: scaleX(1); }
@media (max-width: 760px) {
  nav.primary-nav a:not(.btn)::after { display: none; }
}

/* ── Hero background video (real Santos-port cargo ship) ────── */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,16,28,.90) 0%, rgba(11,20,36,.74) 46%, rgba(14,26,46,.58) 100%),
    linear-gradient(0deg, rgba(9,16,28,.55), rgba(9,16,28,.10));
}
.hero .wrap { position: relative; z-index: 2; }
@media (max-width: 640px) {
  .hero-video { display: none; } /* mobile: keep the static globe bg, save data */
}

/* ── Floating "Request a Quote" button (all pages) ─────────── */
.quote-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 45;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(181,101,29,.45);
  display: inline-flex; align-items: center; gap: 9px;
  transition: transform .15s, box-shadow .15s;
}
.quote-fab-icon { font-size: 16px; }
.quote-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(181,101,29,.60); }
@media (max-width: 640px) {
  .quote-fab { right: 12px; bottom: 12px; padding: 11px 16px; font-size: 13px; }
}

/* ── Commodity visual gallery (real photos, clickable → quote) ── */
.commodity-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px;
}
.commodity-card {
  position: relative; border: 0; padding: 0; cursor: pointer;
  border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface-2);
  box-shadow: 0 4px 14px rgba(31,58,95,.10);
}
.commodity-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.commodity-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(9,16,28,.80) 100%);
}
.commodity-label {
  position: absolute; left: 16px; bottom: 12px; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 21px;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.commodity-card::before {
  content: "＋"; position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-weight: 700; font-size: 16px;
  opacity: 0; transform: scale(.8); transition: all .2s ease;
}
.commodity-card:hover img { transform: scale(1.07); }
.commodity-card:hover::before { opacity: 1; transform: none; }
@media (max-width: 760px) { .commodity-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px) { .commodity-gallery { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ── Spec tag on commodity cards ───────────────────────────── */
.commodity-tag {
  position: absolute; left: 16px; bottom: 40px; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0;
  color: #F3CE84; text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,.65);
}

/* ── Product spec panel (modal) ────────────────────────────── */
.spec-modal[hidden] { display: none; }
.spec-modal {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center; padding: 0;
}
.spec-backdrop { position: absolute; inset: 0; background: rgba(9,16,28,.74); }
.spec-panel {
  position: relative; z-index: 1;
  width: 100vw; height: 100svh; overflow-y: auto;
  background: var(--surface); border: 0; border-radius: 0;
}
.spec-close {
  position: absolute; top: 10px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  border: 0; background: rgba(9,16,28,.62); color: #fff; font-size: 22px; line-height: 1;
}
.spec-close:hover { background: rgba(9,16,28,.85); }
.spec-content { padding: 0 0 24px; }
.spec-media {
  width: 100%; height: 52svh; object-fit: cover; display: block;
  border-radius: 0; background: var(--surface-2);
}
.spec-title {
  font-family: var(--font-display); font-size: 30px; margin: 24px auto 2px;
  width: min(920px, calc(100% - 48px));
  color: var(--accent-2);
}
.spec-grades {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; padding: 18px 24px 0; margin: 0 auto; max-width: 968px;
}
.spec-grade {
  border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; background: var(--bg);
}
.spec-grade-head { font-weight: 600; font-size: 14.5px; margin-bottom: 10px; color: var(--ink); }
.spec-code {
  display: inline-block; margin-right: 8px; padding: 3px 9px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
}
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.spec-table th, .spec-table td {
  text-align: left; padding: 6px 0; font-size: 13.5px;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.spec-table th { color: var(--ink-muted); font-weight: 500; width: 46%; }
.spec-table td { color: var(--ink); font-family: var(--font-mono); font-size: 12.5px; }
.spec-note { margin: 20px auto 0; width: min(920px, calc(100% - 48px)); font-size: 11.5px; color: var(--ink-faint); line-height: 1.5; }
@media (max-width: 560px) {
  .spec-media { height: 42svh; }
  .spec-title { font-size: 24px; }
  .spec-grades { grid-template-columns: 1fr; }
}

/* ── Sectors we serve ──────────────────────────────────────── */
.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sector-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 8px; padding: 22px 24px 20px;
  transition: transform .15s, box-shadow .15s;
}
.sector-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(31,58,95,.10); }
.sector-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0; color: var(--accent);
}
.sector-card h3 {
  font-family: var(--font-display); font-size: 18px; margin: 6px 0 8px; color: var(--accent-2);
}
.sector-card p { margin: 0; font-size: 14px; color: var(--ink-muted); }
.sector-note {
  margin: 22px 0 0; padding: 14px 18px; font-size: 13px; line-height: 1.6;
  color: var(--ink-muted); background: color-mix(in srgb, var(--good) 8%, transparent);
  border-left: 3px solid var(--good); border-radius: 8px;
}
@media (max-width: 640px) { .sector-grid { grid-template-columns: 1fr; } }

/* ── Suppliers: verification steps + registration form ─────── */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.step-card {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--accent-2); border-radius: 8px; padding: 20px 22px;
}
.step-card h3 {
  font-family: var(--font-display); font-size: 17px; margin: 0 0 8px; color: var(--accent-2);
}
.step-card p { margin: 0; font-size: 13.5px; color: var(--ink-muted); }
.buyer-documents {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, .55fr);
  gap: 48px;
  align-items: center;
  margin: 6px 0 30px;
  padding: 32px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.buyer-documents .media-eyebrow {
  color: var(--accent);
  margin-bottom: 8px;
}
.buyer-documents h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent-2);
}
.buyer-documents-copy > p {
  max-width: 70ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}
.document-checklist {
  list-style: none;
  margin: 20px 0 16px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.document-checklist li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 13.5px;
}
.document-checklist strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}
.document-code {
  display: flex;
  width: 48px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--accent-2);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}
.buyer-documents-copy .document-note {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
}
.buyer-documents-copy .document-security {
  margin-top: 9px;
  color: var(--good);
  font-size: 12.5px;
}
.document-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.document-actions .btn {
  width: 100%;
  text-align: center;
}
.document-actions .document-email {
  margin-top: 8px;
}
.document-actions span {
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.5;
}
.form-title {
  font-family: var(--font-display); font-size: 19px; margin: 0 0 18px; color: var(--accent-2);
}
.fraud-note {
  margin: 22px 0 0; padding: 14px 18px; font-size: 13px; line-height: 1.6;
  color: var(--ink); background: var(--crit-bg);
  border-left: 3px solid var(--crit); border-radius: 8px;
}
@media (max-width: 760px) { .step-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .buyer-documents { grid-template-columns: 1fr; gap: 22px; }
  .document-actions .btn { width: auto; }
}

/* ── Legal page ────────────────────────────────────────────── */
.legal-page { padding: 56px 0 40px; }
.legal-toc {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px;
}
.legal-toc a {
  font-size: 13px; font-weight: 600; text-decoration: none;
  color: var(--accent-2); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 14px;
}
.legal-toc a:hover { border-color: var(--accent); color: var(--accent); }
.legal-body { max-width: 74ch; }
.legal-body h2 {
  font-family: var(--font-display); font-size: 24px; color: var(--accent-2);
  margin: 40px 0 6px; padding-top: 16px; position: relative;
}
.legal-body h2::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 40px; height: 3px; border-radius: 2px; background: var(--accent);
}
.legal-body h3 {
  font-family: var(--font-display); font-size: 16.5px; margin: 26px 0 6px; color: var(--ink);
}
.legal-body p, .legal-body li { font-size: 14.5px; color: var(--ink-muted); line-height: 1.7; }
.legal-body ul { padding-left: 20px; margin: 8px 0; }
.legal-body li { margin-bottom: 7px; }
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--accent); }

/* Full-viewport commodity stories. The media is the experience, not a card. */
.trade-media { padding: 0; background: #09191B; }
.media-frame {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.media-frame > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.media-frame-image {
  background-image: var(--media-image);
  background-size: cover;
  background-position: center;
}
.media-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7,13,24,.90) 0%, rgba(7,13,24,.62) 45%, rgba(7,13,24,.12) 78%);
}
.media-shade-right {
  background: linear-gradient(270deg, rgba(7,13,24,.91) 0%, rgba(7,13,24,.60) 45%, rgba(7,13,24,.10) 78%);
}
.media-copy {
  width: min(580px, calc(100% - 48px));
  color: #FFFFFF;
  position: relative;
  margin: 0 max(24px, calc((100vw - 1040px) / 2));
  padding: 72px 0;
}
.media-copy-right { margin-left: auto; }
.media-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #F3CE84;
  margin-bottom: 14px;
}
.media-copy h2 {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 16ch;
}
.media-copy p {
  color: rgba(255,255,255,.86);
  font-size: 17px;
  max-width: 54ch;
  margin: 0 0 28px;
}
@media (max-width: 720px) {
  .media-frame { min-height: 78svh; align-items: flex-end; }
  .media-copy, .media-copy-right { margin: 0 24px; padding: 54px 0; }
  .media-copy h2 { font-size: 34px; }
  .media-copy p { font-size: 15px; }
  .media-shade, .media-shade-right {
    background: linear-gradient(0deg, rgba(7,13,24,.94) 0%, rgba(7,13,24,.55) 58%, rgba(7,13,24,.12) 100%);
  }
}

/* Consultation is an unframed operational band. */
.consulting-band {
  background: #10263E;
  color: #FFFFFF;
}
.consulting-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}
.consulting-band h2 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.12;
  margin: 0 0 14px;
}
.consulting-band p { color: rgba(255,255,255,.78); font-size: 16px; margin: 0; }
.consulting-actions ul { margin: 0 0 24px; padding-left: 20px; }
.consulting-actions li { margin: 9px 0; color: rgba(255,255,255,.86); }
@media (max-width: 760px) {
  .consulting-layout { grid-template-columns: 1fr; gap: 28px; }
  .consulting-band h2 { font-size: 31px; }
}

/* Source-backed market intelligence. */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.insight-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}
.insight-card > span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
}
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  margin: 10px 0;
}
.insight-card p { color: var(--ink-muted); font-size: 14px; }
.insight-card a { font-size: 13px; font-weight: 700; }
.insight-note { margin: 20px 0 0; font-size: 12.5px; color: var(--ink-faint); }
@media (max-width: 820px) {
  .insight-grid { grid-template-columns: 1fr; }
}

/* Full-site visual system */
body {
  background: #F4F5F1;
  color: #151A1A;
}

.wrap { max-width: 1180px; padding-inline: 34px; }

.topbar {
  background: rgba(248,249,246,.94);
  border-color: rgba(20,31,32,.12);
}

.hero {
  min-height: 76svh;
  display: flex;
  align-items: center;
  padding: 56px 0 48px;
  background: #102227;
}

.hero .wrap { width: 100%; }
.hero h1.headline { font-size: clamp(40px, 4.8vw, 62px); max-width: 20ch; }
.hero .subhead { font-size: 18px; max-width: 61ch; }
.hero-stats {
  max-width: 760px;
  border-top: 1px solid rgba(255,255,255,.25);
  gap: 0;
}
.hero-stats .stat {
  min-width: 0;
  padding: 18px 24px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.operations-stage {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
  background: #173039 var(--stage-image) center / cover no-repeat;
}
.stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,27,32,.82) 0%, rgba(10,27,32,.58) 52%, rgba(10,27,32,.30) 100%),
    linear-gradient(0deg, rgba(10,27,32,.26), transparent 48%);
}
.proof-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-bottom: 62px;
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.proof-strip .stat {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 12px;
  padding: 19px 24px 19px 0;
  border-right: 1px solid rgba(255,255,255,.22);
}
.proof-strip .stat + .stat { padding-left: 24px; }
.proof-strip .stat:last-child { border-right: 0; }
.proof-strip .stat-num {
  color: #F3CE84;
  font: 700 15px/1 var(--font-mono);
}
.proof-strip .stat-label {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.operations-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: 78px;
  align-items: start;
}
.section-head-on-dark h2.section-title { color: #FFFFFF; }
.section-head-on-dark .section-intro { color: rgba(255,255,255,.76); }
.section-head-on-dark h2.section-title::before { background: #D68B48; }
.service-ledger { border-top: 1px solid rgba(255,255,255,.28); }
.service-line {
  display: grid;
  grid-template-columns: 56px minmax(0,1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.service-number {
  font: 700 12px/1 var(--font-mono);
  color: #E9B675;
  padding-top: 6px;
}
.service-line h3 {
  margin: 0 0 7px;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 21px;
}
.service-line p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }

.product-index-band {
  background: #F4F5F1;
  padding-block: 84px 72px;
}
.product-index-band .section-head { max-width: 70ch; }
.product-jump {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid #BFC8C4;
}
.product-jump a {
  display: block;
  padding: 17px 0;
  color: #263334;
  border-bottom: 1px solid #BFC8C4;
  text-decoration: none;
  font: 700 13px/1.2 var(--font-mono);
}
.product-jump a:hover { color: #A74F16; }

.product-stories {
  padding: 0;
  background: #1B3239;
}
.product-stories > .wrap {
  max-width: none;
  padding: 0;
}
.product-stories > .wrap > .section-head { display: none; }
.product-stories .commodity-gallery {
  display: block;
  margin: 0;
}
.product-stories .commodity-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100svh - 76px);
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  scroll-margin-top: 76px;
  text-align: left;
  isolation: isolate;
}
.product-stories .commodity-card > img,
.product-stories .commodity-card > video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.product-stories .commodity-card::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10,28,32,.62) 0%, rgba(10,28,32,.24) 47%, rgba(10,28,32,.04) 76%),
    linear-gradient(0deg, rgba(10,28,32,.18), transparent 54%);
}
.product-stories .commodity-card:nth-child(even)::after {
  background:
    linear-gradient(270deg, rgba(10,28,32,.62) 0%, rgba(10,28,32,.24) 47%, rgba(10,28,32,.04) 76%),
    linear-gradient(0deg, rgba(10,28,32,.18), transparent 54%);
}
.product-stories .commodity-card::before { display: none; }
.product-stories .commodity-card:hover > img,
.product-stories .commodity-card:hover > video { transform: scale(1.025); }
.product-stories .commodity-label,
.product-stories .commodity-tag,
.product-stories .commodity-action {
  left: max(34px, calc((100vw - 1112px) / 2));
  right: auto;
  z-index: 2;
}
.product-stories .commodity-card:nth-child(even) .commodity-label,
.product-stories .commodity-card:nth-child(even) .commodity-tag,
.product-stories .commodity-card:nth-child(even) .commodity-action {
  left: auto;
  right: max(34px, calc((100vw - 1112px) / 2));
  text-align: right;
}
.product-stories .commodity-label {
  bottom: 29%;
  font-size: clamp(44px,7vw,88px);
  line-height: .96;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.product-stories .commodity-tag {
  bottom: calc(29% + clamp(56px,8vw,104px));
  color: #F2C986;
  font-size: 13px;
  font-weight: 700;
}
.commodity-action {
  position: absolute;
  bottom: calc(29% - 64px);
  display: inline-flex;
  width: max-content;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.58);
  color: #FFFFFF;
  font: 700 13px/1 var(--font-body);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.product-stories .commodity-card:nth-child(even) .commodity-action {
  width: max-content;
  margin-left: auto;
}
.product-stories .cat-block,
.product-stories .chip-hint {
  width: min(1112px, calc(100% - 68px));
  margin-inline: auto;
}
.product-stories .cat-block {
  margin-top: 0;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: #FFFFFF;
}
.product-stories .cat-block:first-of-type { padding-top: 72px; }
.product-stories .cat-title { color: #F3CE84; }
.product-stories .product-chip {
  color: rgba(255,255,255,.84);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  background: transparent;
  padding: 9px 2px;
}
.product-stories .product-chip:hover { color: #FFFFFF; background: transparent; border-color: #D98B4A; }
.product-stories .chip-hint { color: rgba(255,255,255,.56); padding: 20px 0 68px; margin-top: 0; }

#sectors {
  background: #E9EEEA;
  padding-block: 96px;
}
.sector-grid {
  gap: 0;
  border-top: 1px solid #AFBCB7;
}
.sector-card {
  border: 0;
  border-bottom: 1px solid #AFBCB7;
  border-radius: 0;
  background: transparent;
  padding: 28px 26px 28px 0;
  box-shadow: none;
}
.sector-card:nth-child(even) { padding-left: 32px; border-left: 1px solid #AFBCB7; }
.sector-card:hover { transform: none; box-shadow: none; }
.sector-note {
  margin-top: 34px;
  padding: 0 0 0 18px;
  background: transparent;
  border-radius: 0;
}

#buyers {
  position: relative;
  color: #FFFFFF;
  background:
    linear-gradient(90deg, rgba(6,18,23,.97), rgba(6,18,23,.82)),
    url("operations-port.webp") center / cover no-repeat;
  padding-block: 100px;
}
#buyers h2.section-title,
#buyers .step-card h3,
#buyers .buyer-documents h3,
#buyers .document-checklist strong { color: #FFFFFF; }
#buyers .section-intro,
#buyers .step-card p,
#buyers .buyer-documents-copy > p,
#buyers .document-checklist,
#buyers .document-actions span { color: rgba(255,255,255,.7); }
#buyers .step-grid {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.25);
}
#buyers .step-card {
  border: 0;
  border-right: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  background: transparent;
  padding: 24px 26px 24px 0;
}
#buyers .step-card + .step-card { padding-left: 26px; }
#buyers .buyer-documents {
  border-color: rgba(255,255,255,.28);
}
#buyers .document-checklist,
#buyers .document-checklist li { border-color: rgba(255,255,255,.2); }
#buyers .document-code { background: #B45B1B; }
#buyers .btn-secondary { color: #FFFFFF; border-color: rgba(255,255,255,.5); }

#about {
  min-height: 68svh;
  display: flex;
  align-items: center;
  background: #183B36;
}
#about .wrap { width: 100%; }
#about .leader-grid {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.26);
}
#about .leader-card {
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.26);
  border-radius: 0;
  background: transparent;
  padding: 24px 0;
}

#compliance {
  min-height: 72svh;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  background:
    linear-gradient(90deg, rgba(12,20,23,.94) 0%, rgba(12,20,23,.74) 58%, rgba(12,20,23,.40) 100%),
    url("product-iron.webp") center / cover no-repeat;
}
#compliance .wrap { width: 100%; }
#compliance h2.section-title { color: #FFFFFF; }
#compliance .section-intro { color: rgba(255,255,255,.75); }
#compliance .compliance-facts { max-width: 720px; }
#compliance .compliance-facts li { color: #FFFFFF; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
#compliance .compliance-box {
  max-width: 720px;
  color: rgba(255,255,255,.7);
  border: 0;
  border-left: 3px solid #D98B4A;
  border-radius: 0;
  background: rgba(7,20,25,.45);
}

.consulting-band {
  min-height: 72svh;
  display: flex;
  align-items: center;
  background: #132D43;
}

#quote,
#suppliers {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
  background-color: #F5F6F2;
  background-repeat: no-repeat;
  background-size: min(44vw, 760px) auto;
  background-position: right center;
}
#quote { background-image: linear-gradient(rgba(255,255,255,.10),rgba(255,255,255,.10)), url("sugar-premium-20260729.png"); }
#suppliers {
  background-image: linear-gradient(rgba(255,255,255,.14),rgba(255,255,255,.14)), url("hero-ship-poster.jpg");
  background-position: right 42%;
}
#quote .wrap,
#suppliers .wrap { padding-right: calc(46% + 54px); }
#suppliers .step-grid {
  gap: 0;
  border-top: 1px solid #B9C2BE;
}
#suppliers .step-card {
  border: 0;
  border-right: 1px solid #B9C2BE;
  border-radius: 0;
  background: transparent;
  padding: 24px 26px 24px 0;
}
#suppliers .step-card + .step-card { padding-left: 26px; }
#suppliers .step-card:last-child { border-right: 0; }
.quote-panel {
  max-width: none;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid #B9C2BE;
  border-radius: 0;
  background: transparent;
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,.76);
  border-color: #AEBBB6;
}

#faq { background: #FFFFFF; padding-block: 92px; }
.faq-list { max-width: 900px; }

#insights { background: #E7ECE8; padding-block: 96px; }
.insight-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #B4BFBA;
}
.insight-card {
  display: grid;
  grid-template-columns: 150px minmax(220px,.8fr) minmax(300px,1.2fr) 150px;
  gap: 24px;
  align-items: baseline;
  border: 0;
  border-bottom: 1px solid #B4BFBA;
  border-radius: 0;
  background: transparent;
  padding: 26px 0;
}
.insight-card h3,
.insight-card p { margin: 0; }

.spec-panel { background: #F5F6F2; overflow: hidden; }
.spec-content {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(430px,.85fr);
  min-height: 100svh;
  padding: 0;
}
.spec-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #102227;
}
.spec-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,15,20,.82), transparent 54%);
  pointer-events: none;
}
.spec-media { width: 100%; height: 100%; object-fit: cover; }
.spec-title {
  position: absolute;
  z-index: 1;
  left: 42px;
  bottom: 38px;
  width: auto;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(40px,5vw,70px);
}
.spec-details {
  height: 100svh;
  overflow-y: auto;
  padding: 72px 42px 42px;
}
.spec-grades {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
}
.spec-grade {
  padding: 24px 0 30px;
  border: 0;
  border-bottom: 1px solid #B8C3BE;
  border-radius: 0;
  background: transparent;
}
.spec-grade:first-child { padding-top: 0; }
.spec-grade-head { font-size: 15px; }
.spec-note { width: auto; margin: 28px 0 0; }
.spec-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  z-index: 5;
}

@media (max-width: 900px) {
  .operations-layout { grid-template-columns: 1fr; gap: 36px; }
  .operations-stage { min-height: auto; padding-block: 88px; }
  .proof-strip { margin-bottom: 46px; }
  .product-jump { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-stories .commodity-card { min-height: 80svh; }
  #quote,
  #suppliers { background-image: none; }
  #quote .wrap,
  #suppliers .wrap { padding-right: 34px; }
  .insight-card { grid-template-columns: 120px 1fr; }
  .insight-card p,
  .insight-card a { grid-column: 2; }
  .spec-content { grid-template-columns: 1fr; display: block; overflow-y: auto; height: 100svh; }
  .spec-panel { overflow-y: auto; }
  .spec-visual { position: relative; height: 48svh; }
  .spec-details { height: auto; overflow: visible; padding: 34px 26px 52px; }
  .spec-title { left: 26px; bottom: 24px; }
}

@media (max-width: 640px) {
  .wrap { padding-inline: 22px; }
  .hero { min-height: 82svh; padding-block: 66px 48px; }
  .hero-video { display: block; }
  .hero h1.headline { font-size: 39px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip .stat,
  .proof-strip .stat + .stat {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .proof-strip .stat:last-child { border-bottom: 0; }
  .operations-stage { background-position: 62% center; }
  .product-index-band { padding-block: 64px 52px; }
  .product-jump { grid-template-columns: 1fr 1fr; }
  .product-jump a { font-size: 11px; }
  .product-stories .commodity-card { min-height: 74svh; }
  .product-stories .commodity-card::after,
  .product-stories .commodity-card:nth-child(even)::after {
    background: linear-gradient(0deg, rgba(4,13,18,.94) 0%, rgba(4,13,18,.62) 58%, rgba(4,13,18,.12) 100%);
  }
  .product-stories .commodity-label,
  .product-stories .commodity-tag,
  .product-stories .commodity-action,
  .product-stories .commodity-card:nth-child(even) .commodity-label,
  .product-stories .commodity-card:nth-child(even) .commodity-tag,
  .product-stories .commodity-card:nth-child(even) .commodity-action {
    left: 22px;
    right: auto;
    text-align: left;
  }
  .product-stories .commodity-label { bottom: 26%; font-size: 48px; }
  .product-stories .commodity-tag { bottom: calc(26% + 62px); font-size: 11px; }
  .commodity-action { bottom: calc(26% - 58px); }
  .product-stories .cat-block,
  .product-stories .chip-hint { width: calc(100% - 44px); }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card:nth-child(even) { padding-left: 0; border-left: 0; }
  #buyers .step-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  #buyers .step-card + .step-card { padding-left: 0; }
  #suppliers .step-card { border-right: 0; border-bottom: 1px solid #B9C2BE; }
  #suppliers .step-card + .step-card { padding-left: 0; }
  .leader-grid { grid-template-columns: 1fr; }
  .insight-card { grid-template-columns: 1fr; gap: 8px; }
  .insight-card p,
  .insight-card a { grid-column: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   CINEMATIC SYSTEM V2 — editorial chapters, film framing and
   restrained depth. Appended as the authoritative visual layer.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cinema-ink: #071214;
  --cinema-deep: #08191d;
  --cinema-forest: #12352f;
  --cinema-paper: #f2f0e9;
  --cinema-brass: #d89a55;
  --cinema-brass-soft: #f1c989;
  --scroll-progress: 0;
}

body.cinematic-site {
  overflow-x: clip;
  background: var(--cinema-ink);
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 10px 14px;
  color: #071214;
  background: #f1c989;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.cinema-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 2px;
  pointer-events: none;
  background: rgba(255,255,255,.08);
}
.cinema-progress span {
  display: block;
  width: calc(var(--scroll-progress) * 100%);
  height: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, #b96324, var(--cinema-brass-soft));
  box-shadow: 0 0 16px rgba(216,154,85,.55);
}

.cinema-grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .032;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, #fff 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 79% 67%, #000 0 1px, transparent 1px 5px);
  background-size: 13px 17px, 19px 23px;
}

.scene-indicator {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 48;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .08em;
  transform: translateY(-50%);
  mix-blend-mode: difference;
  pointer-events: none;
}
.scene-indicator-line {
  width: 1px;
  height: 72px;
  background: linear-gradient(#fff, rgba(255,255,255,.16));
}
.scene-indicator-current { color: var(--cinema-brass-soft); font-size: 12px; }

.cinematic-site .topbar {
  position: fixed;
  inset: 2px 0 auto;
  z-index: 80;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(3,12,15,.72), rgba(3,12,15,.08));
  backdrop-filter: none;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.cinematic-site .topbar.is-scrolled {
  border-color: rgba(255,255,255,.13);
  background: rgba(4,17,20,.88);
  backdrop-filter: blur(18px) saturate(125%);
}
.cinematic-site .topbar-inner { padding-block: 12px; transition: padding .35s ease; }
.cinematic-site .topbar.is-scrolled .topbar-inner { padding-block: 8px; }
.cinematic-site .brand-name,
.cinematic-site .topbar nav.primary-nav a:not(.btn) { color: #fff; }
.cinematic-site .brand-legal { color: rgba(255,255,255,.58); letter-spacing: .04em; }
.cinematic-site .brand-mark {
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 8px 30px rgba(0,0,0,.26);
}
.cinematic-site .lang-switch select,
.cinematic-site .nav-toggle {
  color: #fff;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
}
.cinematic-site .lang-switch::after { color: rgba(255,255,255,.62); }
.cinematic-site .topbar nav.primary-nav a:not(.btn)::after {
  height: 1px;
  background: var(--cinema-brass-soft);
}

.cinematic-section { position: relative; }
.cinematic-section:not(.hero)::before {
  content: attr(data-chapter);
  position: absolute;
  top: 28px;
  right: max(34px, calc((100vw - 1112px) / 2));
  z-index: 4;
  color: var(--cinema-brass);
  font: 700 11px/1 var(--font-mono);
  letter-spacing: .12em;
  opacity: .82;
  pointer-events: none;
}

.hero {
  --hero-media-y: 0px;
  min-height: 100svh;
  padding: 132px 0 74px;
  align-items: center;
  isolation: isolate;
  background: #102228 url("hero-ship-poster.jpg") center / cover no-repeat;
}
.hero-video {
  inset: -5%;
  width: 110%;
  height: 110%;
  z-index: -4;
  transform: translate3d(0, var(--hero-media-y), 0) scale(1.055);
  filter: saturate(.86) contrast(1.03) brightness(1.08);
  will-change: transform;
}
.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7,20,24,.82) 0%, rgba(7,20,24,.56) 43%, rgba(7,20,24,.18) 76%),
    linear-gradient(0deg, rgba(7,20,24,.52) 0%, transparent 44%),
    linear-gradient(180deg, rgba(7,20,24,.34) 0%, transparent 30%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  box-shadow: inset 0 0 140px rgba(0,0,0,.26);
  background: linear-gradient(90deg, rgba(216,154,85,.08) 1px, transparent 1px);
  background-size: calc((100vw - min(1180px,100vw)) / 2 + 34px) 100%;
  opacity: .65;
}
.hero .wrap {
  display: flex;
  min-height: calc(100svh - 206px);
  align-items: center;
}
.hero-copy {
  position: relative;
  width: min(900px, 86vw);
  padding-left: clamp(0px, 4vw, 58px);
}
.hero-stage {
  position: relative;
  z-index: 2;
  width: min(40vw, 480px);
  min-width: 320px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  perspective: 1600px;
}
.hero-stage-core {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(calc(var(--hero-stage-tilt-y, 0) * 1deg)) rotateY(calc(var(--hero-stage-tilt-x, 0) * 1deg));
  transition: transform .25s ease-out;
}
.hero-stage-panel,
.hero-stage-glow,
.hero-stage-orb,
.hero-stage-grid {
  position: absolute;
  inset: 0;
  border-radius: 34px;
}
.hero-stage-panel {
  border: 1px solid rgba(241,201,137,.24);
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(7,22,27,.82), rgba(7,22,27,.5));
  box-shadow: 0 34px 90px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.15);
  backdrop-filter: blur(18px);
}
.hero-stage-panel-back {
  inset: 12% 10% 16% 14%;
  transform: translate3d(-36px, -18px, -160px) rotate(-9deg);
  opacity: .34;
}
.hero-stage-panel-mid {
  inset: 6% 7% 10% 9%;
  transform: translate3d(-12px, 4px, -70px) rotate(-4deg);
  opacity: .56;
}
.hero-stage-panel-front {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px 34px;
  overflow: hidden;
}
.hero-stage-panel-front::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(216,154,85,.22), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(57,121,128,.24), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 46%);
}
.hero-stage-kicker,
.hero-stage-title,
.hero-stage-line {
  position: relative;
  z-index: 1;
}
.hero-stage-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(241,201,137,.26);
  background: rgba(9,23,27,.44);
  color: rgba(241,201,137,.88);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .18em;
}
.hero-stage-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: .95;
  letter-spacing: -.05em;
  color: #f8f1e7;
  margin-bottom: 26px;
}
.hero-stage-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(241,201,137,.72), rgba(255,255,255,.08));
  box-shadow: 0 0 24px rgba(216,154,85,.12);
}
.hero-stage-line-1 { width: 72%; }
.hero-stage-line-2 { width: 58%; }
.hero-stage-line-3 { width: 84%; }
.hero-stage-glow {
  border-radius: 999px;
  filter: blur(24px);
  opacity: .52;
}
.hero-stage-glow-a {
  inset: 8% auto auto 18%;
  width: 120px;
  height: 44px;
  background: radial-gradient(circle at center, rgba(216,154,85,.42), rgba(216,154,85,0));
  transform: translate3d(0, 0, 30px) rotate(-12deg);
}
.hero-stage-glow-b {
  inset: auto 10% 18% auto;
  width: 148px;
  height: 54px;
  background: radial-gradient(circle at center, rgba(72,142,152,.30), rgba(72,142,152,0));
  transform: translate3d(0, 0, 18px) rotate(16deg);
}
.hero-stage-orb {
  border-radius: 999px;
  filter: blur(2px);
}
.hero-stage-orb-a {
  inset: auto auto 14% -2%;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,.94), rgba(216,154,85,.78) 34%, rgba(216,154,85,.08) 74%);
  transform: translate3d(0, 0, 40px);
  box-shadow: 0 18px 60px rgba(216,154,85,.22);
}
.hero-stage-orb-b {
  inset: 12% -4% auto auto;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,.84), rgba(67,145,153,.72) 36%, rgba(67,145,153,.06) 72%);
  transform: translate3d(0, 0, 90px);
  box-shadow: 0 16px 44px rgba(67,145,153,.22);
}
.hero-stage-grid {
  inset: 8% 6%;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.36), transparent 90%);
  opacity: .36;
  transform: translate3d(0, 0, -20px);
}
.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1px;
  height: min(100%, 340px);
  background: linear-gradient(var(--cinema-brass-soft), rgba(255,255,255,.08));
}
.chapter-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.68);
  font: 700 10px/1.35 var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.chapter-kicker span { color: var(--cinema-brass-soft); }
.chapter-kicker i {
  width: 62px;
  height: 1px;
  background: rgba(255,255,255,.34);
}
.chapter-kicker b { max-width: 58ch; font-weight: 700; }
.hero h1.headline {
  max-width: 15ch;
  margin-bottom: 26px;
  color: #faf7ef;
  font-size: clamp(50px, 7.2vw, 94px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
  text-shadow: 0 8px 42px rgba(0,0,0,.28);
}
.hero .subhead {
  max-width: 62ch;
  margin-bottom: 38px;
  color: rgba(255,255,255,.76);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}
.hero .cta-row { gap: 12px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color: rgba(255,255,255,.72);
  font: 600 11px/1.2 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--cinema-brass-soft);
  box-shadow: 0 0 10px rgba(241,201,137,.62);
}
.hero .btn {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 0;
  letter-spacing: .02em;
}
.hero .btn-primary {
  background: var(--cinema-brass);
  color: #0a1516;
}
.hero .btn-secondary {
  border-color: rgba(255,255,255,.42);
  background: rgba(3,12,16,.18);
  backdrop-filter: blur(8px);
}
.hero-coordinate {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  gap: 22px;
  color: rgba(255,255,255,.48);
  font: 600 9px/1 var(--font-mono);
  letter-spacing: .15em;
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  width: 32px;
  height: 56px;
  transform: translateX(-50%);
}
.hero-scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.24);
}
.hero-scroll-cue span {
  position: absolute;
  left: calc(50% - 2px);
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cinema-brass-soft);
  box-shadow: 0 0 12px rgba(241,201,137,.75);
  animation: cinema-scroll-cue 2.3s cubic-bezier(.45,0,.25,1) infinite;
}
@keyframes cinema-scroll-cue {
  0% { transform: translateY(0); opacity: 0; }
  18% { opacity: 1; }
  78% { opacity: 1; }
  100% { transform: translateY(50px); opacity: 0; }
}

.reveal {
  transform: translateY(34px);
  filter: blur(3px);
  transition:
    opacity .85s ease var(--reveal-delay, 0ms),
    transform .9s cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms),
    filter .85s ease var(--reveal-delay, 0ms);
}
.reveal.in { transform: none; filter: none; }

.operations-stage {
  min-height: 100svh;
  background-attachment: fixed;
}
.stage-shade {
  background:
    linear-gradient(90deg, rgba(2,13,16,.96) 0%, rgba(2,13,16,.76) 54%, rgba(2,13,16,.38) 100%),
    linear-gradient(0deg, rgba(2,13,16,.62), transparent 52%);
}
.proof-strip { border-color: rgba(241,201,137,.32); }
.proof-strip .stat { border-color: rgba(255,255,255,.15); }
.proof-strip .stat-num { color: var(--cinema-brass-soft); }
.proof-strip {
  background: linear-gradient(180deg, rgba(4,18,21,.42), rgba(4,18,21,.18));
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.service-line {
  position: relative;
  overflow: hidden;
  transition: padding-left .35s ease, background .35s ease;
}
.service-line::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cinema-brass), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.service-line:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(216,154,85,.08), transparent); }
.service-line:hover::after { transform: scaleX(1); }

.product-index-band {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,25,29,.035) 1px, transparent 1px),
    var(--cinema-paper);
  background-size: 25% 100%;
}
.product-index-band .section-head,
.section-head.section-head-on-dark {
  position: relative;
}
.product-index-band .section-head::after,
.section-head.section-head-on-dark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: min(180px, 42%);
  height: 1px;
  background: linear-gradient(90deg, var(--cinema-brass), transparent);
}
.product-index-band h2.section-title {
  max-width: 12ch;
  color: #112d2d;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.035em;
}
.product-jump a {
  position: relative;
  padding: 20px 14px 20px 0;
  transition: padding-left .25s ease, color .25s ease;
}
.product-jump a::after {
  content: "↗";
  position: absolute;
  right: 14px;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.product-jump a:hover { padding-left: 10px; }
.product-jump a:hover::after { opacity: 1; transform: translate(3px,-3px); }

.product-stories .commodity-card {
  --media-y: 0px;
  min-height: 96svh;
}
.product-stories .commodity-card > img,
.product-stories .commodity-card > video {
  inset: -7% 0;
  width: 100%;
  height: 114%;
  transform: translate3d(0, var(--media-y), 0) scale(1.035);
  filter: saturate(.82) contrast(1.05);
  will-change: transform;
}
.product-stories .commodity-card:hover > img,
.product-stories .commodity-card:hover > video {
  transform: translate3d(0, var(--media-y), 0) scale(1.065);
}
.product-stories .commodity-card::before {
  content: attr(data-reel);
  position: absolute;
  top: 34px;
  right: max(34px, calc((100vw - 1112px) / 2));
  z-index: 3;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,.7);
  background: transparent;
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .14em;
  opacity: 1;
  transform: none;
}
.product-stories .commodity-card:nth-child(even)::before {
  right: auto;
  left: max(34px, calc((100vw - 1112px) / 2));
}
.product-stories .commodity-card::after {
  background:
    linear-gradient(90deg, rgba(2,11,14,.94) 0%, rgba(2,11,14,.58) 46%, rgba(2,11,14,.08) 76%),
    linear-gradient(0deg, rgba(2,11,14,.72) 0%, transparent 58%);
}
.product-stories .commodity-card:nth-child(even)::after {
  background:
    linear-gradient(270deg, rgba(2,11,14,.94) 0%, rgba(2,11,14,.58) 46%, rgba(2,11,14,.08) 76%),
    linear-gradient(0deg, rgba(2,11,14,.72) 0%, transparent 58%);
}
.product-stories .commodity-label {
  bottom: 27%;
  font-size: clamp(54px, 8vw, 106px);
  font-weight: 500;
  letter-spacing: -.045em;
}
.product-stories .commodity-tag {
  bottom: calc(27% + clamp(68px, 9vw, 122px));
  letter-spacing: .16em;
}
.commodity-action {
  bottom: calc(27% - 70px);
  border-color: rgba(241,201,137,.46);
  background: rgba(2,11,14,.34);
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.commodity-card:hover .commodity-action {
  color: #091719;
  border-color: var(--cinema-brass-soft);
  background: var(--cinema-brass-soft);
}
.product-stories .cat-block {
  border-color: rgba(241,201,137,.2);
  background: #07171a;
}

.opportunity-board[hidden] { display: none; }
.opportunity-board {
  background:
    radial-gradient(circle at 86% 12%, rgba(216,154,85,.14), transparent 34%),
    var(--cinema-paper);
}
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.opportunity-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(32,55,52,.2);
  background: rgba(255,255,255,.58);
}
.opportunity-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.opportunity-type { color: var(--cinema-brass); }
.opportunity-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}
.opportunity-spec { min-height: 3.2em; color: var(--ink-muted); }
.opportunity-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 30px;
}
.opportunity-card dl div {
  padding-top: 10px;
  border-top: 1px solid rgba(32,55,52,.16);
}
.opportunity-card dt {
  color: var(--ink-muted);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.opportunity-card dd { margin: 5px 0 0; font-weight: 600; }
.opportunity-card .btn { align-self: flex-start; margin-top: auto; }
.opportunity-disclaimer {
  max-width: 78ch;
  margin: 26px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

#sectors { background: var(--cinema-paper); }
.sector-card { transition: padding-left .3s ease, background .3s ease; }
.sector-card:hover {
  padding-left: 18px;
  background: rgba(216,154,85,.07);
}
.sector-card:nth-child(even):hover { padding-left: 46px; }

#buyers {
  min-height: 100svh;
  background-attachment: fixed;
}
#about { min-height: 82svh; background: linear-gradient(135deg, #12352f, #071c1f); }
#compliance {
  min-height: 88svh;
  background-attachment: fixed;
}
.consulting-band { min-height: 82svh; background: linear-gradient(125deg, #102a35, #0a1c27 58%, #17352f); }

#quote,
#suppliers { background-color: var(--cinema-paper); }
.quote-panel { position: relative; }
.field input,
.field select,
.field textarea {
  border: 0;
  border-bottom: 1px solid #8fa09a;
  border-radius: 0;
  background: rgba(255,255,255,.44);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--cinema-brass);
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 -1px var(--cinema-brass);
}
.cinematic-site .btn { border-radius: 0; }
.quote-fab {
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(241,201,137,.55);
  border-radius: 0;
  background: rgba(7,23,26,.88);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
}
.quote-fab:hover {
  color: #091719;
  background: var(--cinema-brass-soft);
  box-shadow: 0 12px 36px rgba(0,0,0,.36);
}

.cinematic-site footer {
  max-width: none;
  padding: 34px max(34px, calc((100vw - 1112px) / 2));
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.12);
  background: #061417;
}
.cinematic-site footer a { color: rgba(255,255,255,.72); }

@media (max-width: 900px) {
  .scene-indicator { display: none; }
  .hero-copy { padding-left: 30px; }
  .hero-stage { width: min(42vw, 380px); min-width: 260px; }
  .hero h1.headline { max-width: 16ch; font-size: clamp(46px, 10vw, 78px); }
  .operations-stage,
  #buyers,
  #compliance { background-attachment: scroll; }
  .cinematic-section:not(.hero)::before { right: 22px; }
}

@media (max-width: 760px) {
  .cinematic-site .topbar { background: rgba(4,17,20,.88); backdrop-filter: blur(16px); }
  .cinematic-site nav.primary-nav.open .nav-links {
    background: rgba(4,17,20,.97);
    border-color: rgba(255,255,255,.12);
  }
  .hero { padding-top: 116px; }
  .hero .wrap {
    min-height: calc(100svh - 190px);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding-bottom: 58px;
  }
  .hero-copy { width: 100%; }
  .hero-stage {
    width: 100%;
    min-width: 0;
    max-width: 420px;
    height: 260px;
    aspect-ratio: auto;
    margin: 0 auto 28px;
    order: -1;
    flex: 0 0 auto;
  }
  .hero-coordinate { display: none; }
  .hero-scroll-cue { left: auto; right: 22px; transform: none; }
  .product-stories .commodity-card { min-height: 78svh; }
  .opportunity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cinema-grain { opacity: .022; }
  .brand-mark { width: 40px; height: 40px; }
  .hero {
    min-height: 100svh;
    padding-block: 102px 28px;
    background:
      linear-gradient(0deg, rgba(3,12,16,.88), rgba(3,12,16,.22)),
      url("hero-ship-poster.jpg") 60% center / cover no-repeat;
  }
  .hero-video { display: none; }
  .hero .wrap { min-height: calc(100svh - 130px); padding-bottom: 72px; }
  .hero-stage {
    max-width: 100%;
    height: 220px;
    margin-bottom: 24px;
  }
  .hero-stage-panel-front { padding: 28px 24px; }
  .hero-stage-title { font-size: 34px; margin-bottom: 20px; }
  .hero-copy { padding-left: 20px; }
  .hero-copy::before { height: 100%; }
  .chapter-kicker { align-items: flex-start; margin-bottom: 20px; font-size: 9px; }
  .chapter-kicker i { width: 26px; margin-top: 5px; }
  .chapter-kicker b { max-width: 30ch; }
  .hero h1.headline { font-size: clamp(42px, 13.5vw, 62px); line-height: 1; }
  .hero .subhead { font-size: 14.5px; line-height: 1.62; }
  .hero .cta-row { display: grid; grid-template-columns: 1fr; }
  .hero-trust { gap: 10px; }
  .hero-trust span { width: 100%; justify-content: flex-start; }
  .hero .btn { justify-content: center; }
  .product-index-band h2.section-title { font-size: 46px; }
  .product-stories .commodity-card > img,
  .product-stories .commodity-card > video {
    inset: 0;
    height: 100%;
    transform: none;
  }
  .product-stories .commodity-card:hover > img,
  .product-stories .commodity-card:hover > video { transform: scale(1.02); }
  .product-stories .commodity-card::before,
  .product-stories .commodity-card:nth-child(even)::before {
    top: 22px;
    left: 22px;
    right: auto;
  }
  .product-stories .commodity-label { bottom: 27%; font-size: 54px; }
  .product-stories .commodity-tag { bottom: calc(27% + 68px); }
  .commodity-action { bottom: calc(27% - 62px); }
  .opportunity-card { min-height: 0; }
  .opportunity-card dl { grid-template-columns: 1fr; }
  .sector-card:nth-child(even):hover { padding-left: 14px; }
  .quote-fab { display: none; }
  .cinematic-site footer { padding-inline: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-progress span,
  .topbar,
  .topbar-inner,
  .service-line,
  .product-jump a,
  .product-stories .commodity-card > img,
  .product-stories .commodity-card > video,
  .commodity-action,
  .sector-card,
  .reveal {
    transition: none !important;
  }
  .hero-scroll-cue span { animation: none; top: 26px; }
  .hero-video,
  .product-stories .commodity-card > img,
  .product-stories .commodity-card > video {
    transform: none !important;
  }
  .hero-stage-core { transform: none !important; }
  .reveal { opacity: 1; filter: none; transform: none; }
}
