/* ============================================================
   Lion Rock Resources — shared site styles (subpages)
   Design language extracted from the homepage (index.html).
   Brand: white · light blue · navy. Gold reserved for gold story.
   ============================================================ */

:root {
  --navy-950: #0C1730;
  --navy-900: #152340;
  --navy-800: #1E3A66;
  --navy-700: #2C4A7C;
  --blue-500: #3568A3;
  --blue-400: #5585BD;
  --blue-300: #7FA8D9;
  --blue-200: #A9C4E0;
  --blue-100: #D8E5F3;
  --blue-50:  #EDF3FA;

  --white: #FFFFFF;
  --grey-50: #F7F9FC;
  --grey-100: #EEF2F8;
  --grey-200: #E2E8F1;
  --grey-300: #CDD6E4;
  --grey-500: #7A879C;
  --grey-600: #5A6678;

  --gold: #C8A951;
  --gold-bright: #E0C878;

  --text-strong: #152340;
  --text-body: #3D4759;
  --text-muted: #7A879C;

  --shadow-sm: 0 1px 2px rgba(21,35,64,.06), 0 1px 3px rgba(21,35,64,.05);
  --shadow-md: 0 4px 12px rgba(21,35,64,.08), 0 2px 4px rgba(21,35,64,.04);
  --shadow-lg: 0 16px 40px rgba(21,35,64,.12), 0 6px 12px rgba(21,35,64,.06);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--blue-200); color: var(--navy-900); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: none; padding: 0 44px; }
.nav .container--wide { padding-left: calc(44px + 3%); padding-right: 7%; }
h1, h2, h3, h4 { color: var(--text-strong); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--blue-300); }
.kicker-light { color: var(--blue-200); }
.kicker-light::before { background: var(--blue-400); }

.section { padding: 104px 0; }
section[id] { scroll-margin-top: 92px; }
.section--tight { padding: 76px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { margin-top: 14px; font-size: 1.075rem; color: var(--text-muted); }
.section--alt { background: var(--grey-50); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.section--dark { background: var(--navy-950); position: relative; overflow: hidden; }
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 90% -20%, rgba(53,104,163,0.32), transparent 62%),
    radial-gradient(700px 420px at 0% 120%, rgba(53,104,163,0.2), transparent 60%);
}
.section--dark .container { position: relative; z-index: 1; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-head p { color: rgba(255,255,255,0.66); }

/* ============ NAV (global, with dropdowns) ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--grey-200);
  box-shadow: 0 1px 20px rgba(21,35,64,.05);
}
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 78px; gap: 24px; }
.nav-inner > nav { justify-self: center; }
.nav-right { justify-self: end; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 55px; width: auto; }
.nav:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
.footer .logo-img { height: 46px; filter: brightness(0) invert(1); }

.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
  padding: 5px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(12,23,48,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .35s ease, border-color .35s ease;
}
.nav.scrolled .nav-links { background: var(--grey-100); border-color: var(--grey-200); }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 100px;
  transition: color .18s ease, background .18s ease;
  white-space: nowrap;
}
.nav:not(.scrolled) .nav-links > li > a { color: rgba(255,255,255,0.88); }
.nav:not(.scrolled) .nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav.scrolled .nav-links > li > a { color: var(--text-body); }
.nav.scrolled .nav-links > li > a:hover { color: var(--navy-900); background: var(--white); }
.nav-links > li > a[aria-current="page"] { font-weight: 600; }
.nav:not(.scrolled) .nav-links > li > a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.12); }
.nav.scrolled .nav-links > li > a[aria-current="page"] { color: var(--navy-900); background: var(--white); }

.drop-caret { transition: transform .2s var(--ease); opacity: .7; flex-shrink: 0; }
.has-drop:hover .drop-caret, .has-drop.open .drop-caret { transform: rotate(180deg); }

.drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding-top: 12px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 110;
}
.has-drop:hover .drop, .has-drop:focus-within .drop, .has-drop.open .drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop-in {
  min-width: 236px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
}
.drop-in a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.drop-in a:hover { background: var(--grey-100); color: var(--navy-900); transform: translateX(2px); }
.drop-in a[aria-current="page"] { color: var(--navy-900); background: var(--blue-50); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  font-family: var(--mono);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s var(--ease);
  white-space: nowrap;
}
.nav:not(.scrolled) .nav-cta { color: #fff; border-color: rgba(255,255,255,0.45); }
.nav:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.nav.scrolled .nav-cta { color: var(--navy-800); border-color: var(--grey-300); }
.nav.scrolled .nav-cta:hover { border-color: var(--blue-500); color: var(--navy-900); transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease, background .25s ease; }
.nav.scrolled .nav-toggle span { background: var(--navy-900); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px;
  font-size: 0.95rem; font-weight: 600; font-family: inherit;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--navy-800); color: var(--white); box-shadow: 0 2px 8px rgba(30,58,102,.22); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(30,58,102,.28); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--grey-300); }
.btn-ghost:hover { border-color: var(--blue-500); color: var(--navy-900); background: var(--grey-50); }
.btn-lg { padding: 15px 26px; font-size: 1rem; }
.btn-onblue { background: transparent; color: #fff; border-color: rgba(255,255,255,0.42); }
.btn-onblue:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-onlight { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-onlight:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.link-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 600; color: var(--blue-500);
  transition: gap .2s var(--ease), color .2s ease;
}
.link-more:hover { color: var(--navy-800); gap: 10px; }

/* ============ PAGE HERO (subpage banner) ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
  padding: 170px 0 58px;
  background: var(--navy-950);
}
.page-hero--tall { min-height: 62vh; }
.page-hero--short { min-height: 380px; padding-top: 150px; }
.page-hero-bg {
  position: absolute; inset: -3%;
  background-position: center 35%; background-size: cover; background-repeat: no-repeat;
  animation: kenburns 34s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.09) translate(-0.8%, 1.2%); }
}
.page-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,23,48,0.9) 0%, rgba(17,31,60,0.74) 42%, rgba(24,45,80,0.5) 75%, rgba(30,58,102,0.4) 100%),
    linear-gradient(180deg, rgba(12,23,48,0.5) 0%, rgba(12,23,48,0.12) 36%, rgba(12,23,48,0.78) 100%);
}
/* no-photo variant: pure navy with the brand radial glows */
.page-hero--plain .page-hero-scrim {
  background:
    radial-gradient(1100px 520px at 85% -30%, rgba(53,104,163,0.45), transparent 62%),
    radial-gradient(760px 460px at 0% 130%, rgba(53,104,163,0.28), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; width: 100%; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.crumbs a { color: rgba(255,255,255,0.55); transition: color .18s ease; }
.crumbs a:hover { color: #fff; }
.crumbs .c-sep { color: rgba(255,255,255,0.3); }
.crumbs .c-here { color: var(--blue-200); }

.page-hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 17ch;
  margin-bottom: 18px;
}
.page-hero h1 .accent { color: var(--blue-200); }
.page-hero .lede {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}
.page-hero .lede b { color: #fff; font-weight: 600; }
.page-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.page-hero .btn-primary { background: #fff; color: var(--navy-900); box-shadow: 0 6px 20px rgba(12,23,48,.3); }
.page-hero .btn-primary:hover { background: var(--blue-50); }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 34px;
}
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  background: rgba(12,23,48,0.5);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}
.chip b { color: #fff; font-weight: 600; }
.chip .cdot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-300); flex-shrink: 0; }

.pulse-dot { position: relative; width: 8px; height: 8px; flex-shrink: 0; }
.pulse-dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--blue-300); }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--blue-300);
  animation: ping 2.2s var(--ease) infinite;
}
@keyframes ping {
  0%   { transform: scale(0.5); opacity: 0.9; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.fade-up { opacity: 0; transform: translateY(26px); animation: fadeUp .9s var(--ease) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.d-1 { animation-delay: .1s; } .d-2 { animation-delay: .22s; } .d-3 { animation-delay: .34s; } .d-4 { animation-delay: .46s; }

/* ============ PROSE (rich text blocks) ============ */
.prose { max-width: 720px; }
.prose p { margin-bottom: 18px; font-size: 1.02rem; }
.prose p:last-child { margin-bottom: 0; }
.prose b, .prose strong { color: var(--navy-900); font-weight: 600; }
.prose h3 { font-size: 1.4rem; margin: 34px 0 14px; }
.prose ul { margin: 0 0 18px 2px; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.prose ul li { position: relative; padding-left: 20px; font-size: 1rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; background: var(--blue-200); border-radius: 2px;
}
.prose a { color: var(--blue-500); font-weight: 600; }
.prose a:hover { color: var(--navy-800); }

.note-foot { margin-top: 36px; font-size: 0.75rem; color: var(--text-muted); max-width: 900px; line-height: 1.6; }

/* ============ SPLIT (editorial text + image) ============ */
.split { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: center; }
.split--rev { grid-template-columns: 6fr 5fr; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.split-media img { width: 100%; height: auto; }
.split-media--photo { border: none; }
.split-media .sm-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 7px 15px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--mono); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-900);
}
.split-media figcaption {
  padding: 13px 18px;
  background: var(--navy-950);
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 9px;
}
.split-media figcaption .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-300); flex-shrink: 0; }

/* ============ STAT CARDS / NUMBERED CARDS ============ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.stat-card .v {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  color: var(--navy-900); font-variant-numeric: tabular-nums;
}
.stat-card .v .unit { font-size: 0.45em; font-weight: 700; color: var(--blue-500); margin-left: 3px; letter-spacing: 0; }
.stat-card .k {
  margin-top: 10px;
  font-family: var(--mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}

.num-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.num-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s ease;
}
.num-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.num-card .n { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--blue-500); margin-bottom: 12px; }
.num-card h4, .num-card h3 { font-size: 1.12rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.num-card p { font-size: 0.92rem; color: var(--text-body); }
.num-card p b { color: var(--navy-900); }

/* ============ INTERCEPTS (drill result rows) ============ */
.intercepts { list-style: none; }
.intercepts li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--grey-200);
  font-size: 0.95rem;
}
.intercepts li b { color: var(--navy-900); font-weight: 700; }
.intercepts li .hole { font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; }
.section--dark .intercepts li { border-bottom-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.78); }
.section--dark .intercepts li b { color: #fff; }
.section--dark .intercepts li .hole { color: rgba(255,255,255,0.4); }

/* ============ DOCUMENT LIST (governance / financials / reports) ============ */
.doc-group { margin-bottom: 46px; }
.doc-group:last-child { margin-bottom: 0; }
.doc-group h3 {
  font-size: 1.15rem; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.doc-group h3::after { content: ""; flex: 1; height: 1px; background: var(--grey-200); }
.doc-list { list-style: none; display: flex; flex-direction: column; }
.doc-item {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: background .18s ease, transform .18s ease;
}
.doc-item:hover { background: var(--grey-50); transform: translateX(5px); }
.doc-item .d-main { display: flex; align-items: center; gap: 16px; min-width: 0; }
.doc-item .d-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--blue-50); color: var(--blue-500);
  transition: background .18s ease, color .18s ease;
}
.doc-item:hover .d-ic { background: var(--navy-800); color: #fff; }
.doc-item .d-name { font-size: 0.98rem; font-weight: 600; color: var(--navy-900); line-height: 1.35; letter-spacing: -0.01em; }
.doc-item .d-meta { font-family: var(--mono); font-size: 0.66rem; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 3px; text-transform: uppercase; }
.doc-item .d-arrow { color: var(--grey-300); flex-shrink: 0; transition: color .18s ease, transform .2s var(--ease); }
.doc-item:hover .d-arrow { color: var(--blue-500); transform: translate(2px, -2px); }

/* year filter pills */
.year-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.year-tab {
  padding: 9px 20px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 100px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s var(--ease);
}
.year-tab:hover { border-color: var(--blue-500); color: var(--navy-900); transform: translateY(-1px); }
.year-tab.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* ============ NEWS ============ */
.news-date { font-family: var(--mono); font-size: 0.7rem; font-weight: 500; color: var(--blue-500); letter-spacing: 0.06em; margin-bottom: 12px; }
.news-item {
  display: block;
  padding: 20px 18px;
  border-bottom: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: background .18s ease, transform .18s ease;
}
.news-item:hover { background: var(--grey-50); transform: translateX(5px); }
.news-item h4 { font-size: 1rem; font-weight: 600; line-height: 1.35; color: var(--navy-900); letter-spacing: -0.01em; transition: color .18s ease; }
.news-item:hover h4 { color: var(--blue-500); }
.news-item .news-date { margin-bottom: 6px; }

/* news release article page */
.article-head { max-width: 820px; }
.article-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); max-width: none; }
.article-body { max-width: 780px; margin-top: 8px; }
.article-body p { margin-bottom: 20px; font-size: 1.02rem; }
.article-body h2, .article-body h3 { font-size: 1.35rem; margin: 38px 0 16px; }
.article-body b, .article-body strong { color: var(--navy-900); font-weight: 600; }
.article-body ul { margin: 0 0 20px 2px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { position: relative; padding-left: 20px; }
.article-body ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; background: var(--blue-200); border-radius: 2px;
}
.article-body table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 0.92rem; }
.article-body th {
  text-align: left; padding: 10px 14px;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 2px solid var(--grey-300);
  font-weight: 600;
}
.article-body td { padding: 10px 14px; border-bottom: 1px solid var(--grey-200); font-variant-numeric: tabular-nums; }
.article-body tr td:first-child { font-family: var(--mono); font-size: 0.8rem; color: var(--text-muted); }
.table-scroll { overflow-x: auto; }
.article-quote {
  margin: 30px 0; padding: 26px 30px;
  background: var(--grey-50);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.08rem; font-weight: 500; color: var(--navy-900); line-height: 1.55;
}
.article-quote .aq-attr {
  display: block; margin-top: 14px;
  font-family: var(--mono); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.article-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--grey-200); }

/* ============ TEAM ============ */
.team-feature {
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
  background: var(--navy-900);
  border-radius: var(--radius);
  padding: 38px 42px;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.team-feature::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 100% 0%, rgba(53,104,163,0.35), transparent 60%);
}
.team-feature > * { position: relative; }
.tm-avatar {
  width: 86px; height: 86px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(127,168,217,0.15);
  border: 1px solid rgba(127,168,217,0.4);
  color: var(--blue-200);
  font-weight: 800; font-size: 1.5rem; letter-spacing: 0.02em;
  flex-shrink: 0;
}
.team-feature h3 { color: #fff; font-size: 1.4rem; margin-bottom: 2px; }
.team-feature .tm-role { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-200); margin-bottom: 12px; }
.team-feature p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 72ch; }
.team-feature p b { color: #fff; font-weight: 600; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tm-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s ease;
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.tm-card .tm-avatar { width: 52px; height: 52px; font-size: 0.95rem; background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-500); margin-bottom: 16px; }
.tm-card h4 { font-size: 1.08rem; margin-bottom: 3px; }
.tm-card .tm-role { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 12px; }
.tm-card p { font-size: 0.86rem; color: var(--text-muted); }

/* ============ CAP TABLE / LISTINGS (stock page) ============ */
.cap-table {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 34px 38px;
}
.cap-table h3 { font-size: 1.25rem; margin-bottom: 6px; }
.cap-asof { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 22px; }
.cap-rows { list-style: none; }
.cap-rows li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px dashed var(--grey-200);
  font-size: 0.95rem;
}
.cap-rows li:last-child { border-bottom: none; }
.cap-rows .k { color: var(--text-muted); }
.cap-rows .v { font-weight: 700; color: var(--navy-900); font-variant-numeric: tabular-nums; }
.cap-rows li.total { border-top: 1px solid var(--grey-300); margin-top: 4px; }
.cap-rows li.total .k { color: var(--navy-800); font-weight: 600; }
.cap-rows li.total .v { font-size: 1.1rem; }

.listing-cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
.listing {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), border-color .2s ease, box-shadow .22s var(--ease);
}
.listing:hover { transform: translateY(-2px); border-color: var(--blue-200); box-shadow: var(--shadow-md); }
.listing .l-ex { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.listing .l-tick { font-size: 1.4rem; font-weight: 800; color: var(--navy-900); letter-spacing: -0.02em; }
.listing .l-mkt { text-align: right; font-size: 0.8rem; color: var(--text-muted); }
.listing .l-mkt b { display: block; font-size: 1.05rem; color: var(--navy-800); font-weight: 700; }
.listing--main { border-left: 3px solid var(--blue-500); }
.cap-note { margin-top: 18px; font-size: 0.76rem; color: var(--text-muted); }

/* ============ FAQ ACCORDION ============ */
.faq-list { max-width: 860px; }
.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .25s var(--ease);
}
.faq-item:hover { border-color: var(--blue-200); }
.faq-item[open] { border-color: var(--blue-200); box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem; font-weight: 600; color: var(--navy-900); letter-spacing: -0.01em;
  transition: color .18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-500); }
.faq-item summary .fq-ic {
  width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--grey-300);
  color: var(--blue-500);
  transition: transform .3s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
}
.faq-item[open] summary .fq-ic { transform: rotate(45deg); background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.faq-item .fq-body { padding: 0 24px 22px; color: var(--text-body); font-size: 0.97rem; }
.faq-item .fq-body p { margin-bottom: 12px; }
.faq-item .fq-body p:last-child { margin-bottom: 0; }
.faq-item .fq-body b { color: var(--navy-900); }

/* ============ CONTACT / INFO CARDS ============ */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.info-card .ic {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--blue-50); color: var(--blue-500);
  margin-bottom: 18px;
}
.info-card h3 { font-size: 1.12rem; margin-bottom: 12px; }
.info-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; }
.info-card p + p { margin-top: 10px; }
.info-card a { color: var(--blue-500); font-weight: 600; transition: color .18s ease; }
.info-card a:hover { color: var(--navy-800); }
.info-card .muted { color: var(--text-muted); font-size: 0.86rem; }

/* ============ FORMS ============ */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--mono); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--blue-500); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--text-strong);
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--grey-500); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(53,104,163,0.14);
}
.form-check { display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 22px; }
.form-check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--blue-500); flex-shrink: 0; }
.form-check span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.form-note { margin-top: 12px; font-size: 0.78rem; color: var(--text-muted); }

/* ============ SUBSCRIBE BAND (shared pre-footer CTA) ============ */
.subscribe {
  position: relative; overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(1100px 520px at 8% -25%, rgba(53,104,163,0.5), transparent 62%),
    radial-gradient(900px 520px at 100% 125%, rgba(53,104,163,0.32), transparent 60%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
}
.subscribe-panel-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.subscribe-panel-head .kicker { justify-content: center; }
.subscribe-panel-head h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.subscribe-panel-head p { color: rgba(255,255,255,0.72); font-size: 1.08rem; margin-top: 12px; }
.subscribe-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; gap: 24px;
  max-width: 980px; margin: 0 auto;
}
.sub-card { position: relative; border-radius: 16px; padding: 34px 34px 30px; display: flex; flex-direction: column; }
.sub-card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 18px; flex-shrink: 0;
}
.sub-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.sub-card > p { font-size: 0.97rem; margin-bottom: 24px; }
.sub-card--primary {
  background: var(--white);
  border-top: 3px solid var(--blue-500);
  box-shadow: 0 30px 70px -22px rgba(0,0,0,0.6);
}
.sub-card--primary .sub-card-icon { background: var(--blue-50); color: var(--blue-500); }
.sub-card--primary > p { color: var(--text-muted); }
.sub-badge {
  position: absolute; top: -13px; left: 34px;
  display: inline-flex; align-items: center;
  padding: 6px 13px;
  background: var(--blue-500); color: #fff;
  font-family: var(--mono); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(53,104,163,0.5);
}
.sub-card--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.sub-card--ghost .sub-card-icon { background: rgba(255,255,255,0.1); color: #fff; }
.sub-card--ghost h3 { color: #fff; }
.sub-card--ghost > p { color: rgba(255,255,255,0.68); }
.subscribe-form { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.subscribe-form input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--text-strong);
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.subscribe-form input::placeholder { color: var(--grey-500); }
.subscribe-form input:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(53,104,163,0.14); }
.subscribe-form .btn { width: 100%; justify-content: center; }
.subscribe-note { margin-top: 12px; font-size: 0.78rem; color: var(--text-muted); }
.sub-card > .btn { width: 100%; justify-content: center; margin-top: auto; }
.ir-contact {
  display: inline-block; margin-top: 14px; text-align: center;
  font-size: 0.92rem; font-weight: 600; color: var(--blue-200);
  transition: color .18s ease;
}
.ir-contact:hover { color: #fff; }

/* ============ SOURCES & DISCLOSURES ============ */
.refs-sec { padding: 64px 0; background: var(--grey-50); border-top: 1px solid var(--grey-200); }
.refs-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; margin-top: 8px; }
.refs-h { font-family: var(--mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-600); margin: 0 0 12px; }
.disclosure .refs-h { margin-top: 22px; }
.disclosure .refs-h:first-child { margin-top: 0; }
.refs { list-style: none; counter-reset: ref; }
.refs li { position: relative; counter-increment: ref; padding: 5px 0 5px 34px; font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.refs li::before { content: "[" counter(ref) "]"; position: absolute; left: 0; top: 5px; font-family: var(--mono); font-size: 0.68rem; color: var(--blue-500); }
.refs a, .disclosure a { color: var(--blue-500); font-weight: 500; }
.refs a:hover, .disclosure a:hover { color: var(--navy-800); }
.disclosure p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 940px) { .refs-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============ NEXT-PAGE CTA STRIP ============ */
.next-strip { border-top: 1px solid var(--grey-200); }
.next-strip .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 44px; padding-bottom: 44px;
}
.next-strip .ns-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.next-strip h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); transition: color .2s ease; }
.next-strip a:hover h3 { color: var(--blue-500); }

/* ============ FOOTER ============ */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.72); padding: 72px 0 34px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer .logo { margin-bottom: 18px; }
.footer-about { font-size: 0.9rem; line-height: 1.65; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-tickers { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.footer-tickers span {
  font-family: var(--mono); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  color: rgba(255,255,255,0.82);
}
.footer-col h5 {
  color: var(--white);
  font-family: var(--mono); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.62); transition: color .18s ease; }
.footer-col a:hover { color: var(--blue-200); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); border-color: var(--blue-300); color: var(--white); transform: translateY(-2px); }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap;
}
.footer-legal { font-size: 0.76rem; color: rgba(255,255,255,0.5); max-width: 680px; line-height: 1.6; }
.footer-legal p + p { margin-top: 8px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.5); white-space: nowrap; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .split, .split--rev { grid-template-columns: 1fr; gap: 44px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .num-cards { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white);
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-links.open > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 14px; font-size: 1rem; border-radius: 8px;
    color: var(--text-body) !important;
  }
  .nav-links.open > li > a:hover { background: var(--grey-100) !important; color: var(--navy-900) !important; }
  /* dropdown groups render inline, always visible, indented */
  .nav-links.open .drop {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    padding: 0 0 6px;
  }
  .nav-links.open .drop-in { min-width: 0; background: none; border: none; box-shadow: none; padding: 0 0 0 14px; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links.open .drop-in a { padding: 10px 14px; color: var(--grey-600); }
  .nav-links.open .drop-caret { display: none; }
  .nav .container--wide { padding: 0 20px; }
  .section { padding: 76px 0; }
  .section--tight { padding: 58px 0; }
  .page-hero { min-height: 0; padding: 140px 0 50px; }
  .page-hero--tall { min-height: 0; }
  .subscribe { padding: 76px 0; }
  .subscribe-cards { grid-template-columns: 1fr; max-width: 540px; }
  .sub-card--primary { transform: none; }
  .team-feature { grid-template-columns: 1fr; }
  .next-strip .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  input, select, textarea { font-size: 16px !important; } /* prevent iOS focus zoom */
  .container { padding: 0 20px; }
  .nav-cta { font-size: 0.6rem; padding: 8px 13px; letter-spacing: 0.08em; }
  .logo-img { height: 38px; }
  .nav-inner { gap: 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .stat-row { grid-template-columns: 1fr; }
  .num-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .sub-card { padding: 26px 22px; }
  .doc-item { padding: 14px 12px; }
  .doc-item .d-meta { display: none; }
  .cap-table { padding: 26px 22px; }
  .hero-chips { gap: 8px; }
  .chip { padding: 8px 14px; font-size: 0.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .fade-up { opacity: 1; transform: none; }
}
