:root {
  --navy-950: #06111f;
  --navy-900: #0a1728;
  --navy-800: #112640;
  --paper: #f3f0e7;
  --paper-2: #e6e0d2;
  --gold: #f5a90d;
  --gold-2: #b7780c;
  --live: #3ddc84;
  --ink: #101820;
  --ink-2: #2e373d;
  --ink-3: #4f595f;
  --cream: #f8f1df;
  --cream-2: rgba(248, 241, 223, 0.84);
  --cream-3: rgba(248, 241, 223, 0.7);
  --line-dark: rgba(222, 201, 159, 0.18);
  --line-light: rgba(16, 24, 32, 0.14);
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 8px;
  --display: "Iowan Old Style", "New York", Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --h2: clamp(2.3rem, 1.2rem + 3.6vw, 4.6rem);
  --h2-lg: clamp(2.6rem, 1.3rem + 4.4vw, 5.4rem);
  --body-lg: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--navy-950);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

sup {
  font-size: 0.6em;
  line-height: 0;
  vertical-align: super;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px var(--gutter);
  color: #f7f0df;
  border-bottom: 1px solid rgba(222, 201, 159, 0.12);
  background: rgba(6, 17, 31, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 31, 0.92);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand img {
  width: clamp(150px, 16vw, 245px);
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(247, 240, 223, 0.8);
}

.site-nav a {
  padding: 10px 2px;
}

.site-nav a,
.nav-cta {
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.nav-cta:hover {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid rgba(245, 169, 13, 0.55);
  color: #ffe2a3;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta:hover {
  border-color: var(--gold);
}

/* ---------- Type ---------- */

.section {
  padding: clamp(64px, 8vw, 120px) var(--gutter);
}

.section-dark {
  background: radial-gradient(circle at 10% 0%, rgba(245, 169, 13, 0.08), transparent 35%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, #050b15);
  color: var(--cream);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  max-width: 20ch;
  font-size: var(--h2);
}

h2 u {
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
  text-wrap: balance;
}

.hero-body,
.copy-stack p,
.risk-copy p,
.section-heading p,
.policy-copy p,
.entry-copy p,
.map-copy p,
.legacy-copy p,
.setup-copy p,
.setup-lead p,
.exploration-head p,
.drilling-copy p,
.close-copy p,
.form-copy {
  max-width: 62ch;
  font-size: var(--body-lg);
}

/* ---------- Status pill (the one live device) ---------- */

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 14px 9px 12px;
  border: 1px solid rgba(61, 220, 132, 0.45);
  border-radius: 999px;
  background: rgba(61, 220, 132, 0.08);
  color: #b9f5d3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.status-pill.dark {
  border-color: rgba(20, 140, 78, 0.45);
  background: rgba(20, 140, 78, 0.1);
  color: #0f6b3c;
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
  animation: pulse 2.2s var(--ease-out) infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 94svh;
  padding: clamp(112px, 14vw, 180px) var(--gutter) clamp(40px, 6vw, 72px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.82) contrast(1.16) brightness(0.68);
  transform: scale(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 82% 45%, rgba(245, 169, 13, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(5, 11, 21, 0.98) 0%, rgba(5, 11, 21, 0.86) 43%, rgba(5, 11, 21, 0.32) 72%, rgba(5, 11, 21, 0.72) 100%),
    linear-gradient(0deg, rgba(5, 11, 21, 0.98), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 15ch;
  color: #fff7e7;
  font-family: var(--sans);
  font-size: clamp(2.3rem, 1.1rem + 4.6vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.exchange-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.exchange-row span {
  border: 1px solid rgba(245, 169, 13, 0.6);
  color: #ffd36b;
  padding: 8px 12px;
  background: rgba(6, 17, 31, 0.56);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.hero-body {
  color: var(--cream-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ---------- Buttons ---------- */

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--gold);
  color: #111a21;
  border-color: var(--gold);
  box-shadow: 0 8px 24px -10px rgba(245, 169, 13, 0.6);
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover {
    background: #ffb92a;
    box-shadow: 0 12px 28px -10px rgba(245, 169, 13, 0.75);
  }

  .button-secondary:hover {
    border-color: rgba(248, 241, 223, 0.6);
    background: rgba(255, 255, 255, 0.1);
  }
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-color: rgba(248, 241, 223, 0.28);
}

.button[aria-busy="true"] {
  pointer-events: none;
}

.button[aria-busy="true"] .button-label {
  filter: blur(2px);
  opacity: 0.6;
}

.button-label {
  transition: filter 200ms ease, opacity 200ms ease;
}

.hero-brief {
  border: 1px solid rgba(245, 169, 13, 0.38);
  border-top: 4px solid var(--gold);
  padding: 22px;
  background: rgba(5, 11, 21, 0.62);
  color: var(--cream-2);
  font-size: 1.02rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-brief p {
  margin-bottom: 12px;
}

.hero-brief p:last-child {
  margin-bottom: 0;
}

.brief-label {
  color: #b9f5d3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brief-title {
  color: #fff3d6;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.05;
}

.element-card {
  width: 148px;
  min-height: 160px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid rgba(245, 169, 13, 0.68);
  color: #ffd36b;
}

.element-card span,
.element-card small,
.element-card em {
  display: block;
}

.element-card span {
  font-size: 0.9rem;
  font-weight: 600;
}

.element-card strong {
  display: block;
  margin: 10px 0 6px;
  color: #fff7e7;
  font-family: var(--display);
  font-size: 3.8rem;
  line-height: 0.85;
}

.element-card em {
  margin-bottom: 14px;
  color: var(--cream-2);
  font-style: normal;
  font-weight: 700;
}

.element-card small {
  color: rgba(248, 241, 223, 0.66);
  font-size: 0.76rem;
  line-height: 1.35;
}

/* ---------- Marquee ---------- */

.market-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(245, 169, 13, 0.5);
  border-bottom: 1px solid rgba(245, 169, 13, 0.28);
  background: var(--navy-950);
  color: #ffe0a0;
}

.market-marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  animation: marquee 44s linear infinite;
}

.market-marquee span {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.market-marquee span::before {
  content: "◆";
  margin-right: 22px;
  color: var(--gold);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Key numbers ---------- */

.key-numbers {
  position: relative;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-dark);
}

.key-numbers article {
  min-height: 200px;
  padding: 38px clamp(20px, 3vw, 44px) 38px;
  border-right: 1px solid var(--line-dark);
}

.key-numbers article:last-of-type {
  border-right: 0;
}

.key-numbers strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(2.4rem, 1.4rem + 2.8vw, 4.2rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.key-numbers strong small {
  font-size: 0.42em;
  font-family: var(--sans);
  font-weight: 700;
  color: rgba(255, 211, 107, 0.85);
  text-transform: uppercase;
}

.key-numbers span {
  display: block;
  max-width: 26ch;
  color: var(--cream-3);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.key-numbers .is-live strong {
  color: #d5ffe6;
  font-family: var(--sans);
  font-weight: 900;
  text-transform: uppercase;
  align-items: center;
  gap: 14px;
}

.key-numbers .is-live .status-dot {
  width: 0.32em;
  height: 0.32em;
}

.key-numbers-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 0 16px;
  border-top: 1px solid var(--line-dark);
  color: rgba(248, 241, 223, 0.6);
  font-size: 0.8rem;
}

.key-numbers-note a {
  color: #ffd36b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Layout grids ---------- */

.intro-band {
  background:
    linear-gradient(90deg, rgba(245, 169, 13, 0.09), transparent 44%),
    var(--paper);
}

.content-split {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.policy-band,
.project-map,
.legacy,
.setup,
.drilling,
.final-close {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(320px, 470px);
  justify-content: center;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.copy-stack {
  color: var(--ink-2);
}

.three-line {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.three-line span {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

/* ---------- Risk ---------- */

.media-risk {
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 11, 21, 0.96), rgba(5, 11, 21, 0.72) 52%, rgba(5, 11, 21, 0.36)),
    url("china.jpg") center / cover;
}

.risk-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  border-top: 4px solid var(--gold);
  background: rgba(6, 17, 31, 0.66);
}

.risk-copy p {
  color: var(--cream-2);
}

.risk-stat {
  margin: -4px 0 30px;
  color: var(--gold) !important;
  font-family: var(--display);
  font-size: var(--h2-lg) !important;
  font-weight: 700;
  line-height: 0.95;
  max-width: none !important;
}

#substitute-title span,
.line {
  display: block;
}

/* ---------- Applications ---------- */

.applications {
  background: linear-gradient(180deg, #eee9de, var(--paper));
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto clamp(32px, 5vw, 60px);
}

.section-heading p {
  color: var(--ink-2);
}

.application-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.application-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--cream);
}

.application-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.76);
  transition: transform 500ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .application-tile:hover img {
    transform: scale(1.045);
  }
}

.application-tile div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(5, 11, 21, 0.94), rgba(5, 11, 21, 0));
}

.application-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.application-tile strong {
  display: block;
  max-width: 310px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.05;
}

/* ---------- Policy ---------- */

.policy-band {
  align-items: center;
}

.policy-question {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.4);
}

.policy-question span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.policy-question p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.proof-strip {
  grid-column: 1 / -1;
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.3);
}

.proof-strip article {
  padding: 28px clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--line-light);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3.8rem);
  line-height: 0.94;
  font-variant-numeric: tabular-nums;
}

.proof-strip span {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.proof-strip small {
  display: block;
  margin-top: 10px;
  color: var(--ink-3);
  font-size: 0.82rem;
  line-height: 1.45;
}

.policy-columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.policy-columns article {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, 0.09);
}

.policy-columns span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.policy-columns h3 {
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.08;
}

.policy-columns p {
  color: var(--ink-2);
}

.policy-columns footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  color: var(--ink-3);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Project entry / map / legacy ---------- */

.project-map {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(243, 240, 231, 0.94), rgba(243, 240, 231, 0.78) 42%, rgba(6, 17, 31, 0.18)),
    url("goldhaven resources — magno tungsten project  cse goh-1.jpg") center / cover;
  align-items: center;
}

.signal-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 14px 26px;
  border-top: 1px solid rgba(248, 241, 223, 0.18);
  color: var(--cream);
  font-weight: 700;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.signal-list li.is-live {
  color: #d5ffe6;
}

.signal-list li.is-live::before {
  display: none;
}

.signal-list li.is-live .status-dot {
  position: absolute;
  left: 0;
}

.map-signals {
  align-self: center;
  padding: clamp(24px, 4vw, 40px);
  border-top: 4px solid var(--gold);
  background: rgba(6, 17, 31, 0.78);
}

.legacy {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(5, 11, 21, 0.86), rgba(5, 11, 21, 0.62) 45%, rgba(5, 11, 21, 0.9)),
    url("goldhaven resources — magno tungsten project  cse goh-2.jpg") center / cover;
  align-items: center;
}

.legacy-copy p {
  color: var(--cream-2);
}

.legacy-names {
  color: #fff3d6 !important;
  font-family: var(--display);
  font-size: 1.5rem !important;
  font-weight: 700;
}

/* ---------- Resource / disclosure ---------- */

.resource {
  background: linear-gradient(180deg, var(--paper), #e9e2d4);
}

.compliance-note {
  width: min(100%, var(--max));
  margin: 24px auto 0;
  color: var(--ink-3);
  font-size: 0.86rem;
  line-height: 1.55;
}

.compliance-note-lead {
  margin: 0 auto clamp(28px, 4vw, 44px);
  padding: 20px 24px;
  border: 1px solid var(--line-light);
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink-2);
  font-size: 0.95rem;
  max-width: var(--max);
}

.compliance-note-lead strong {
  color: var(--ink);
}

.resource-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.resource-grid article {
  min-height: 200px;
  padding: clamp(24px, 4vw, 40px);
  border-right: 1px solid var(--line-light);
}

.resource-grid article:last-child {
  border-right: 0;
}

.resource-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: clamp(2.6rem, 1.4rem + 3vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.resource-grid span {
  display: block;
  max-width: 26ch;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

/* ---------- Exploration progression ---------- */

.exploration-head {
  width: min(100%, var(--max));
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.exploration-head p {
  color: var(--cream-2);
}

.progression {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.progression li {
  position: relative;
  padding: 28px 32px 28px 0;
  border-top: 1px solid var(--line-dark);
}

.progression li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms var(--ease-out);
}

.progression li.is-visible::before {
  transform: scaleX(1);
}

.progression li.is-visible:nth-child(2)::before { transition-delay: 150ms; }
.progression li.is-visible:nth-child(3)::before { transition-delay: 300ms; }
.progression li.is-visible:nth-child(4)::before { transition-delay: 450ms; }

.progression li::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 34px;
  width: 22px;
  height: 22px;
  background: currentColor;
  color: rgba(248, 241, 223, 0.4);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.progression li:last-child::after {
  display: none;
}

.progression-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #fff3d6;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.progression p {
  margin: 0;
  max-width: 30ch;
  color: var(--cream-3);
  font-size: 0.98rem;
}

.progression li.is-live {
  background: linear-gradient(180deg, rgba(61, 220, 132, 0.08), transparent 70%);
  padding-left: 24px;
  margin-left: -24px;
}

.progression li.is-live::before {
  background: var(--live);
}

.progression li.is-live .progression-step {
  color: #d5ffe6;
}

.progression li.is-live p {
  color: var(--cream-2);
}

/* ---------- Drilling now ---------- */

.drilling {
  background:
    linear-gradient(90deg, rgba(245, 169, 13, 0.12), transparent 36%),
    #e7e0d2;
}

.drilling-copy p {
  color: var(--ink-2);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--ink);
  font-weight: 700;
}

.timeline li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  border: 2px solid rgba(16, 24, 32, 0.28);
}

.timeline li.is-done {
  color: var(--ink-3);
  font-weight: 600;
}

.timeline li.is-done::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gold-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='black'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='black'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.timeline li.is-live {
  color: #0f6b3c;
  font-weight: 800;
}

.timeline li.is-live::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  border: 2px solid var(--live);
  background: radial-gradient(circle, var(--live) 0 3px, transparent 4px);
  animation: pulse 2.2s var(--ease-out) infinite;
}

.timeline li.is-live em {
  font-style: normal;
  text-transform: uppercase;
  font-size: 0.82em;
  letter-spacing: 0.03em;
}


/* ---------- Grain + reveal ---------- */

.section-dark {
  position: relative;
}

.project-entry::after,
.setup::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

[data-reveal],
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

[data-reveal].is-in,
[data-reveal-group].is-in > * {
  opacity: 1;
  transform: none;
}

[data-reveal-group].is-in > :nth-child(2) { transition-delay: 70ms; }
[data-reveal-group].is-in > :nth-child(3) { transition-delay: 140ms; }
[data-reveal-group].is-in > :nth-child(4) { transition-delay: 210ms; }
[data-reveal-group].is-in > :nth-child(5) { transition-delay: 280ms; }

/* ---------- Project entry ---------- */

.project-entry {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 11, 21, 0.97) 0%, rgba(5, 11, 21, 0.86) 50%, rgba(5, 11, 21, 0.55) 100%),
    url("goldhaven resources — magno tungsten project  cse goh-3.jpg") center / cover;
}

.project-entry::before {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -30%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(245, 169, 13, 0.07), transparent);
  transform: rotate(14deg) translateX(0);
  animation: sweep 14s var(--ease-in-out, ease-in-out) infinite;
  pointer-events: none;
}

@keyframes sweep {
  0%, 100% { transform: rotate(14deg) translateX(0); }
  50% { transform: rotate(14deg) translateX(420%); }
}

.entry-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.entry-copy h2 span,
.legacy-copy h2 span,
#pricing-title span {
  color: var(--gold);
}

#pricing-title {
  max-width: 26ch;
}

#pricing-title span {
  display: block;
}

#resource-title span,
#drilling-title span {
  display: block;
  color: var(--gold-2);
}

.entry-copy p {
  color: var(--cream-2);
}

.entry-facts {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  max-width: 560px;
}

.entry-facts div {
  padding: 14px 16px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.entry-facts dt {
  color: rgba(255, 211, 107, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.entry-facts dd {
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.98rem;
}

.entry-facts .is-live dd {
  color: #d5ffe6;
}

.entry-mark {
  position: relative;
  justify-self: center;
  width: min(300px, 60vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.entry-mark img {
  position: relative;
  z-index: 1;
  width: 62%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.entry-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245, 169, 13, 0.32);
  animation: spin 40s linear infinite;
}

.entry-ring::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px 2px rgba(245, 169, 13, 0.55);
}

.entry-ring-2 {
  inset: 11%;
  border-color: rgba(245, 169, 13, 0.18);
  border-style: dashed;
  animation-duration: 64s;
  animation-direction: reverse;
}

.entry-ring-2::before {
  background: var(--live);
  box-shadow: 0 0 16px 2px rgba(61, 220, 132, 0.5);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Setup ---------- */

.setup {
  overflow: hidden;
  align-items: start;
  grid-template-columns: minmax(0, 680px) minmax(300px, 400px);
}

.setup h2 {
  max-width: none;
}

.setup-watermark {
  position: absolute;
  right: -0.08em;
  bottom: -0.32em;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 169, 13, 0.16);
  font-family: var(--display);
  font-size: clamp(18rem, 44vw, 40rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.setup-lead,
.setup-copy {
  position: relative;
  z-index: 1;
}

.setup-lead p,
.setup-copy p {
  color: var(--cream-2);
}

.asymmetry {
  margin-top: 6px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

#setup-title span {
  display: block;
}

#setup-title span:nth-child(3) {
  color: var(--gold);
}

.setup-intro {
  margin-bottom: 18px;
}

.evidence {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.evidence li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 4px 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.evidence li::before {
  content: "";
  grid-row: 1 / span 2;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='black'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='black'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.evidence strong {
  color: #fff3d6;
  font-size: 1.02rem;
}

.evidence span {
  grid-column: 2;
  color: var(--cream-3);
  font-size: 0.9rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.setup-question {
  padding-top: 4px;
  color: #fff3d6 !important;
  font-family: var(--display);
  font-size: 1.25rem !important;
  text-wrap: pretty;
  font-weight: 700;
  line-height: 1.25;
}

/* ---------- Four forces ---------- */

.repricing {
  background: var(--paper);
}

.pricing-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 26px 24px 24px;
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 18px 40px -30px rgba(16, 24, 32, 0.35);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .pricing-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 28px 48px -28px rgba(16, 24, 32, 0.45);
  }
}

.force-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-grid h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.pricing-grid p {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.force-stat {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.force-stat small {
  display: block;
  margin-top: 8px;
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-grid article.is-live {
  border-top-color: var(--live);
  background: linear-gradient(180deg, rgba(61, 220, 132, 0.12), rgba(61, 220, 132, 0.04)), rgba(255, 255, 255, 0.5);
}

.pricing-grid article.is-live h3,
.pricing-grid article.is-live .force-stat,
.pricing-grid article.is-live .force-label {
  color: #0f6b3c;
}

/* ---------- Final close ---------- */

.final-close {
  align-items: start;
}

.close-copy p {
  color: var(--cream-2);
}

#close-title {
  font-size: var(--h2-lg);
}

#close-title span {
  display: block;
}

#close-title span:last-child {
  color: var(--gold);
}

.investor-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line-dark);
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
}

.form-title {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
}

.form-copy {
  color: var(--cream-3);
}

.investor-form label {
  display: grid;
  gap: 8px;
}

.investor-form label span {
  color: var(--cream-3);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.investor-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(248, 241, 223, 0.24);
  border-radius: 0;
  background: rgba(5, 11, 21, 0.4);
  color: var(--cream);
  caret-color: var(--gold);
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.investor-form input::placeholder {
  color: rgba(248, 241, 223, 0.5);
}

.investor-form input:focus {
  border-color: var(--gold);
  background: rgba(5, 11, 21, 0.72);
}

.investor-form input[aria-invalid="true"] {
  border-color: #ff8a80;
}

.investor-form .button {
  width: 100%;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #ffe2a3;
  font-weight: 700;
}

.form-status.is-error {
  color: #ffb4ad;
}

.form-status.is-success {
  color: #b9f5d3;
}

/* ---------- Close actions ---------- */

.close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ---------- Sticky bar ---------- */

.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  width: min(calc(100% - 32px), 880px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 20px;
  border: 1px solid rgba(245, 169, 13, 0.4);
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.9);
  color: var(--cream);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translate(-50%, 0);
  opacity: 1;
  transition: transform 320ms var(--ease-out), opacity 320ms var(--ease-out);
}

.sticky-bar[hidden] {
  display: grid;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 24px);
}

.sticky-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.9rem;
  color: var(--cream-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-bar p strong {
  color: #d5ffe6;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.sticky-sub {
  color: var(--cream-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-bar .button {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.72rem;
}

.sticky-link {
  color: #ffd36b;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.sticky-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(248, 241, 223, 0.2);
  border-radius: 50%;
  background: transparent;
  color: rgba(248, 241, 223, 0.7);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms var(--ease-out);
}

.sticky-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.sticky-close:active {
  transform: scale(0.94);
}

body.has-sticky {
  padding-bottom: 88px;
}

@media (max-width: 680px) {
  .sticky-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 18px;
    padding: 12px 12px 12px 16px;
    bottom: 12px;
  }

  .sticky-bar p {
    grid-column: 1 / -1;
    white-space: normal;
    font-size: 0.84rem;
  }

  .sticky-actions {
    justify-content: space-between;
  }

  .sticky-bar .button {
    width: auto;
    white-space: nowrap;
    padding: 10px 14px;
  }

  .sticky-bar p strong {
    font-size: 0.76rem;
  }

  .sticky-close {
    position: absolute;
    top: -12px;
    right: -6px;
    background: var(--navy-950);
  }
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 42px var(--gutter);
  background: var(--navy-950);
  color: var(--cream);
}

.citations {
  width: min(100%, var(--max));
  margin: 0 auto 52px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.citations summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(248, 241, 223, 0.8);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
}

.citations summary::-webkit-details-marker {
  display: none;
}

.citations-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}

.citations-toggle::before,
.citations-toggle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  margin-top: -1px;
  background: var(--gold);
  transition: transform 200ms var(--ease-out);
}

.citations-toggle::after {
  transform: rotate(90deg);
}

.citations[open] .citations-toggle::after {
  transform: rotate(0deg);
}

.citation-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 4px 0 28px;
  color: rgba(248, 241, 223, 0.74);
  font-size: 0.9rem;
}

.citation-sources {
  max-width: 78ch;
}

.citation-news h3 {
  margin: 4px 0 18px;
  color: rgba(248, 241, 223, 0.86);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.citation-news ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.citation-news li {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.citation-news time {
  color: #ffd36b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.citation-news li.is-live time {
  color: #b9f5d3;
}

.citation-news li.is-live time::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--live);
  vertical-align: 1px;
}

.citation-news li a {
  color: rgba(248, 241, 223, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
  text-wrap: pretty;
  transition: color 160ms ease;
}

.citation-news li a:hover {
  color: var(--gold);
}

.news-all {
  display: inline-block;
  margin-top: 16px;
  color: #ffd36b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 211, 107, 0.4);
  transition: text-decoration-color 160ms ease;
}

.news-all:hover {
  text-decoration-color: var(--gold);
}

.citation-body ol {
  margin: 0 0 20px;
  padding-left: 1.4em;
}

.citation-body li {
  margin-bottom: 12px;
  line-height: 1.55;
}

.citation-body li::marker {
  color: var(--gold);
  font-weight: 700;
}

.citation-body strong {
  color: #ffe2a3;
}

.citation-qp {
  margin: 0 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: rgba(248, 241, 223, 0.8);
  font-size: 0.86rem;
}

.citation-qp strong,
.footer-qp strong {
  color: #ffe2a3;
}

.footer-qp {
  width: min(100%, var(--max));
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(248, 241, 223, 0.66);
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-qp p {
  max-width: 80ch;
  margin: 0 0 12px;
}

.footer-qp a {
  color: #ffd36b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-tickers {
  color: #ffd36b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.citation-disclaimer {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
  color: rgba(248, 241, 223, 0.62);
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: clamp(28px, 5vw, 76px);
}

.footer-grid h2 {
  margin: 0 0 22px;
  font-family: var(--sans);
  color: rgba(248, 241, 223, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 12px;
  color: rgba(248, 241, 223, 0.7);
  font-size: 0.98rem;
}

.footer-grid a {
  padding: 6px 0;
  margin-bottom: 4px;
  transition: color 160ms ease;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-company img {
  width: 240px;
  margin-bottom: 24px;
}

.footer-company p {
  max-width: 360px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(248, 241, 223, 0.18);
  border-radius: 50%;
  color: rgba(248, 241, 223, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.socials a:hover {
  border-color: var(--gold);
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 28px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(248, 241, 223, 0.6);
  font-size: 0.85rem;
}

.footer-bottom strong {
  color: var(--gold);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .progression {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }

  .progression li:nth-child(2)::after {
    display: none;
  }

  .progression li.is-live {
    margin-left: 0;
    padding-left: 16px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-grid,
  .content-split,
  .policy-band,
  .project-map,
  .legacy,
  .setup,
  .drilling,
  .final-close {
    grid-template-columns: 1fr;
  }

  .entry-inner {
    grid-template-columns: 1fr;
  }

  .entry-mark {
    width: min(240px, 55vw);
    justify-self: start;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid article {
    min-height: 0;
  }

  .setup-watermark {
    font-size: 22rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-brief {
    max-width: 620px;
  }

  .three-line span,
  .application-tile strong {
    font-size: 1.2rem;
  }

  .policy-columns {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .key-numbers {
    grid-template-columns: 1fr;
  }

  .key-numbers article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .key-numbers article:last-of-type {
    border-bottom: 0;
  }

  .resource-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .citation-body {
    grid-template-columns: 1fr;
  }

  .resource-grid article:nth-child(2) {
    border-right: 0;
  }

  .resource-grid article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-light);
  }

  .application-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-map,
  .legacy,
  .media-risk {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
  }

  .site-header {
    gap: 10px;
    padding: 12px var(--gutter);
  }

  .brand img {
    width: 138px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-media {
    object-position: 70% center;
  }

  .status-pill {
    font-size: 0.68rem;
    padding: 8px 12px 8px 10px;
  }

  .exchange-row span {
    padding: 7px 9px;
    font-size: 0.66rem;
  }

  .hero-brief {
    padding: 18px;
    font-size: 0.98rem;
  }

  .element-card {
    width: 128px;
    min-height: 140px;
    padding: 12px;
  }

  .element-card strong {
    font-size: 3rem;
  }

  .market-marquee div {
    animation-duration: 34s;
  }

  .three-line {
    grid-template-columns: 1fr;
  }

  .three-line span {
    min-height: 0;
    padding: 14px 16px;
    font-size: 1.1rem;
  }

  .button {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .resource-grid,
  .footer-grid,
  .pricing-grid,
  .application-grid,
  .progression {
    grid-template-columns: 1fr;
  }

  .resource-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .resource-grid article:last-child {
    border-top: 0;
    border-bottom: 0;
  }

  .application-tile {
    aspect-ratio: 4 / 3;
  }

  .progression li {
    padding: 22px 0;
  }

  .progression li::after {
    display: none;
  }

  .progression li.is-live {
    padding-left: 16px;
  }

  .entry-facts {
    grid-template-columns: 1fr;
  }

  .compliance-note-lead {
    padding: 16px 18px;
  }

  .footer-company img {
    width: 200px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .market-marquee div {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    padding: 14px var(--gutter);
    row-gap: 8px;
  }

  .status-dot,
  .timeline li.is-live::before {
    animation: none !important;
  }

  .progression li::before {
    transform: scaleX(1);
  }
}
