/* ==========================================================================
   MOLTEN METALS — Aero-Spec Design System
   Polished metallurgical IR aesthetic.
   ========================================================================== */

:root {
  /* Color system */
  --navy-deep: #050D1F;
  --navy: #0E1A33;
  --navy-raised: #142544;
  --navy-line: #1E3358;
  --silver: #B8C2D1;
  --silver-bright: #E4E8EF;
  --silver-dim: #6B7689;
  --white: #FFFFFF;
  --text: #FFFFFF;
  --text-muted: #C4CAD6;
  --text-subtle: #7A8499;
  --signal: #5BA3CB; /* used very sparingly */

  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Layout */
  --container-max: 1320px;
  --gutter: 32px;
  --rail-w: 56px; /* sticky left rail */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

  /* Atmosphere: subtle dot grid + radial glow */
  background-image:
    radial-gradient(ellipse 1200px 800px at 75% -200px, rgba(184,194,209,0.06) 0%, transparent 60%),
    radial-gradient(circle at center, rgba(184,194,209,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px;
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ========== Reusable tokens ========== */
.spec-label,
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--silver-dim);
}
.mono-bright { color: var(--silver-bright); }
.mono-loud { color: var(--silver); }

.thin-display {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: -0.005em;
  line-height: 1.04;
  color: var(--white);
}
.thin-caps {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,194,209,0.45) 30%, rgba(228,232,239,0.6) 50%, rgba(184,194,209,0.45) 70%, transparent);
  border: 0;
}

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

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(5,13,31,0.72);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(184,194,209,0.10);
  transition: padding .25s ease;
}
.nav.scrolled { padding: 10px 0; background: rgba(5,13,31,0.92); }
.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; transition: opacity .2s; }
.nav-brand:hover { opacity: .85; }
.nav-brand img { height: 56px; width: auto; filter: drop-shadow(0 0 12px rgba(184,194,209,0.25)); }
.nav-brand .lockup {
  display: flex; flex-direction: column; line-height: 1; gap: 4px;
}
.nav-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 16px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-brand .ticker {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 2px;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--silver-bright);
}

/* Dropdown for Properties */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ' +'; font-family: var(--font-mono); font-size: 10px; opacity: 0.55;
  transition: transform .2s, opacity .2s;
  display: inline-block; margin-left: 4px;
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after { opacity: 1; transform: rotate(45deg); }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: -16px;
  background: rgba(5,13,31,0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184,194,209,0.14);
  border-radius: 2px;
  padding: 10px 0;
  min-width: 280px;
  list-style: none;
  opacity: 0; transform: translateY(-8px) scale(0.985);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(184,194,209,0.04);
}
.has-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 18px;
  display: none;
}
.has-dropdown:hover::before,
.has-dropdown:focus-within::before { display: block; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.dropdown li { padding: 0; }
.dropdown a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: all .15s ease;
}
.dropdown a::before {
  content: attr(data-idx);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.dropdown a:hover,
.dropdown a.active {
  color: var(--white);
  background: rgba(184,194,209,0.05);
  border-left-color: var(--silver-bright);
}
.dropdown a > span { grid-column: 2; }
.dropdown a .meta {
  grid-column: 2;
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}
.dropdown a:hover .meta,
.dropdown a.active .meta { color: var(--silver); }
.dropdown a:hover::after,
.dropdown a.active::after { display: none; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--silver-bright);
  padding: 10px 18px;
  border-radius: 2px;
  font-weight: 500;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(184,194,209,0.35);
}

/* Mobile: collapse */
@media (max-width: 920px) {
  .nav-row { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-brand .lockup { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 78% 32%, rgba(184,194,209,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 12% 75%, rgba(228,232,239,0.05) 0%, transparent 50%);
}
/* faint scan-line texture */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(184,194,209,0.012) 0px, rgba(184,194,209,0.012) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-text { position: relative; padding-left: 28px; }
.hero-text::before {
  content: ''; position: absolute; top: 8px; bottom: 8px; left: 0; width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(184,194,209,0.7) 12%, rgba(184,194,209,0.7) 88%, transparent 100%);
}
.hero-spec {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-spec .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  padding: 6px 10px;
  border: 1px solid rgba(184,194,209,0.25);
  border-radius: 2px;
  background: rgba(184,194,209,0.04);
}
.hero-spec .badge .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--silver-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(228,232,239,0.5);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(40px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--silver);
  position: relative;
}
.hero h1 .accent {
  display: inline-block;
  position: relative;
  font-weight: 400;
  color: var(--silver-bright);
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: linear-gradient(90deg, var(--silver-bright), transparent);
}

.hero .lead {
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--silver-bright);
  padding: 16px 26px;
  border-radius: 2px;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease;
  position: relative;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(184,194,209,0.35);
}
.btn-primary .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  padding: 16px 26px;
  border: 1px solid rgba(184,194,209,0.18);
  border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(184,194,209,0.55);
  background: rgba(184,194,209,0.04);
}

/* Hero mark — large MM monogram on right */
.hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark::before {
  content: ''; position: absolute; inset: -15%;
  background: radial-gradient(ellipse at center, rgba(184,194,209,0.12) 0%, transparent 55%);
  z-index: -1;
}
.hero-mark img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)) drop-shadow(0 0 80px rgba(184,194,209,0.15));
  animation: heroFloat 9s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.3deg); }
}
.hero-mark-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-mark-meta {
  position: absolute;
  top: -12px; right: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.hero-mark-meta .label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.hero-mark-meta .val {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-bright);
}

/* Hero spec strip — below the hero grid */
.hero-strip {
  position: relative; z-index: 2;
  margin-top: 96px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,194,209,0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.hero-strip .cell {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-strip .cell .k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.hero-strip .cell .v {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* ========== SECTIONS ========== */
.section {
  position: relative;
  padding: 140px 0 120px;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 28px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 920px) {
  .section-head { grid-template-columns: 1fr; row-gap: 20px; column-gap: 0; }
}
.section-idx {
  grid-column: 1 / -1;
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
}
.section-idx .num {
  display: inline-block;
  color: var(--silver-bright);
  margin-right: 12px;
}
.section-idx .num::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--silver-bright);
  margin-right: 12px;
  vertical-align: middle;
}
.section-head h2 {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.014em;
  color: var(--white);
  margin: 0;
}
.section-head .lead {
  grid-column: 2;
  grid-row: 2;
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0;
  align-self: end;
  padding-bottom: 6px;
}
@media (max-width: 920px) {
  .section-head h2, .section-head .lead {
    grid-column: 1;
    max-width: 720px;
  }
  .section-head h2 { grid-row: 2; }
  .section-head .lead { grid-row: 3; align-self: start; padding-bottom: 0; }
}

/* ========== PORTFOLIO ========== */
.portfolio { padding: 120px 0 140px; }
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,194,209,0.08);
  border: 1px solid rgba(184,194,209,0.10);
}
@media (max-width: 880px) {
  .prop-grid { grid-template-columns: 1fr; }
}
.prop {
  background: var(--navy);
  padding: 36px 32px 32px;
  position: relative;
  transition: background .3s ease;
  display: flex; flex-direction: column;
}
.prop:hover { background: var(--navy-raised); }
.prop::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--silver-bright);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .35s ease;
}
.prop:hover::before { transform: scaleX(1); }
.prop a.cover {
  position: absolute; inset: 0;
  z-index: 1;
  text-indent: -9999em;
}

.prop-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 22px;
  gap: 24px;
}
.prop-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding-top: 4px;
}
.prop-commodity {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-bright);
  text-align: right;
  padding: 6px 10px;
  border: 1px solid rgba(184,194,209,0.20);
  border-radius: 2px;
  background: rgba(184,194,209,0.04);
}
.prop h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--white);
  margin-bottom: 8px;
}
.prop-location {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 24px;
}
.prop p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 32px;
  flex: 1;
}
.prop-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,194,209,0.12);
}
.prop-specs > div {
  display: flex; flex-direction: column; gap: 4px;
}
.prop-specs dt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.prop-specs dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.01em;
}
.prop-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--silver-bright);
  align-self: flex-start;
  position: relative;
  z-index: 2;
  transition: gap .25s ease, color .2s;
}
.prop:hover .prop-cta { color: var(--white); gap: 16px; }
.prop-cta .arrow {
  display: inline-block;
  border-top: 1px solid currentColor;
  width: 18px;
  height: 1px;
  position: relative;
}
.prop-cta .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ========== INVESTORS ========== */
.investors {
  padding: 120px 0 140px;
  position: relative;
}
.investors::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,194,209,0.22) 30%, rgba(228,232,239,0.5) 50%, rgba(184,194,209,0.22) 70%, transparent);
}

.ir-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: start;
}
@media (max-width: 920px) {
  .ir-grid { grid-template-columns: 1fr; gap: 56px; }
}
.ir-contact .lead {
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
}
.ir-dl {
  display: grid;
  gap: 0;
}
.ir-dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(184,194,209,0.10);
  align-items: baseline;
}
.ir-dl > div:last-child { border-bottom: none; }
.ir-dl dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.ir-dl dd {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}
.ir-dl dd a { color: var(--white); border-bottom: 1px solid transparent; transition: border-color .2s; }
.ir-dl dd a:hover { border-color: var(--silver-bright); }

.ir-data {
  background: var(--navy-raised);
  border: 1px solid rgba(184,194,209,0.10);
  padding: 36px 36px 30px;
  position: relative;
}
.ir-data::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,232,239,0.6) 50%, transparent);
}
.ir-data-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(184,194,209,0.10);
}
.ir-data-head .title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-bright);
}
.ir-data-head .stamp {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.ir-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.ir-data-grid > div { display: flex; flex-direction: column; gap: 6px; }
.ir-data-grid dt {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.ir-data-grid dd {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.005em;
  line-height: 1.15;
}
.ir-data-grid dd.small {
  font-size: 14px;
  line-height: 1.45;
}

/* ========== FOOTER ========== */
.foot {
  position: relative;
  padding: 80px 0 32px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(184,194,209,0.10);
}
.foot::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,194,209,0.30) 30%, rgba(228,232,239,0.6) 50%, rgba(184,194,209,0.30) 70%, transparent);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
}
.foot-brand .mark {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.foot-brand .mark img {
  height: 60px;
  filter: drop-shadow(0 0 12px rgba(184,194,209,0.2));
}
.foot-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 15px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--white);
}
.foot-brand .ticker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
.foot-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 380px;
  font-weight: 300;
  margin-top: 20px;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col ul li a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  transition: color .2s;
}
.foot-col ul li a:hover { color: var(--white); }

/* Coordinates strip */
.foot-coords {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(184,194,209,0.10);
  border-bottom: 1px solid rgba(184,194,209,0.10);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.foot-coords .signal { color: var(--silver-bright); }
.foot-coords .signal::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--silver-bright);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 8px rgba(228,232,239,0.5);
  animation: pulse 2.4s ease-in-out infinite;
}

/* Legal */
.foot-legal {
  padding-top: 32px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-subtle);
}
.foot-legal p { margin-bottom: 14px; }
.foot-legal strong { color: var(--text-muted); font-weight: 500; }
.foot-copy {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(184,194,209,0.06);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

/* ========== PAGE HEADER (for subpages) ========== */
.page-header {
  position: relative;
  padding: 180px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1000px 700px at 78% 22%, rgba(184,194,209,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 18% 78%, rgba(228,232,239,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header.with-photo {
  background-image: var(--bg-photo, none);
  background-size: cover; background-position: center;
}
.page-header.with-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,13,31,0.62) 0%, rgba(14,26,51,0.88) 60%, rgba(14,26,51,0.97) 100%);
}
.page-header.with-photo .container { z-index: 2; }
.page-header::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,194,209,0.3) 30%, rgba(228,232,239,0.6) 50%, rgba(184,194,209,0.3) 70%, transparent);
}
.page-header .idx {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 22px;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(184,194,209,0.25);
  border-radius: 2px;
  background: rgba(184,194,209,0.04);
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 900px;
}
.page-header h1 em {
  font-style: normal; font-weight: 300; color: var(--silver);
}
.page-header .sub {
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 700px;
}

/* ========== PAGE BODY HELPERS ========== */
.body-section { padding: 100px 0; position: relative; }
.body-section:not(:first-of-type)::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-bright), transparent);
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(184,194,209,0.10);
  border: 1px solid rgba(184,194,209,0.12);
}
.stat-bar > .cell {
  background: var(--navy);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .2s;
}
.stat-bar > .cell:hover { background: var(--navy-raised); }
.stat-bar dt, .stat-bar .k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.stat-bar dd, .stat-bar .v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.005em;
  line-height: 1.1;
}

.body-prose {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-muted);
  font-weight: 300;
}
.body-prose h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.008em;
  color: var(--white);
  margin-top: 56px;
  margin-bottom: 18px;
}
.body-prose p { margin-bottom: 18px; }

.callout {
  padding: 26px 30px;
  background: var(--navy-raised);
  border-left: 2px solid var(--silver-bright);
  border-radius: 2px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
  margin: 24px 0;
}
.callout strong { color: var(--white); font-weight: 500; }
.callout + .callout { margin-top: 16px; }

/* ========== UTILITIES ========== */
.section-rule {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  margin: 0 0 24px;
}
.section-rule .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
}
.section-rule .line {
  height: 1px; flex: 1;
  background: linear-gradient(90deg, rgba(184,194,209,0.5), transparent);
}

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* Page progress bar */
.page-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--silver-bright), var(--silver));
  z-index: 200;
  transition: width .12s linear;
}

/* Skip link for accessibility */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--silver-bright); color: var(--navy-deep);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 9999;
}
.skip:focus { left: 12px; top: 12px; }

/* ==========================================================================
   TEAM PAGE
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(184,194,209,0.10);
  border: 1px solid rgba(184,194,209,0.12);
}
.team-card {
  background: var(--navy);
  padding: 40px 36px;
  position: relative;
  transition: background .3s;
  display: flex; flex-direction: column;
}
.team-card:hover { background: var(--navy-raised); }
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--silver-bright);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .35s ease;
}
.team-card:hover::before { transform: scaleX(1); }
.team-card.featured { background: linear-gradient(180deg, rgba(184,194,209,0.04) 0%, transparent 100%), var(--navy); }
.team-card .role {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 16px;
}
.team-card .name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--white);
  margin-bottom: 10px;
}
.team-card .creds {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.team-card .bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

/* ==========================================================================
   INVESTORS PAGE
   ========================================================================== */
.ticker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(184,194,209,0.10);
  border: 1px solid rgba(184,194,209,0.12);
}
.ticker-grid > .tile {
  background: var(--navy);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  transition: background .2s;
}
.ticker-grid > .tile:hover { background: var(--navy-raised); }
.ticker-grid > .tile .label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.ticker-grid > .tile .value {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 32px;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
}

.ir-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 920px) {
  .ir-block { grid-template-columns: 1fr; gap: 32px; }
}
.ir-card {
  background: var(--navy-raised);
  border: 1px solid rgba(184,194,209,0.10);
  padding: 36px 32px;
  position: relative;
}
.ir-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,232,239,0.6) 50%, transparent);
}
.ir-card h3 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(184,194,209,0.10);
}
.ir-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(184,194,209,0.06);
  align-items: baseline;
}
.ir-row:last-child { border-bottom: none; }
.ir-row .k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.ir-row .v {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  color: var(--white);
  text-align: right;
}
.ir-row .v a { color: var(--white); border-bottom: 1px solid transparent; transition: border-color .2s; }
.ir-row .v a:hover { border-color: var(--silver-bright); }

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(184,194,209,0.10);
  border: 1px solid rgba(184,194,209,0.12);
}
.strategy-grid > a {
  background: var(--navy);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .2s;
  color: inherit;
}
.strategy-grid > a:hover { background: var(--navy-raised); }
.strategy-grid > a .v {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 4px;
}
.strategy-grid > a .l {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

/* ==========================================================================
   NEWS PAGE
   ========================================================================== */
.news-grid {
  display: grid;
  gap: 1px;
  background: rgba(184,194,209,0.10);
  border: 1px solid rgba(184,194,209,0.12);
}
.news-item {
  background: var(--navy);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 22px 28px;
  transition: background .2s;
  position: relative;
}
.news-item:hover { background: var(--navy-raised); }
.news-item .date {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-bright);
}
.news-item .headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  color: var(--white);
  letter-spacing: 0.005em;
}
.news-item .arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--silver);
  transition: transform .2s ease, color .2s;
}
.news-item:hover .arrow {
  color: var(--silver-bright);
  transform: translateX(4px);
}
@media (max-width: 720px) {
  .news-item { grid-template-columns: 1fr; gap: 6px; padding: 22px; }
  .news-item .arrow { display: none; }
}

.interim-note {
  padding: 22px 26px;
  background: var(--navy-raised);
  border-left: 2px solid var(--silver-bright);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 760px;
  margin-bottom: 36px;
}
.interim-note strong { color: var(--white); font-weight: 500; }
.interim-note a { color: var(--silver-bright); border-bottom: 1px solid transparent; transition: border-color .2s; }
.interim-note a:hover { border-color: var(--silver-bright); }

/* ==========================================================================
   STAT-CELL anchor variant (clickable strategy tiles)
   ========================================================================== */


/* ==========================================================================
   DENSITY OVERRIDES — larger type, tighter spacing, more visual weight
   ========================================================================== */

/* Body type bump */
body { font-size: 16px; line-height: 1.6; }

/* Section padding — tighter */
.section { padding: 96px 0 80px; }
.body-section { padding: 80px 0; }
.portfolio { padding: 88px 0 100px; }
.investors { padding: 96px 0 100px; }

/* Hero — tighter top space, bigger type */
.hero { min-height: 92vh; padding: 130px 0 80px; }
.hero h1 { font-size: clamp(48px, 7.4vw, 104px); margin-bottom: 28px; }
.hero .lead { font-size: 19px; line-height: 1.55; max-width: 600px; margin-bottom: 38px; }
.hero-spec { margin-bottom: 28px; }
.hero-strip { margin-top: 72px; padding-top: 28px; }
.hero-strip .cell .v { font-size: 22px; }
.hero-mark img { max-width: 540px; }
.hero-mark-meta { top: -8px; }
.hero-mark-meta .val { font-size: 12px; }

/* Section heads — tighter, slightly bigger */
.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(40px, 5.2vw, 72px); }
.section-head .lead { font-size: 17px; }

/* Page header — tighter */
.page-header { padding: 156px 0 88px; }
.page-header h1 { font-size: clamp(44px, 6.4vw, 88px); margin-bottom: 22px; }
.page-header .sub { font-size: 18px; line-height: 1.55; max-width: 760px; }

/* Property cards — tighter padding, bigger body */
.prop { padding: 36px 36px 36px; }
.prop h3 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 10px; }
.prop p { font-size: 15.5px; line-height: 1.6; margin-bottom: 28px; }
.prop-location { margin-bottom: 22px; font-size: 11px; }
.prop-specs { padding-top: 22px; gap: 14px 28px; }
.prop-specs dd { font-size: 18px; }
.prop-cta { margin-top: 30px; }

/* Property hero photo strip — adds visual mass to each card */
.prop { padding-top: 0; display: flex; flex-direction: column; }
.prop .img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  margin: -1px -1px 32px;
  overflow: hidden;
  isolation: isolate;
}
.prop .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,51,0.30) 0%, rgba(14,26,51,0.55) 60%, rgba(14,26,51,0.92) 100%);
  transition: opacity .3s;
}
.prop:hover .img::after { opacity: 0.85; }
.prop .img-label {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.prop .img-label .commodity {
  background: rgba(5,13,31,0.7);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 6px 10px;
  border: 1px solid rgba(228,232,239,0.30);
  border-radius: 2px;
}
.prop .body-pad { padding: 0 36px; flex: 1; display: flex; flex-direction: column; }
.prop .prop-top { margin-bottom: 14px; }

/* Hero — add subtle backdrop photo */
.hero {
  background:
    linear-gradient(180deg, rgba(5,13,31,0.40) 0%, rgba(14,26,51,0.65) 50%, rgba(14,26,51,0.92) 100%),
    radial-gradient(ellipse 900px 600px at 75% 30%, rgba(184,194,209,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 18% 78%, rgba(228,232,239,0.05) 0%, transparent 50%),
    url('../assets/images/gallery/bc-interior.jpg') center/cover no-repeat fixed;
}
@media (max-width: 920px) {
  .hero { background-attachment: scroll; }
}

/* Photo backdrop on body sections */
.section.with-photo {
  position: relative;
}

/* Stat bar — bigger values, tighter cells */
.stat-bar > .cell { padding: 26px 24px; }
.stat-bar dd, .stat-bar .v { font-size: 24px; }

/* IR cards — denser */
.ir-card { padding: 32px 30px; }
.ir-card h3 { margin-bottom: 22px; padding-bottom: 14px; }
.ir-row { padding: 13px 0; }
.ir-row .v { font-size: 16px; }

.ir-data { padding: 32px 32px 28px; }
.ir-data-head { margin-bottom: 24px; padding-bottom: 16px; }
.ir-data-grid { gap: 28px 24px; }
.ir-data-grid dd { font-size: 24px; }

/* News items — denser */
.news-item { padding: 22px 26px; }
.news-item .headline { font-size: 17px; }

/* Team cards — bigger names, denser */
.team-card { padding: 36px 32px; }
.team-card .name { font-size: 30px; }
.team-card .bio { font-size: 14.5px; }

/* Footer — tighter, denser */
.foot { padding: 70px 0 32px; }
.foot-grid { margin-bottom: 56px; }
.foot-brand p { font-size: 14.5px; line-height: 1.55; }
.foot-col ul li a { font-size: 14.5px; }

/* Body prose — bigger */
.body-prose { font-size: 17px; line-height: 1.7; }
.body-prose h3 { font-size: clamp(28px, 3.2vw, 38px); margin-top: 48px; margin-bottom: 16px; }
.body-prose p { margin-bottom: 18px; }

/* Section rule — tighter */
.section-rule { margin: 0 0 20px; }

/* Body section heading after section-rule */
.body-section h2 { font-size: clamp(32px, 4.2vw, 52px); }

/* Callout boxes — denser */
.callout { padding: 22px 26px; font-size: 14.5px; line-height: 1.6; }

/* Hero text - tighter left rail spacing */
.hero-text { padding-left: 24px; }

/* Page-header with-photo: make the photo more prominent */
.page-header.with-photo {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 920px) {
  .page-header.with-photo { background-attachment: scroll; }
}
.page-header.with-photo::before {
  background: linear-gradient(180deg, rgba(5,13,31,0.50) 0%, rgba(14,26,51,0.80) 55%, rgba(14,26,51,0.95) 100%);
}

/* ==========================================================================
   HERO VIDEO LAYERS
   Layer 0: alpine loop (full-bleed bg, plays continuously)
   Layer 1: navy gradient overlay (readability)
   Layer 2: hero content (text + mark)
   Layer 3: MM reveal intro (contained in mark area, plays once per session)
   ========================================================================== */

.hero { background: var(--navy); }  /* fallback */
.hero-loop {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.85) contrast(1.05);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-loop.ready { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 1100px 700px at 78% 32%, rgba(184,194,209,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 18% 78%, rgba(228,232,239,0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,13,31,0.42) 0%, rgba(14,26,51,0.62) 50%, rgba(14,26,51,0.92) 100%);
}

/* The .hero overrides earlier — undo the photo-bg now that we have a video */
.hero {
  background: var(--navy);
  background-image: none;
}

/* Mark area — holds both the static logo AND the intro video stacked */
.hero-mark { position: relative; isolation: isolate; }
.hero-mark img {
  transition: opacity .8s ease;
  position: relative;
  z-index: 1;
}
.hero-mark.intro-pending img { opacity: 0; }

.hero-intro {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  z-index: 2;
  object-fit: contain;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-intro.playing { opacity: 1; }
.hero-intro.done { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-loop { display: none; }
  .hero-intro { display: none; }
}

/* ==========================================================================
   HERO V2 — VERTICAL VIDEO-LED STAGE (overrides earlier hero layout)
   The MM mark / reveal video is the cinematic focal point at the top.
   Spec badge above. H1 + lead + CTAs flow below.
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero .container { position: relative; z-index: 2; }

/* Override the old hero-grid 2-col layout */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero-text {
  padding-left: 0;
  display: contents;     /* let children participate in .hero-grid's flex layout */
}
.hero-text::before { display: none; }  /* kill the left rail accent */

/* Hero-spec badge — pinned above the mark */
.hero-spec {
  margin: 0 0 36px;
  display: flex;
  justify-content: center;
}

/* Hero mark — large central video/logo stage */
.hero-mark {
  order: 2;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 56px;
  position: relative;
  isolation: isolate;
}
.hero-mark::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center, rgba(184,194,209,0.16) 0%, rgba(184,194,209,0.04) 35%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  max-width: 100%;
  animation: heroFloat 9s ease-in-out infinite;
  transition: opacity .8s ease;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45)) drop-shadow(0 0 80px rgba(184,194,209,0.18));
}
.hero-intro {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  object-fit: contain;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-mark-meta {
  position: absolute;
  top: auto !important;
  bottom: -36px;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px;
  z-index: 3;
}
.hero-mark-meta .label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.hero-mark-meta .val {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  padding: 4px 10px;
  border: 1px solid rgba(184,194,209,0.30);
  border-radius: 2px;
  background: rgba(184,194,209,0.05);
}
.hero-mark-meta::before {
  content: ''; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-bright));
}
.hero-mark-meta::after {
  content: ''; width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--silver-bright), transparent);
}

/* H1 + lead + CTAs centered below mark */
.hero h1 {
  order: 3;
  text-align: center;
  font-size: clamp(44px, 6.6vw, 96px);
  line-height: 1.04;
  margin: 0 auto 24px;
  max-width: 980px;
  font-weight: 200;
}
.hero h1 .accent { color: var(--silver-bright); position: relative; }
.hero h1 .accent::after { display: none; }  /* drop the underline accent in this layout */

.hero .lead {
  order: 4;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.6;
}
.hero-ctas {
  order: 5;
  justify-content: center;
}

/* Hero strip below */
.hero-strip {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,194,209,0.14);
  grid-template-columns: repeat(4, 1fr);
}
.hero-strip .cell {
  text-align: center;
  align-items: center;
}
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Hero alpine loop bg stays at z-index 0 */
.hero-loop {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85) contrast(1.05);
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-loop.ready { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 1200px 800px at 50% 38%, rgba(184,194,209,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 800px 500px at 22% 78%, rgba(228,232,239,0.05) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,13,31,0.50) 0%, rgba(14,26,51,0.70) 50%, rgba(14,26,51,0.95) 100%);
}

/* Hide image while intro pending (for clean reveal) */
.hero-mark.intro-pending img { opacity: 0; animation: none; }
.hero-intro.playing { opacity: 1; }
.hero-intro.done { opacity: 0; }

@media (max-width: 720px) {
  .hero-mark { max-width: 320px; margin-bottom: 64px; }
  .hero-mark-meta { bottom: -32px; }
  .hero-mark-meta::before, .hero-mark-meta::after { width: 18px; }
}

/* ==========================================================================
   HERO V2 — TIGHTEN for above-the-fold viewing
   ========================================================================== */
.hero { padding: 96px 0 56px; min-height: 100vh; }
.hero-spec { margin-bottom: 24px; }
.hero-mark { max-width: 340px; margin-bottom: 44px; }
.hero h1 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  margin-bottom: 18px;
  max-width: 860px;
}
.hero .lead {
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 28px;
}
.hero-strip { margin-top: 44px; padding-top: 22px; }
.hero-strip .cell .v { font-size: 18px; }
.hero-strip .cell .k { font-size: 9px; }
.hero-mark-meta { bottom: -28px; }
.hero-mark-meta .label, .hero-mark-meta .val { font-size: 9px; letter-spacing: 0.20em; }
.hero-mark-meta::before, .hero-mark-meta::after { width: 28px; }

/* On larger viewports, give the mark a bit more room */
@media (min-height: 900px) {
  .hero-mark { max-width: 400px; margin-bottom: 56px; }
  .hero h1 { font-size: clamp(40px, 5.6vw, 76px); }
}
@media (max-width: 720px) {
  .hero { padding: 88px 0 48px; }
  .hero-mark { max-width: 260px; margin-bottom: 48px; }
  .hero h1 { font-size: clamp(30px, 7vw, 48px); }
  .hero .lead { font-size: 15px; }
}

/* ==========================================================================
   HERO V3 — FULL-BLEED COVER VIDEO (top of page) + CONTENT BELOW
   ========================================================================== */
.hero {
  position: relative;
  padding: 0 !important;
  min-height: 86vh !important;
  display: flex !important;
  align-items: center;
  overflow: hidden !important;
  background: var(--navy);
}

/* Full-bleed video background — covers the entire hero */
.hero-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--navy);
  z-index: 0;
}
.hero-cover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: block;
}
.hero-cover-video.ready { opacity: 1; }
.hero-cover-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at center, transparent 0%, rgba(5,13,31,0.35) 60%, rgba(5,13,31,0.72) 100%),
    linear-gradient(180deg, rgba(5,13,31,0.78) 0%, rgba(5,13,31,0.30) 22%, rgba(5,13,31,0.30) 68%, rgba(5,13,31,0.88) 100%);
}
/* Top edge: extra dark layer so the nav bar reads cleanly */
.hero-cover::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(180deg, rgba(5,13,31,0.9) 0%, transparent 100%);
  z-index: 2; pointer-events: none;
}

/* Content overlay — sits on top of the video */
.hero-content-section {
  position: relative;
  z-index: 3;
  padding: 140px 0 88px;
  width: 100%;
}
.hero-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero-content-inner .hero-spec {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}
.hero-content-inner h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--white);
  text-align: center;
  margin: 0 auto 22px;
  max-width: 920px;
}
.hero-content-inner h1 .accent { color: var(--silver-bright); font-weight: 300; }
.hero-content-inner .lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}
.hero-content-inner .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero strip — sits below content */
.hero-content-section .hero-strip {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(184,194,209,0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.hero-content-section .hero-strip .cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

/* Kill v2 overrides — we no longer use the centered mark */
.hero-grid, .hero-mark, .hero-mark-meta, .hero-intro, .hero-loop, .hero-overlay,
.hero-cover-mark, .hero-cover-meta { display: none !important; }

/* ==========================================================================
   HERO BRAND BLOCK — MM monogram + "Molten Metals" wordmark + tickers
   sits at the top of the content stack, over the video
   ========================================================================== */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroBrandReveal 1.4s ease-out 0.2s forwards;
}
.hero-brand-mark {
  width: 280px;
  height: auto;
  filter:
    drop-shadow(0 24px 60px rgba(0,0,0,0.55))
    drop-shadow(0 0 70px rgba(184,194,209,0.25));
  animation: heroFloat 9s ease-in-out infinite;
}
.hero-brand-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: none;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.hero-brand-ticker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  padding: 6px 16px;
  border: 1px solid rgba(228,232,239,0.28);
  border-radius: 2px;
  background: rgba(14,26,51,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
@keyframes heroBrandReveal {
  to { opacity: 1; }
}

/* Mobile */
@media (max-width: 920px) {
  .hero-brand-mark { width: 220px; }
  .hero-brand { gap: 14px; margin-bottom: 30px; }
}
@media (max-width: 720px) {
  .hero { min-height: 100vh !important; }
  .hero-content-section { padding: 110px 0 64px; }
  .hero-content-inner h1 { font-size: clamp(28px, 7vw, 44px); margin-bottom: 18px; }
  .hero-content-inner .lead { font-size: 15px; }
  .hero-content-section .hero-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-brand-mark { width: 120px; }
  .hero-brand-ticker { font-size: 9.5px; padding: 5px 12px; }
}
@media (max-width: 480px) {
  .hero-brand-mark { width: 100px; }
  .hero-brand-ticker { font-size: 8.5px; letter-spacing: 0.18em; padding: 4px 10px; }
}

/* ==========================================================================
   ANALYST GRID — home page "For Investors" snapshot cards
   ========================================================================== */
.analyst-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.analyst-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(184,194,209,0.04) 0%, rgba(14,26,51,0.0) 100%);
  border: 1px solid rgba(184,194,209,0.14);
  border-radius: 4px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.28s ease, transform 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: hidden;
}
.analyst-card::before {
  content: '';
  position: absolute; top: 0; left: 0; height: 1px; width: 0;
  background: linear-gradient(90deg, var(--silver-bright), transparent);
  transition: width 0.5s ease;
}
.analyst-card:hover {
  border-color: rgba(228,232,239,0.42);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(184,194,209,0.07) 0%, rgba(14,26,51,0.0) 100%);
}
.analyst-card:hover::before { width: 100%; }
.analyst-card .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 4px;
}
.analyst-card .head {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--white);
}
.analyst-card .sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 8px;
  flex: 1;
}
.analyst-card .cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.analyst-card .cta .arrow { transition: transform 0.28s ease; }
.analyst-card:hover .cta .arrow { transform: translateX(4px); }
@media (max-width: 720px) {
  .analyst-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .analyst-card { padding: 28px 24px; }
  .analyst-card .head { font-size: 22px; }
  .analyst-card .sub { font-size: 14px; }
}

/* ==========================================================================
   TRADINGVIEW WIDGET FRAME — Aero-Spec wrapper around the embedded widget
   ========================================================================== */
.tv-frame {
  position: relative;
  background: rgba(5, 13, 31, 0.5);
  border: 1px solid rgba(184, 194, 209, 0.14);
  border-radius: 4px;
  padding: 12px;
  overflow: hidden;
}
.tv-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(228, 232, 239, 0.45) 50%, transparent);
  pointer-events: none;
}
.tv-frame .tradingview-widget-container {
  position: relative;
  min-height: 440px;
  height: 440px;
  width: 100%;
}
.tv-frame .tradingview-widget-container__widget {
  height: 100%;
  width: 100%;
}
.tv-frame .tradingview-widget-copyright {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-align: right;
  padding-top: 6px;
}
.tv-frame .tradingview-widget-copyright a {
  color: var(--silver);
  text-decoration: none;
}
@media (max-width: 720px) {
  .tv-frame { padding: 8px; }
  .tv-frame .tradingview-widget-container,
  .tv-frame .tradingview-widget-container__widget {
    min-height: 360px; height: 360px;
  }
}


/* ========== MOBILE NAV (hamburger + drawer) ========== */
.nav-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(10,20,38,0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184,194,209,0.18);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover { background: rgba(10,20,38,0.92); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e4e8ef;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,13,31,0.97);
  backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 92px 28px 32px;
  overflow-y: auto;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mm-link,
.mobile-menu .mm-cta {
  display: block;
  width: 100%;
  padding: 18px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #e4e8ef;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,194,209,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu .mm-link span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(184,194,209,0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.mobile-menu .mm-link:hover,
.mobile-menu .mm-link:active { color: #fff; padding-left: 8px; }
.mobile-menu .mm-cta {
  margin-top: 24px;
  background: rgba(184,194,209,0.08);
  border: 1px solid rgba(184,194,209,0.22);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #e4e8ef;
  padding: 16px 24px;
}
.mobile-menu .mm-cta:hover { background: rgba(184,194,209,0.14); padding-left: 24px; }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav .nav-cta { display: none; }
}
