/* =========================
   Variables
========================= */
:root {
  --ink: #07131f;
  --ink-2: #0b1c2a;
  --ink-3: #10283a;
  --paper: #f3f1ea;
  --white: #ffffff;
  --muted: #a7b4bd;
  --body: #4e5a61;
  --gold: #d7b35d;
  --gold-light: #ead59c;
  --teal: #64c1b1;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(7, 19, 31, 0.16);
  --radius: 2px;
  --header-height: 90px;
  --shadow: 0 28px 70px rgba(5, 15, 24, 0.16);
  --container: 1240px;
  --container-wide: 1420px;
}

/* =========================
   Reset & Base
========================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 64px), var(--container-wide)); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }
.section-kicker,
.eyebrow,
.panel-label,
.menu-kicker {
  margin: 0 0 22px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-kicker { color: #8b6d2f; }
.light-kicker { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; }
h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
  line-height: .98;
  font-weight: 500;
}
h2 span { color: #8c7240; font-style: italic; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.lead { font-size: 1.3rem; line-height: 1.65; color: #2f3e47; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(215,179,93,.55);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding: 10px 18px; }
.button-large { min-height: 56px; padding: 15px 28px; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(7,19,31,.12); backdrop-filter: blur(8px); }
.button-outline-light:hover { background: var(--white); color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.38);
  padding-bottom: 8px;
}
.text-link.dark { color: var(--ink); border-color: rgba(7,19,31,.3); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  height: 76px;
  background: rgba(7,19,31,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(0,0,0,.2);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: none; }
.brand-mark { width: 46px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.06rem; letter-spacing: .18em; }
.brand-copy small { margin-top: 5px; color: var(--gold); font-size: .58rem; letter-spacing: .54em; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav > a,
.nav-dropdown-toggle {
  position: relative;
  border: 0;
  padding: 8px 0;
  color: rgba(255,255,255,.88);
  background: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
}
.desktop-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.desktop-nav > a:hover::after,
.nav-dropdown-toggle:hover::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 7px; }
.mega-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  width: 650px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  color: var(--ink);
  background: rgba(247,245,238,.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown.open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega-menu div { display: grid; align-content: start; gap: 8px; }
.menu-kicker { margin-bottom: 6px; color: #88713c; }
.mega-menu a { padding: 6px 0; color: #263641; font-size: .84rem; border-bottom: 1px solid rgba(7,19,31,.08); }
.mega-menu a:hover { color: #80672e; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.video-sound-button {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 8px;
  color: rgba(255,255,255,.72);
  background: none;
  cursor: pointer;
}
.sound-bars { height: 15px; display: flex; align-items: end; gap: 2px; }
.sound-bars i { width: 2px; height: 6px; background: currentColor; transition: height .2s ease; }
.sound-bars i:nth-child(2) { height: 12px; }
.sound-bars i:nth-child(3) { height: 8px; }
.video-sound-button[aria-pressed="true"] .sound-bars i { animation: sound 1s ease-in-out infinite alternate; }
.video-sound-button[aria-pressed="true"] .sound-bars i:nth-child(2) { animation-delay: .2s; }
.video-sound-button[aria-pressed="true"] .sound-bars i:nth-child(3) { animation-delay: .4s; }
.sound-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
@keyframes sound { to { height: 14px; } }
.mobile-menu-button { display: none; width: 44px; height: 44px; border: 0; background: none; padding: 10px; cursor: pointer; }
.mobile-menu-button span { display: block; height: 1px; margin: 6px 0; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
.mobile-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 76px 0 0; padding: 24px; background: var(--ink); overflow-y: auto; }
.mobile-menu nav { display: grid; gap: 0; }
.mobile-menu nav > a:not(.button) { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.25rem; }
.mobile-menu .button { margin-top: 28px; }

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,14,23,.92) 0%, rgba(5,14,23,.74) 42%, rgba(5,14,23,.18) 76%),
    linear-gradient(0deg, rgba(5,14,23,.76) 0%, transparent 34%, rgba(5,14,23,.26) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: center; gap: clamp(40px, 7vw, 120px); padding-top: var(--header-height); }
.hero-copy { max-width: 890px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--gold-light); }
.eyebrow span { width: 40px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 920px; margin-bottom: 28px; font-size: clamp(3.4rem, 6.9vw, 7.7rem); line-height: .89; font-weight: 600; }
.hero h1 em { display: block; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-description { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.35vw, 1.22rem); }
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.hero-panel { align-self: stretch; margin-block: 28vh 16vh; padding: 30px; border-left: 1px solid rgba(255,255,255,.24); background: linear-gradient(135deg, rgba(7,19,31,.45), rgba(7,19,31,.06)); backdrop-filter: blur(5px); }
.panel-label { color: var(--gold-light); }
.hero-capability-list { display: grid; }
.hero-capability-list a { display: grid; grid-template-columns: 34px 1fr; gap: 3px 12px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.14); transition: padding-left .2s ease; }
.hero-capability-list a:hover { padding-left: 7px; }
.hero-capability-list a span { grid-row: span 2; color: var(--gold); font-size: .68rem; }
.hero-capability-list a strong { font-size: .92rem; }
.hero-capability-list a small { color: rgba(255,255,255,.55); font-size: .72rem; }
.hero-footer { position: absolute; z-index: 2; left: 50%; bottom: 27px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.62); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-location { display: flex; align-items: center; gap: 10px; }
.hero-location span { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 6px rgba(100,193,177,.12); }
.scroll-indicator { display: flex; align-items: center; gap: 14px; }
.scroll-indicator i { position: relative; display: block; width: 1px; height: 40px; overflow: hidden; background: rgba(255,255,255,.2); }
.scroll-indicator i::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scrollLine 1.7s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }


/* =========================
   Pricing Pulse — site-native market strip
========================= */
.market-pulse {
  position: relative;
  padding: 0;
  color: var(--white);
  background: #091825;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(215,179,93,.16);
  overflow: hidden;
}
.market-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(215,179,93,.035), transparent 32%, transparent 68%, rgba(215,179,93,.02));
}
.pulse-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1.28fr) minmax(0, 4fr);
  min-height: 142px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.10);
  border-right: 1px solid rgba(255,255,255,.10);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.pulse-shell::after { display: none; }
.pulse-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 26px 30px;
  background: rgba(255,255,255,.018);
  border-right: 1px solid rgba(255,255,255,.10);
}
.pulse-title-row { display: flex; align-items: center; gap: 11px; }
.pulse-status {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(215,179,93,.32);
  animation: marketBeat 2.2s infinite;
}
@keyframes marketBeat {
  65% { box-shadow: 0 0 0 8px rgba(215,179,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(215,179,93,0); }
}
.pulse-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 650;
}
.pulse-intro p {
  max-width: 330px;
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: .78rem;
  line-height: 1.45;
}
.pulse-intro time {
  margin-top: 2px;
  color: rgba(234,213,156,.52);
  font-size: .58rem;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.pulse-markets {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.market-tile {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 25px 27px;
  border-left: 1px solid rgba(255,255,255,.10);
  transition: background .25s ease;
}
.market-tile:first-child { border-left: 0; }
.market-tile:hover { background: rgba(215,179,93,.045); }
.market-tile::after {
  content: "";
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.market-tile:hover::after { transform: scaleX(1); }
.market-symbol {
  display: block;
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.market-value-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.market-value {
  min-width: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.market-move {
  flex: 0 0 auto;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.market-move.up { color: var(--teal); }
.market-move.down { color: #e4937f; }
.pulse-disclaimer {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 9px auto 10px;
  padding: 0 30px;
  color: rgba(255,255,255,.34);
  font-size: .57rem;
  line-height: 1.45;
}

/* =========================
   Proof Strip
========================= */
.proof-strip { color: var(--white); background: #091825; border-top: 1px solid rgba(255,255,255,.08); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid article { min-height: 142px; padding: 28px 30px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; border-right: 1px solid rgba(255,255,255,.1); }
.proof-grid article:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.proof-grid strong { color: var(--gold); font-family: Georgia, serif; font-size: 2.4rem; font-weight: 400; }
.proof-grid span { color: rgba(255,255,255,.63); font-size: .76rem; line-height: 1.5; }

/* =========================
   About
========================= */
.section-about { background: var(--paper); }
.section-grid-about { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(60px, 9vw, 130px); }
.about-media { position: relative; padding: 0 34px 34px 0; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.78) contrast(1.03); box-shadow: var(--shadow); }
.about-media-frame { position: absolute; inset: 34px 0 0 34px; border: 1px solid rgba(140,114,64,.45); z-index: -1; }
.about-media-note { position: absolute; right: -24px; bottom: 65px; width: 190px; padding: 23px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.about-media-note span { display: block; color: var(--gold-light); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.about-media-note strong { display: block; margin-top: 7px; font-family: Georgia, serif; font-size: 1.6rem; font-weight: 400; }
.about-copy h2 { margin-bottom: 35px; }
.about-copy > p:not(.section-kicker) { max-width: 650px; color: var(--body); }
.about-points { margin: 38px 0; border-top: 1px solid var(--dark-line); }
.about-points div { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--dark-line); }
.about-points i { color: #907640; font-size: .72rem; font-style: normal; }
.about-points span { display: grid; color: var(--body); }
.about-points strong { color: var(--ink); font-size: .95rem; }

/* =========================
   Section Headings
========================= */
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); align-items: end; gap: 50px; margin-bottom: 70px; }
.section-heading p:last-child { margin: 0; color: var(--body); }
.section-heading.light h2, .section-heading.light p:last-child { color: var(--white); }
.section-heading.light h2 span { color: var(--gold-light); }
.section-heading.light .section-kicker { color: var(--gold-light); }
.section-heading.light p:last-child { color: rgba(255,255,255,.62); }

/* =========================
   Capabilities
========================= */
.section-capabilities { color: var(--white); background: var(--ink); }
.capability-explorer { display: grid; grid-template-columns: 330px minmax(0, 1fr); min-height: 660px; border: 1px solid rgba(255,255,255,.14); }
.capability-tabs { display: grid; align-content: stretch; background: #0a1a28; }
.capability-tab { display: flex; align-items: center; gap: 18px; width: 100%; min-height: 110px; padding: 20px 25px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); background: transparent; text-align: left; cursor: pointer; transition: color .25s ease, background .25s ease, padding-left .25s ease; }
.capability-tab span { color: var(--gold); font-size: .68rem; }
.capability-tab:hover, .capability-tab.active { padding-left: 34px; color: var(--white); background: rgba(215,179,93,.08); }
.capability-tab.active { box-shadow: inset 3px 0 var(--gold); }
.capability-stage { position: relative; min-height: 660px; overflow: hidden; }
.capability-stage > img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease, transform 1.2s ease; }
.capability-stage.is-changing > img { opacity: .3; transform: scale(1.04); }
.capability-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,19,31,.94) 0%, rgba(7,19,31,.68) 50%, rgba(7,19,31,.22) 100%); }
.capability-content { position: absolute; left: clamp(35px, 7vw, 105px); bottom: 70px; max-width: 620px; }
.capability-content > p:first-child { color: var(--gold); font-size: .68rem; letter-spacing: .18em; }
.capability-content h3 { max-width: 630px; margin-bottom: 22px; font-size: clamp(2.2rem, 4vw, 4.7rem); line-height: .98; font-weight: 500; }
.capability-content > p:not(:first-child) { color: rgba(255,255,255,.72); font-size: 1.05rem; }
.capability-content ul { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 26px 0 34px; list-style: none; }
.capability-content li { color: rgba(255,255,255,.83); font-size: .78rem; }
.capability-content li::before { content: "•"; color: var(--gold); margin-right: 9px; }

/* =========================
   Journey
========================= */
.section-journey { background: #ebe8df; }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; padding-top: 65px; }
.journey-line { position: absolute; top: 22px; left: 8%; right: 8%; height: 1px; background: rgba(7,19,31,.15); overflow: hidden; }
.journey-line i { display: block; width: 26%; height: 100%; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: journeyFlow 4s linear infinite; }
@keyframes journeyFlow { from { transform: translateX(-100%); } to { transform: translateX(480%); } }
.journey-track article { position: relative; border-top: 2px solid var(--ink); padding-top: 24px; }
.journey-track article::before { content: ""; position: absolute; top: -5px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.journey-track span { color: #947a43; font-size: .68rem; }
.journey-track strong { display: block; margin: 8px 0; font-size: 1.05rem; }
.journey-track p { color: var(--body); font-size: .82rem; }

/* =========================
   Logistics
========================= */
.section-logistics { background: var(--paper); }
.logistics-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, 370px); gap: 18px; }
.logistics-card { position: relative; overflow: hidden; min-height: 320px; background: var(--ink); cursor: pointer; }
.logistics-card-large { grid-row: span 2; }
.logistics-card-wide { grid-column: span 2; }
.logistics-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.logistics-card:hover img { transform: scale(1.055); filter: saturate(.82); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,14,23,.92), rgba(5,14,23,.06) 70%); }
.card-copy { position: absolute; inset: auto 30px 28px; color: var(--white); }
.card-copy > span { color: var(--gold); font-size: .66rem; }
.card-copy h3 { margin: 5px 0 4px; font-size: clamp(1.7rem, 2.4vw, 2.8rem); font-weight: 500; }
.card-copy p { margin: 0 0 14px; color: rgba(255,255,255,.66); font-size: .82rem; }
.card-copy button { padding: 0; border: 0; color: var(--white); background: none; font-size: .73rem; font-weight: 700; cursor: pointer; }
.card-copy button i { margin-left: 8px; color: var(--gold); font-style: normal; transition: transform .2s ease; }
.logistics-card:hover .card-copy button i { display: inline-block; transform: translate(3px,-3px); }

/* =========================
   Products
========================= */
.section-products { color: var(--white); background: #0a1926; }
.products-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 68px; }
.products-intro .section-kicker { grid-column: 1 / -1; margin-bottom: -30px; color: var(--gold-light); }
.products-intro h2 span { color: var(--gold-light); }
.products-intro p:last-child { color: rgba(255,255,255,.58); }
.product-list { border-top: 1px solid rgba(255,255,255,.16); }
.product-list article { display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 30px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.16); transition: padding-left .25s ease, background .25s ease; }
.product-list article:hover { padding-left: 14px; background: rgba(255,255,255,.025); }
.product-list article > span { color: var(--gold); font-size: .68rem; }
.product-list h3 { margin-bottom: 5px; font-size: 1.25rem; font-weight: 500; }
.product-list p { margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; }
.product-list a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); color: var(--gold); transition: background .2s ease, color .2s ease; }
.product-list a:hover { background: var(--gold); color: var(--ink); }

/* =========================
   Recovery
========================= */
.section-recovery { min-height: 900px; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.recovery-background, .recovery-background img, .recovery-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.recovery-background img { object-fit: cover; transform: scale(1.03); }
.recovery-overlay { background: linear-gradient(90deg, rgba(5,14,23,.96) 0%, rgba(5,14,23,.86) 52%, rgba(5,14,23,.45) 100%); }
.recovery-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 100px; }
.recovery-copy h2 { margin-bottom: 28px; }
.recovery-copy h2 span { color: var(--gold-light); }
.recovery-copy > p:not(.section-kicker) { max-width: 610px; margin-bottom: 35px; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.recovery-process { border-top: 1px solid rgba(255,255,255,.25); }
.recovery-process article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.recovery-process article > span { color: var(--gold); font-size: .66rem; }
.recovery-process strong { font-size: 1rem; }
.recovery-process p { margin: 4px 0 0; color: rgba(255,255,255,.55); font-size: .78rem; }

/* =========================
   Locations
========================= */
.section-locations { background: #e9e6dd; overflow: hidden; }
.locations-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; }
.locations-copy h2 { margin-bottom: 28px; }
.locations-copy > p:not(.section-kicker) { max-width: 570px; color: var(--body); }
.location-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.location-filters button { padding: 8px 13px; border: 1px solid rgba(7,19,31,.2); background: transparent; color: #3e4b54; font-size: .7rem; cursor: pointer; }
.location-filters button:hover, .location-filters button.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.location-detail { margin-top: 34px; padding: 24px 0; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.location-detail > span { color: #8f7340; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.location-detail h3 { margin: 7px 0 10px; font-size: 1.55rem; }
.location-detail p { color: var(--body); font-size: .85rem; }
.location-detail a { font-size: .76rem; font-weight: 700; }
.location-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 18px; }
.location-tags i { padding: 5px 8px; border: 1px solid rgba(7,19,31,.16); color: #58646b; font-size: .58rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.network-map { position: relative; border: 1px solid rgba(7,19,31,.14); background: #071725; box-shadow: 0 26px 70px rgba(7,19,31,.16); overflow: hidden; }
.map-toolbar { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 22px; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--white); background: #07131f; }
.map-toolbar > div:first-child { display: grid; }
.map-toolbar span { color: var(--gold-light); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.map-toolbar small { color: rgba(255,255,255,.43); font-size: .64rem; }
.map-zoom-controls { display: flex; gap: 6px; }
.map-zoom-controls button { min-width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75); background: rgba(255,255,255,.035); cursor: pointer; }
.map-zoom-controls button:last-child { padding-inline: 11px; font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }
.map-zoom-controls button:hover { border-color: var(--gold); color: var(--gold-light); }
.map-canvas { position: relative; aspect-ratio: 980 / 720; background: #071725; overflow: hidden; }
.geo-map { display: block; width: 100%; height: 100%; }
.map-ocean { fill: url(#mapOcean); }
.geo-graticule { fill: none; stroke: rgba(255,255,255,.07); stroke-width: .8; vector-effect: non-scaling-stroke; }
.country { fill: #1a3442; stroke: rgba(190,215,220,.35); stroke-width: 1; vector-effect: non-scaling-stroke; transition: fill .25s ease, stroke .25s ease; }
.country-name { fill: rgba(255,255,255,.22); font-size: 12px; font-weight: 700; letter-spacing: 2.8px; text-anchor: middle; pointer-events: none; }
.geo-route { fill: none; stroke: rgba(215,179,93,.3); stroke-width: 1.5; stroke-dasharray: 6 7; vector-effect: non-scaling-stroke; transition: opacity .25s ease, stroke .25s ease, stroke-width .25s ease; animation: routeDash 12s linear infinite; }
.geo-route.active { stroke: var(--gold); stroke-width: 2.4; filter: url(#mapGlow); }
.geo-route.hidden { opacity: .07; }
@keyframes routeDash { to { stroke-dashoffset: -130; } }
.geo-pin { cursor: pointer; outline: none; transition: opacity .25s ease; }
.geo-pin.hidden { opacity: .08; pointer-events: none; }
.pin-halo { fill: rgba(215,179,93,.08); stroke: none; transform-box: fill-box; transform-origin: center; animation: mapPulse 2.8s infinite; }
.pin-ring { fill: #07131f; stroke: var(--gold); stroke-width: 2; vector-effect: non-scaling-stroke; }
.pin-core { fill: var(--gold); }
.pin-label { fill: rgba(255,255,255,.86); font-size: 10px; font-weight: 600; letter-spacing: .3px; paint-order: stroke; stroke: rgba(7,19,31,.92); stroke-width: 1.8px; stroke-linejoin: round; opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.geo-pin:hover .pin-ring, .geo-pin:focus .pin-ring, .geo-pin.active .pin-ring { fill: var(--gold); stroke: var(--gold-light); filter: url(#mapGlow); }
.geo-pin:hover .pin-core, .geo-pin:focus .pin-core, .geo-pin.active .pin-core { fill: var(--ink); }
.geo-pin:hover .pin-label, .geo-pin:focus .pin-label, .geo-pin.active .pin-label { fill: var(--white); opacity: 1; }
@keyframes mapPulse { 50% { transform: scale(1.35); opacity: .22; } }
.map-legend { min-height: 44px; display: flex; align-items: center; gap: 9px; padding: 0 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.4); background: #07131f; font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; }
.map-legend i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.map-legend span { width: 22px; height: 1px; margin-left: 12px; border-top: 1px dashed rgba(215,179,93,.7); }
/* =========================
   Contact
========================= */
.section-contact { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 8vw, 120px); }
.contact-copy h2 { margin-bottom: 25px; }
.contact-copy > p:not(.section-kicker) { color: var(--body); }
.contact-details { display: grid; margin-top: 50px; border-top: 1px solid var(--dark-line); }
.contact-details > * { display: grid; padding: 17px 0; border-bottom: 1px solid var(--dark-line); font-style: normal; }
.contact-details small { color: #927641; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-details strong { margin-top: 3px; color: var(--ink); font-size: .9rem; font-weight: 500; }
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; padding: 42px; background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 8px; }
.form-row.full, .full { grid-column: 1 / -1; }
.form-row label { font-size: .72rem; font-weight: 700; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(7,19,31,.24); border-radius: 0; padding: 12px 2px; color: var(--ink); background: transparent; outline: 0; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: #9b7c38; box-shadow: 0 1px #9b7c38; }
.form-row textarea { resize: vertical; }
.contextual-field { display: none; }
.contextual-field.visible { display: grid; }
.consent { display: flex; align-items: flex-start; gap: 12px; color: var(--body); font-size: .74rem; }
.consent input { margin-top: 4px; accent-color: var(--gold); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 10px; }
.form-footer p { max-width: 340px; margin: 0; color: var(--body); font-size: .7rem; }
.form-footer p.success { color: #2d796c; }
.form-footer p.error { color: #a33e35; }

/* =========================
   Footer
========================= */
.site-footer { color: var(--white); background: #06111c; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; padding-block: 75px; }
.footer-brand { max-width: 310px; }
.footer-brand > img { float: left; width: 52px; height: 54px; margin-right: 14px; object-fit: contain; }
.footer-brand > div { display: grid; line-height: 1; padding-top: 7px; }
.footer-brand strong { letter-spacing: .17em; }
.footer-brand small { margin-top: 5px; color: var(--gold); font-size: .58rem; letter-spacing: .52em; }
.footer-brand p { clear: both; padding-top: 25px; color: rgba(255,255,255,.48); font-size: .78rem; }
.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column > span { margin-bottom: 10px; color: var(--gold-light); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column p { margin: 0; color: rgba(255,255,255,.54); font-size: .75rem; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .67rem; }
.footer-bottom div { display: flex; gap: 22px; }

/* =========================
   Modal & Back to Top
========================= */
.media-modal { width: min(1000px, calc(100% - 32px)); padding: 0; border: 0; color: var(--white); background: var(--ink); box-shadow: 0 40px 120px rgba(0,0,0,.6); }
.media-modal::backdrop { background: rgba(4,10,16,.88); backdrop-filter: blur(8px); }
.media-modal img { width: 100%; max-height: 68vh; object-fit: cover; }
.media-modal > div { padding: 26px 32px 32px; }
.media-modal span { color: var(--gold); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.media-modal h2 { margin-top: 8px; font-size: clamp(2rem, 4vw, 4rem); }
.modal-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.4); color: var(--white); background: rgba(7,19,31,.7); font-size: 1.5rem; cursor: pointer; }
.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.22); color: var(--white); background: rgba(7,19,31,.88); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; cursor: pointer; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================
   Reveal Animations
========================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================
   Responsive
========================= */


/* =========================
   Expanded V3 Content
========================= */
.section-context { display: grid; gap: 13px; }
.section-context p { margin: 0; }
.section-context p + p { color: rgba(255,255,255,.46); }
.section-logistics .section-context p { color: var(--body); }
.section-logistics .section-context p + p { color: #718087; }

.products-summary { display: grid; gap: 12px; }
.products-summary p { margin: 0; }
.product-accordion { border-top: 1px solid rgba(255,255,255,.16); }
.product-accordion details { border-bottom: 1px solid rgba(255,255,255,.16); }
.product-accordion summary { display: grid; grid-template-columns: 60px 1fr 38px; align-items: center; gap: 30px; padding: 28px 0; cursor: pointer; list-style: none; transition: padding-left .25s ease, background .25s ease; }
.product-accordion summary::-webkit-details-marker { display: none; }
.product-accordion summary:hover { padding-left: 14px; background: rgba(255,255,255,.025); }
.product-accordion summary > span { color: var(--gold); font-size: .68rem; }
.product-accordion summary h3 { margin: 0 0 5px; font-size: 1.25rem; font-weight: 500; }
.product-accordion summary p { margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; }
.product-accordion summary > i { color: var(--gold); font-size: 1.4rem; font-style: normal; font-weight: 300; text-align: center; transition: transform .25s ease; }
.product-accordion details[open] summary > i { transform: rotate(45deg); }
.product-detail { max-width: 930px; margin-left: 90px; padding: 0 0 30px; color: rgba(255,255,255,.66); }
.product-detail p { margin: 0 0 12px; font-size: .9rem; line-height: 1.75; }
.product-detail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 10px 17px;
  border: 1px solid rgba(215,179,93,.58);
  border-radius: var(--radius);
  color: var(--gold-light);
  background: rgba(215,179,93,.035);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.product-detail a span { display: inline-block; flex: 0 0 auto; transition: transform .22s ease; }
.product-detail a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}
.product-detail a:hover span { transform: translate(2px,-2px); }

.recovery-story { display: grid; gap: 15px; margin-bottom: 34px; }
.recovery-copy .recovery-story p { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.72; }
.recovery-copy .recovery-story .recovery-principle { padding-left: 18px; border-left: 2px solid var(--gold); color: rgba(255,255,255,.88); }

.media-modal { max-height: calc(100vh - 30px); overflow: auto; }
.media-modal img { max-height: 48vh; }
.modal-copy { padding: 27px 34px 36px; }
.modal-body { display: grid; gap: 12px; max-width: 860px; margin: 18px 0 26px; }
.modal-body p { margin: 0; color: rgba(255,255,255,.64); font-size: .9rem; line-height: 1.72; }
.modal-body p:first-child { color: rgba(255,255,255,.9); font-size: 1rem; }
.modal-body em { color: var(--gold-light); }

@media (max-width: 760px) {
  .product-accordion summary { grid-template-columns: 34px 1fr 28px; gap: 12px; padding: 24px 0; }
  .product-detail { margin-left: 46px; padding-right: 8px; }
  .modal-copy { padding: 22px 22px 30px; }
  .media-modal img { max-height: 34vh; }
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 20px; }
  .header-actions .video-sound-button { display: none; }
  .hero-content { grid-template-columns: minmax(0, 1fr) 300px; }
  .capability-explorer { grid-template-columns: 280px minmax(0,1fr); }
  .locations-layout { gap: 42px; }
}

@media (max-width: 992px) {
  :root { --header-height: 76px; }
  .container-wide { width: min(calc(100% - 40px), var(--container-wide)); }
  .section { padding: 100px 0; }
  .desktop-nav, .header-actions > .button, .video-sound-button { display: none; }
  .mobile-menu-button { display: block; }
  .hero { min-height: 720px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(3.5rem, 10vw, 6.5rem); }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.1); }
  .section-grid-about, .recovery-layout, .locations-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-media { max-width: 680px; }
  .section-heading, .products-intro { grid-template-columns: 1fr; gap: 25px; }
  .products-intro .section-kicker { grid-column: auto; margin-bottom: 0; }
  .capability-explorer { grid-template-columns: 1fr; }
  .capability-tabs { grid-template-columns: repeat(5, minmax(160px,1fr)); overflow-x: auto; }
  .capability-tab { min-height: 78px; border-right: 1px solid rgba(255,255,255,.12); }
  .capability-tab:hover, .capability-tab.active { padding-left: 25px; box-shadow: inset 0 3px var(--gold); }
  .journey-track { grid-template-columns: repeat(3,1fr); }
  .journey-line { display: none; }
  .logistics-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3, 330px); }
  .logistics-card-large { grid-row: span 2; }
  .logistics-card-wide { grid-column: auto; }
  .network-map { max-width: 900px; width: 100%; margin-inline: auto; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .container-wide { width: min(calc(100% - 28px), var(--container-wide)); }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .brand-mark { width: 38px; height: 40px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .5rem; }
  .hero { min-height: 680px; height: 100svh; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,14,23,.94), rgba(5,14,23,.58)), linear-gradient(0deg, rgba(5,14,23,.78), transparent 50%); }
  .hero-grid { background-size: 56px 56px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5.2rem); }
  .hero-description { font-size: .95rem; }
  .hero-cta-row { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-footer { bottom: 18px; }
  .hero-year, .hero-location { display: none; }
  .scroll-indicator { margin-left: auto; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 105px; border-left: 1px solid rgba(255,255,255,.1); }
  .section-grid-about { gap: 60px; }
  .about-media { padding: 0 18px 18px 0; }
  .about-media-note { right: -4px; bottom: 35px; width: 160px; }
  .about-media-frame { inset: 18px 0 0 18px; }
  .section-heading { margin-bottom: 45px; }
  .capability-tabs { grid-template-columns: repeat(5, 175px); }
  .capability-stage { min-height: 600px; }
  .capability-content { left: 26px; right: 26px; bottom: 35px; }
  .capability-content h3 { font-size: 2.6rem; }
  .capability-content ul { display: grid; }
  .journey-track { grid-template-columns: 1fr; gap: 24px; padding-top: 0; }
  .logistics-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .logistics-card, .logistics-card-large, .logistics-card-wide { grid-row: auto; grid-column: auto; min-height: 380px; }
  .products-intro { margin-bottom: 45px; }
  .product-list article { grid-template-columns: 38px 1fr auto; gap: 14px; }
  .recovery-layout { gap: 60px; }
  .map-toolbar { align-items: flex-start; }
  .pin-label { display: none; }
  .inquiry-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .form-row.full, .full { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .button-large { width: 100%; }
  .hero h1 { font-size: 2.9rem; }
  .eyebrow { font-size: .62rem; }
  .about-media-note { position: relative; right: auto; bottom: auto; margin: -35px 18px 0 auto; }
  .map-toolbar { flex-direction: column; }
  .map-zoom-controls { align-self: stretch; }
  .map-zoom-controls button:last-child { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-video { display: none; }
  .hero { background: linear-gradient(rgba(5,14,23,.72), rgba(5,14,23,.72)), url('../assets/hero-poster.jpg') center/cover no-repeat; }
  .reveal { opacity: 1; transform: none; }
}


/* Pricing Pulse responsiveness */
@media (max-width: 1180px) {
  .pulse-shell { grid-template-columns: 1fr; }
  .pulse-intro { min-height: 104px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .pulse-markets { min-height: 126px; }
}
@media (max-width: 760px) {
  .market-pulse { padding: 0; }
  .pulse-shell { border-radius: 0; }
  .pulse-intro { min-height: 0; padding: 22px 22px; }
  .pulse-markets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-tile { min-height: 112px; padding: 20px 21px; }
  .market-tile:nth-child(3) { border-left: 0; }
  .market-tile:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.10); }
  .market-value-row { align-items: flex-end; }
  .pulse-disclaimer { margin: 8px 0 10px; padding: 0 22px; }
}
@media (max-width: 430px) {
  .pulse-intro p { font-size: .74rem; }
  .market-tile { min-height: 106px; padding: 18px 17px; }
  .market-symbol { font-size: .59rem; letter-spacing: .09em; }
  .market-value-row { display: grid; gap: 6px; }
  .market-value { font-size: 1.48rem; }
  .market-move { font-size: .66rem; }
}

/* =========================
   EIA Market Pulse states
========================= */
.market-move.flat { color: rgba(255,255,255,.56); }
.pulse-disclaimer strong { color: var(--gold); font-weight: 600; }
