/* Totec Resources design system
   8-pt grid (4px allowed for fine detail). One content rail: 1280px.
   Type floor: body 18px desktop / 16px mobile; nav/captions >= 14px; legal 15px. */

:root {
  --bg: #0D1414; --surface: #121B1B; --surface-2: #182424;
  --teal: #2B8E8E; --teal-bright: #3FB5B0;
  --text: #EDF2F2; --muted: #9FB3B3; --subtle: #5F7373;
  --line: rgba(43,142,142,0.24);
  --rail: 1280px;
  --font-head: "Archivo", sans-serif; --font-body: "Inter", sans-serif;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font: 400 18px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: var(--teal-bright); }

/* ---------- Layout ---------- */
.rail { max-width: var(--rail); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p { color: var(--text); }
p + p { margin-top: 16px; }

.eyebrow {
  font: 600 15px/1 var(--font-body);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-bright); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.footnote { font-size: 15px; color: var(--subtle); line-height: 1.5; }

/* Triple-bar motif from the T monogram */
.tbar {
  display: inline-block; width: 40px; height: 14px;
  background: linear-gradient(var(--teal) 0 2px, transparent 2px 6px, var(--teal) 6px 8px, transparent 8px 12px, var(--teal) 12px 14px);
}

/* ---------- Stats ---------- */
.stat { margin-bottom: 8px; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800; line-height: 1; color: var(--teal-bright);
}
.stat-note { font-size: 15px; color: var(--subtle); margin-top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 16px 32px; border-radius: 4px;
  font: 600 17px/1 var(--font-body); text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-bright); }
.btn-ghost { border: 1px solid var(--teal); color: var(--text); }
.btn-ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-radius: 4px;
  padding: 32px;
  transition: border-top-color .2s ease, transform .2s ease;
}
.card:hover { border-top-color: var(--teal); }

/* ---------- Data table ---------- */
.data-table { width: 100%; border-collapse: collapse; font-size: 17px; }
.data-table th {
  text-align: left; color: var(--teal-bright);
  border-bottom: 2px solid var(--teal); padding: 12px 16px;
  font-family: var(--font-body); font-weight: 600;
}
.data-table td { border-bottom: 1px solid var(--line); padding: 12px 16px; color: var(--muted); }
.data-table tr:hover td { color: var(--text); }

/* ---------- Photo frame ---------- */
.photo-frame img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: 4px;
}
.photo-frame figcaption { font-size: 14px; color: var(--subtle); margin-top: 8px; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex; align-items: flex-end;
  padding: 96px 0 64px;
  background-size: cover; background-position: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,20,20,.55), var(--bg) 92%);
}
.page-hero .rail { position: relative; z-index: 1; }

/* ---------- Compliance note ---------- */
.compliance-note {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  font-size: 15px; line-height: 1.6; color: var(--subtle);
}
.compliance-note strong { color: var(--muted); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,20,20,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 80px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; height: 48px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  color: var(--muted); text-decoration: none;
  font: 500 16px/1 var(--font-body);
  transition: color .18s ease;
}
.site-nav a:hover { color: var(--teal-bright); }
.site-nav .nav-cta { color: #fff; }
.site-nav .nav-cta:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px; padding: 12px;
  background: transparent; border: 1px solid var(--line); border-radius: 4px;
  cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  margin-top: 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-grid img { height: 56px; width: auto; display: block; margin-bottom: 16px; }
.footer-tag { color: var(--muted); font-size: 16px; max-width: 320px; }
.footer-ticker {
  margin-top: 16px; color: var(--teal-bright);
  font: 700 16px/1 var(--font-head); letter-spacing: 0.04em;
}
.footer-grid h4 {
  color: var(--text); margin-bottom: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  letter-spacing: 0.04em;
}
.footer-grid a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 16px; padding: 8px 0;
  transition: color .18s ease;
}
.footer-grid a:hover { color: var(--teal-bright); }
.footer-legal {
  border-top: 1px solid var(--line);
  margin-top: 48px; padding-top: 32px;
}
.footer-legal p {
  font-size: 15px; line-height: 1.6; color: var(--subtle);
  max-width: none; margin-bottom: 16px;
}
.footer-legal p:last-child { margin-bottom: 0; }

/* ---------- Forms (dark inputs, teal focus ring; >= 16px text) ---------- */
input, textarea, select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font: 400 16px/1.5 var(--font-body);
  padding: 12px 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
input::placeholder, textarea::placeholder { color: var(--subtle); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(63,181,176,0.28);
}
label {
  display: block; margin-bottom: 8px;
  font: 500 15px/1.3 var(--font-body); color: var(--muted);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--teal); color: #fff;
  padding: 12px 16px; border-radius: 4px; text-decoration: none;
  font: 600 16px/1 var(--font-body);
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Utilities ---------- */
.hidden { display: none !important; }

/* ---------- Reveal-on-scroll animation ----------
   No-JS fallback: content is fully visible by default. The hidden start
   state applies only when the inline bootstrap script has added .js to
   <html>, so content is never trapped behind JS. */
.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 16px 32px 24px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 16px 0; font-size: 18px; }
  .site-nav .nav-cta { margin-top: 8px; text-align: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .rail { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .page-hero { min-height: 400px; }
}

/* ================================================================
   Homepage
   ================================================================ */

/* ---------- Section helpers ---------- */
.section--alt { background: var(--surface); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head .lead {
  margin-top: 16px;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.6; color: var(--muted);
}
.section-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px;
  font: 600 17px/1 var(--font-body); text-decoration: none;
  color: var(--teal-bright);
  transition: gap .18s ease, color .18s ease;
}
.section-link::after { content: "\2192"; font-size: 20px; }
.section-link:hover { color: var(--text); gap: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(600px, 88vh, 880px);
  display: flex; align-items: center;
  padding: 120px 0 96px;
  background-size: cover; background-position: 62% center;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(13,20,20,.94) 0%, rgba(13,20,20,.80) 40%, rgba(13,20,20,.34) 72%, rgba(13,20,20,.62) 100%),
    linear-gradient(180deg, rgba(13,20,20,.30) 0%, rgba(13,20,20,0) 32%, rgba(13,20,20,.78) 100%);
}
.hero .rail { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; }
.hero h1 { margin-top: 24px; max-width: 16ch; }
.hero-sub {
  margin-top: 24px; max-width: 620px;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.6;
  color: var(--muted);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stats-grid .stat {
  margin: 0; padding-top: 24px;
  border-top: 2px solid var(--line);
  transition: border-top-color .2s ease;
}
.stats-grid .stat:hover { border-top-color: var(--teal); }
.stats-grid .stat-value {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05; white-space: nowrap;
}
.stat sup { color: var(--teal-bright); font-size: .42em; font-weight: 600; margin-left: 2px; top: -.7em; }
.stat-label { margin-top: 8px; font-size: 16px; color: var(--muted); }
.stats-foot { margin-top: 32px; max-width: 940px; }

/* ---------- Platform ---------- */
.platform-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 64px; align-items: start;
}
.quote-card {
  margin-top: 32px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 4px; padding: 32px;
}
.quote-card blockquote {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px); line-height: 1.4; color: var(--text);
}
.quote-card cite {
  display: block; margin-top: 16px;
  font-style: normal; font-size: 16px; color: var(--muted);
}
.step-list { border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 28px;
  color: var(--teal-bright); line-height: 1;
}
.step-verb {
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  letter-spacing: 0.08em; color: var(--text);
}
.step p { margin-top: 4px; color: var(--muted); font-size: 17px; }

/* ---------- White Willow teaser ---------- */
.ww-teaser {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 64px; align-items: center;
}
.proof-item { padding: 24px 0; border-top: 1px solid var(--line); }
.proof-item:first-child { padding-top: 0; border-top: none; }
.proof-figure {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1.05;
  color: var(--teal-bright);
}
.proof-item p { margin-top: 8px; color: var(--muted); font-size: 17px; }

/* ---------- Critical metals cards ---------- */
.metal-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-radius: 4px; padding: 40px 32px;
  transition: border-top-color .2s ease, transform .2s ease;
}
.metal-card:hover { border-top-color: var(--teal); transform: translateY(-4px); }
.metal-meta { display: flex; justify-content: space-between; align-items: baseline; }
.metal-symbol {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(64px, 7vw, 96px); line-height: 1; color: var(--teal-bright);
}
.metal-no { font-size: 15px; color: var(--subtle); letter-spacing: 0.04em; }
.metal-name {
  margin-top: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 22px;
}
.metal-hook { margin-top: 8px; color: var(--muted); font-size: 17px; }
.metal-more {
  margin-top: 24px; font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--teal-bright);
}

/* ---------- Why invest pillars ---------- */
.pillar-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar { padding-top: 24px; border-top: 2px solid var(--teal); }
.pillar-index {
  font-family: var(--font-head); font-weight: 800; font-size: 24px;
  color: var(--teal-bright); line-height: 1;
}
.pillar h3 { margin-top: 16px; font-size: 22px; }
.pillar p { margin-top: 12px; color: var(--muted); font-size: 17px; }

/* ---------- Leadership snapshot ---------- */
.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.person {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-radius: 4px; padding: 32px;
  transition: border-top-color .2s ease;
}
.person:hover { border-top-color: var(--teal); }
.person h3 { font-size: 22px; }
.person-role { margin-top: 4px; color: var(--teal-bright); font-size: 16px; font-weight: 600; }
.person-bio { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ---------- Latest news ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px; padding: 32px;
  min-height: 176px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--subtle); font-size: 17px;
}

/* ---------- Homepage responsive ---------- */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid, .ww-teaser, .people { grid-template-columns: 1fr; gap: 40px; }
  .pillar-list, .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { min-height: 560px; padding: 96px 0 64px; background-position: 68% center; }
}

/* ================================================================
   White Willow project page
   ================================================================ */

.page-hero { background-position: 50% 42%; }
.page-hero h1 { margin-top: 24px; }
.page-hero .hero-sub {
  margin-top: 24px; max-width: 680px;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.6; color: var(--muted);
}

/* Location stat row */
.loc-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 64px;
}
.loc-stats .stat { margin: 0; padding-top: 24px; border-top: 2px solid var(--teal); }
.loc-stats .stat-value { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.05; }
.loc-stats .stat-label { margin-top: 8px; font-size: 16px; color: var(--muted); }
.loc-stats sup { color: var(--teal-bright); font-size: .5em; font-weight: 600; top: -.7em; }

/* Overview: balance the tall access photo against shorter text */
.ww-overview { align-items: center; }
.ww-overview .photo-frame img { max-height: 560px; object-fit: cover; }

/* Zonation figure */
.zonation img { background: var(--surface); }

/* Geology / fact definition list */
.geo-fact-list { list-style: none; margin-top: 24px; }
.geo-fact-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.geo-fact-list li:first-child { border-top: 1px solid var(--line); }
.geo-fact-list span {
  color: var(--muted); font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
.geo-fact-list strong {
  color: var(--text); font-family: var(--font-head); font-weight: 700;
  font-size: 18px; text-align: right;
}
.geo-fact-list strong sup { color: var(--teal-bright); font-size: .6em; font-weight: 600; top: -.7em; }

/* Showing proof cards (proof-item rendered as full cards) */
.proof-item.card { padding: 32px; border-top: 4px solid transparent; }
.proof-item.card:first-child { padding: 32px; border-top: 4px solid transparent; }
.proof-item.card:hover { border-top-color: var(--teal); }
.proof-item.card .proof-figure { font-size: clamp(26px, 2.6vw, 34px); }
.proof-item.card p { margin-top: 12px; }
.proof-item.card sup { color: var(--teal-bright); font-size: .7em; font-weight: 600; top: -.6em; }

/* Field gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gallery-grid .photo-frame img { height: 300px; object-fit: cover; }

/* The road ahead timeline (approach, not schedule) */
.timeline { list-style: none; counter-reset: tl; margin-top: 8px; }
.timeline li {
  counter-increment: tl; position: relative;
  margin-left: 20px; padding: 0 0 40px 72px;
  border-left: 2px solid var(--line);
}
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: counter(tl, decimal-leading-zero);
  position: absolute; left: -21px; top: -6px;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 2px solid var(--teal);
  color: var(--teal-bright);
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
}
.tl-verb {
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  letter-spacing: 0.02em; color: var(--text);
}
.timeline p { margin-top: 8px; color: var(--muted); font-size: 17px; max-width: 720px; }

/* White Willow responsive */
@media (max-width: 960px) {
  .loc-stats { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .zonation { margin-top: 8px; }
}
@media (max-width: 720px) {
  .loc-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .photo-frame img { height: 260px; }
  .geo-fact-list li { flex-direction: column; gap: 4px; align-items: flex-start; }
  .geo-fact-list strong { text-align: left; }
}

/* ================================================================
   Critical metals page
   ================================================================ */

/* Metal intro row: periodic-style tile + narrative */
.metal-hero-row {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 64px; align-items: center; margin-bottom: 48px;
}
.metal-tile {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 4px;
  padding: 28px;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.metal-tile-top {
  display: flex; justify-content: space-between; align-items: baseline;
  font: 500 15px/1 var(--font-body);
  letter-spacing: 0.06em; color: var(--muted);
}
.metal-tile-wt { color: var(--subtle); }
.metal-tile-sym {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(72px, 8vw, 120px); line-height: 0.9;
  color: var(--teal-bright);
}
.metal-tile-nm {
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
}
.metal-hero-row .geo-fact-list { margin-top: 24px; }
.metal-hero-row .geo-fact-list sup { color: var(--teal-bright); font-size: .6em; font-weight: 600; top: -.7em; }

/* Chart frame */
.chart-frame {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  margin-top: 8px;
}
.chart-frame img { width: 100%; display: block; border-radius: 4px; }
.chart-frame figcaption {
  font-size: 14px; color: var(--subtle); line-height: 1.5; margin-top: 16px;
}

/* How-Totec-fits tie-back callout */
.tieback {
  margin-top: 32px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-bright);
  border-radius: 4px;
  padding: 24px 28px;
}
.tieback-label {
  font: 600 15px/1 var(--font-body);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-bright);
}
.tieback p { margin-top: 8px; font-size: clamp(18px, 1.4vw, 20px); line-height: 1.55; }
.tieback sup { color: var(--teal-bright); font-size: .6em; font-weight: 600; top: -.7em; }

/* CTA band */
.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px;
}
.cta-band h2 { max-width: 18ch; }
.cta-band .lead { margin-top: 16px; color: var(--muted); font-size: clamp(18px, 1.4vw, 20px); max-width: 40ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Critical metals responsive */
@media (max-width: 960px) {
  .metal-hero-row { grid-template-columns: 1fr; gap: 32px; }
  .metal-tile { aspect-ratio: auto; max-width: 300px; }
  .cta-band { flex-direction: column; align-items: flex-start; gap: 32px; }
}
@media (max-width: 720px) {
  .chart-frame { padding: 20px; }
  .cta-band { padding: 32px; }
}

/* ================================================================
   Investors page
   ================================================================ */

/* Capital structure: the centerpiece table, framed */
.captable-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 4px;
  padding: 8px 32px 20px;
  margin-top: 8px;
}
.captable { font-size: 18px; }
.captable th:last-child, .captable td:last-child { text-align: right; }
.captable td:first-child { color: var(--muted); width: 62%; }
.captable td:last-child {
  color: var(--text); font-family: var(--font-head); font-weight: 700;
  white-space: nowrap; letter-spacing: -0.01em;
}
.captable tr:hover td:first-child { color: var(--text); }
.captable tbody tr:last-child td { border-bottom: none; }
.captable sup { color: var(--teal-bright); font-size: .62em; font-weight: 600; top: -.6em; }
.captable-notes { margin-top: 24px; max-width: none; }

/* Document / filing cards */
.doc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.doc-card {
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-radius: 4px; padding: 32px;
  transition: border-top-color .2s ease, transform .2s ease;
}
.doc-card:hover { border-top-color: var(--teal); transform: translateY(-4px); }
.doc-kicker {
  font: 600 14px/1 var(--font-body); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-bright);
}
.doc-card h3 { font-size: 22px; color: var(--text); }
.doc-card p { color: var(--muted); font-size: 16px; }
.doc-cta {
  margin-top: auto; padding-top: 12px;
  font: 600 15px/1 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-bright); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .18s ease;
}
.doc-cta::after { content: "\2197"; font-size: 18px; }
.doc-cta--dl::after { content: "\2193"; }
.doc-card:hover .doc-cta { gap: 12px; }

/* Email signup form */
.signup-form {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end;
  max-width: 620px; margin-top: 8px;
}
.signup-form > label { grid-column: 1 / -1; margin-bottom: 0; }
.signup-form .btn { width: auto; white-space: nowrap; }

/* Contact strip: phone prominent for a call-first audience */
.contact-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 48px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-bright);
  border-radius: 4px; padding: 40px 48px;
}
.contact-label {
  font: 600 15px/1 var(--font-body); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--subtle); margin-bottom: 12px;
}
.contact-phone {
  display: inline-block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1;
  color: var(--teal-bright); text-decoration: none;
}
.contact-email { font-size: 20px; color: var(--text); text-decoration: none; }
.contact-phone:hover, .contact-email:hover { color: var(--teal-bright); text-decoration: underline; }

/* Investors responsive */
@media (max-width: 960px) {
  .doc-grid { grid-template-columns: 1fr; }
  .contact-strip { gap: 32px; }
}
@media (max-width: 720px) {
  .captable-wrap { padding: 4px 20px 12px; }
  .captable, .captable tbody, .captable tr, .captable td { display: block; width: 100%; }
  .captable thead { display: none; }
  .captable tbody tr { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .captable tbody tr:last-child { border-bottom: none; }
  .captable td { border: none; padding: 4px 0; text-align: left; }
  .captable td:first-child { width: 100%; font-size: 15px; }
  .captable td:last-child { text-align: left; white-space: normal; font-size: 22px; margin-top: 4px; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-form .btn { width: 100%; }
  .contact-strip { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 24px; }
}

/* ================================================================
   Newsroom: index list + article pages
   ================================================================ */

/* ---------- Homepage latest-news cards ---------- */
.news-card {
  display: block; text-align: left; text-decoration: none;
  align-items: stretch; justify-content: flex-start;
  min-height: 0; padding: 32px; color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
a.news-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.news-card .news-date {
  font: 600 14px/1 var(--font-body);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-bright);
}
.news-card .news-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 20px; line-height: 1.25; margin-top: 16px; color: var(--text);
}
.news-card .news-more {
  margin-top: 24px; font-size: 15px; font-weight: 600; color: var(--teal-bright);
}

/* ---------- News index list ---------- */
.news-index-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.rss-link { font-size: 15px; font-weight: 600; color: var(--teal-bright); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.rss-link:hover { text-decoration: underline; }
.news-list { border-top: 1px solid var(--line); }
.news-item {
  display: block; padding: 32px 0; border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left .2s ease;
}
.news-item:hover { padding-left: 8px; }
.news-item .news-date {
  font: 600 14px/1 var(--font-body);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-bright);
}
.news-item .news-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; margin-top: 12px; color: var(--text);
}
.news-item .news-excerpt { margin-top: 12px; color: var(--muted); font-size: 17px; max-width: 800px; }
.news-item .news-more { margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--teal-bright); }
.news-empty { color: var(--muted); }
.news-outlink { color: var(--teal-bright); }

/* ---------- Article page ---------- */
.rail--narrow { max-width: 800px; }
.article { padding-top: 64px; }
.article-back { display: inline-block; font-size: 15px; font-weight: 600; color: var(--teal-bright); text-decoration: none; margin-bottom: 24px; }
.article-back:hover { text-decoration: underline; }
.article-title { font-size: clamp(32px, 4vw, 48px); margin-top: 8px; }
.article-body { margin-top: 40px; }
.article-body p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.article-body p + p { margin-top: 20px; }
.article-body h2 { font-size: clamp(20px, 2.2vw, 26px); color: var(--text); margin-top: 40px; margin-bottom: 8px; }
.article-lead { color: var(--text) !important; font-size: 19px !important; }
.article-source { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 15px; color: var(--subtle); }

/* ================================================================
   About & contact page
   ================================================================ */

/* Company statement: oversized lead paragraph */
.about-statement { max-width: 900px; }
.about-statement p {
  font-size: clamp(20px, 2vw, 26px); line-height: 1.5; color: var(--text);
}
.about-statement p + p { margin-top: 24px; }
.about-statement strong { color: var(--teal-bright); font-weight: 600; }

/* Acquire / explore / develop discipline triad */
.discipline-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.discipline { padding-top: 24px; border-top: 2px solid var(--teal); }
.discipline-verb {
  font-family: var(--font-head); font-weight: 800;
  font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-bright);
}
.discipline p { margin-top: 12px; color: var(--muted); font-size: 17px; }

/* Leadership: card head with monogram avatar (no stock headshots) */
.person-head { display: flex; align-items: center; gap: 20px; }
.person-avatar {
  flex: 0 0 68px; width: 68px; height: 68px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line); border-top: 3px solid var(--teal);
  border-radius: 4px;
  font-family: var(--font-head); font-weight: 800; font-size: 24px;
  letter-spacing: 0.04em; color: var(--teal-bright);
}
.person-head h3 { font-size: 22px; }
.person-head .person-role { margin-top: 4px; }
.person .person-bio { margin-top: 24px; }

/* Strategic backing callout */
.backing {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-bright);
  border-radius: 4px;
  padding: 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.backing .stat-value { white-space: nowrap; }
.backing .backing-body h3 { font-size: clamp(22px, 2.2vw, 28px); }
.backing .backing-body p { margin-top: 12px; color: var(--muted); font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; }

/* Contact: details column + Netlify form */
#contact { scroll-margin-top: 96px; }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-bright);
  border-radius: 4px; padding: 40px;
  display: flex; flex-direction: column; gap: 32px;
}
.contact-card .contact-item { margin: 0; }
.contact-form .form-row { margin-bottom: 20px; }
.contact-form .form-row:last-of-type { margin-bottom: 24px; }
.contact-form textarea { min-height: 148px; resize: vertical; }
.contact-form .btn { width: 100%; }
.contact-note { margin-top: 20px; font-size: 15px; color: var(--subtle); line-height: 1.6; }

@media (max-width: 960px) {
  .discipline-list { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
  .backing { grid-template-columns: 1fr; gap: 24px; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .backing { padding: 32px; }
  .contact-card { padding: 32px 24px; }
}

/* Full-rail map band under the White Willow teaser */
.map-band { margin-top: 64px; }
@media (max-width: 720px) { .map-band { margin-top: 40px; } }
