/* #region Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
/* #endregion */

/* #region Container */
.container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 56.25em) {
  .container { padding: 0 3rem; }
}
/* #endregion */

/* #region Lucide Icons */
[data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Topbar icons */
.topbar-icon[data-lucide] {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2;
  opacity: 0.5;
}

/* Nav chevron */
.nav-chevron[data-lucide],
svg.nav-chevron {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2;
}

/* Dropdown arrow in fullscreen menu sub-links — not needed */

/* Button arrows */
.btn-primary [data-lucide],
.btn-outline [data-lucide] {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

/* Read more link arrow */
.news-read-more [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.news-read-more:hover [data-lucide] {
  transform: translateX(0.25rem);
}

/* Pillar icons */
.pillar-icon [data-lucide] {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--teal-light);
  stroke-width: 1.5;
}

/* News card background icons */
.news-img-icon [data-lucide] {
  width: 3.5rem;
  height: 3.5rem;
  stroke-width: 1;
  opacity: 0.25;
}
/* #endregion */

/* #region Topbar */
.site-topbar {
  display: none;
}

@media (min-width: 56.25em) {
  .site-topbar {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    height: 2.25rem;
    background: var(--charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-topbar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
  }

  .site-topbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.topbar-symbols {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-sym-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

a.topbar-sym-item:hover { opacity: 0.7; }

.topbar-exchange {
  color: rgba(255, 255, 255, 0.4);
}

.topbar-sym-sep {
  color: rgba(255, 255, 255, 0.25);
}

.topbar-sym {
  color: var(--teal-light);
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03125rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-contact-link:hover { color: rgba(255, 255, 255, 0.8); }
/* #endregion */

/* #region Nav */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, top 0.35s ease;
}

nav.is-scrolled {
  background: var(--charcoal);
  backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

@media (min-width: 56.25em) {
  nav { top: 2.25rem; }
  nav.is-scrolled { top: 0; }
}

nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 4.5rem;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: height 0.35s ease;
}

@media (max-width: 31.25em) {
  .nav-logo-img { height: 3rem; }
}

nav.is-scrolled .nav-logo-img {
  height: 3.5rem;
}

@media (max-width: 31.25em) {
  nav.is-scrolled .nav-logo-img { height: 2.5rem; }
}

.nav-ticker {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 2rem;
}

.nav-subscribe-btn {
  display: none;
  font-size: 0.6875rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--gold);
  border: none;
  padding: 0.4375rem 0.875rem;
  border-radius: 0.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav-subscribe-btn:hover {
  background: var(--teal);
  color: #fff;
}

@media (min-width: 56.25em) {
  .nav-subscribe-btn { display: inline-block; }
}

.nav-links {
  display: none;
  gap: 1.75rem;
  list-style: none;
}

@media (min-width: 56.25em) {
  .nav-links {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }
}

.nav-links .nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  cursor: pointer;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active { color: var(--teal-light); }

.nav-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-has-dropdown {
  position: relative;
}

/* Transparent bridge fills the gap so hover isn't lost when moving to dropdown */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 0.875rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.875rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 14, 14, 0.97);
  backdrop-filter: blur(0.75rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--teal);
  min-width: 12rem;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
}

.nav-dropdown-link {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  color: var(--teal-light);
  background: rgba(196, 154, 53, 0.08);
}

/* Hamburger — span-based with morph to X */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}

.nav-hamburger:hover { border-color: var(--teal-light); color: var(--teal-light); }

.hbg-line {
  display: block;
  width: 1.125rem;
  height: 0.125rem;
  background: currentColor;
  border-radius: 0.0625rem;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.is-open .hbg-line:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.nav-hamburger.is-open .hbg-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .hbg-line:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

@media (min-width: 56.25em) {
  .nav-hamburger { display: none; }
}
/* #endregion */

/* #region Fullscreen Menu */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.fs-menu.is-open {
  visibility: visible;
  pointer-events: all;
}

.fs-menu-bg {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
  clip-path: circle(0% at calc(100% - 2.625rem) 2.25rem);
  transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}

.fs-menu.is-open .fs-menu-bg {
  clip-path: circle(160% at calc(100% - 2.625rem) 2.25rem);
}

.fs-menu-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s, color 0.2s;
}

.fs-menu.is-open .fs-menu-close {
  opacity: 1;
  transform: rotate(0deg);
}

.fs-menu-close:hover {
  color: var(--gold);
}

.fs-menu-close [data-lucide] {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 2;
}

.fs-menu-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  max-width: 37.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 37.5em) {
  .fs-menu-content { padding: 2.5rem 3rem; }
}

/* Header row */
.fs-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
}

.fs-menu.is-open .fs-menu-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.fs-menu-logo img {
  height: 2.5rem;
  width: auto;
  display: block;
  opacity: 0.85;
  filter: brightness(1.15);
}

/* Nav items */
.fs-menu-nav {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  padding: 1rem 0 0;
  background: none;
  backdrop-filter: none;
  border-bottom: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
}

.fs-menu-item {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-menu-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-menu-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.0625rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1;
  padding: 0.75rem 0;
  transform: translateY(100%);
  opacity: 0;
  transition: color 0.2s, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}

.fs-menu.is-open .fs-menu-link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: calc(var(--i, 0) * 0.07s + 0.3s);
}

.fs-menu-link:hover,
.fs-menu-link.active {
  color: var(--gold);
}

a.fs-menu-link:hover {
  padding-left: 0.75rem;
}

/* Sub-links */
.fs-menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fs-menu-arrow {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.fs-menu-item.sub-open .fs-menu-arrow {
  transform: rotate(180deg);
}

.fs-menu-sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 0.5rem;
}

.fs-menu-item.sub-open .fs-menu-sub {
  max-height: 20rem;
  padding: 0.5rem 0 0.75rem 0.5rem;
}

.fs-menu-sub-link {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.fs-menu-sub-link:hover { color: var(--gold); }

body.fs-open #site-nav {
  visibility: hidden;
}

@media (min-width: 56.25em) {
  .fs-menu { display: none; }
}
/* #endregion */

/* #region Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 3.75rem;
  background: var(--charcoal);
  overflow: hidden;
}

@media (min-width: 56.25em) {
  .hero { padding: 0 0 5rem; }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}


.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10, 9, 5, 0.82) 0%,
      rgba(10, 9, 5, 0.55) 40%,
      rgba(10, 9, 5, 0.82) 100%),
    linear-gradient(135deg, rgba(196, 154, 53, 0.12) 0%, transparent 55%);
}

.hero-orbit-wrap {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 80vw;
  max-width: 43.75rem;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.07;
  z-index: 2;
}

@media (min-width: 56.25em) {
  .hero-orbit-wrap {
    top: 50%;
    transform: translateY(-50%);
    right: -5%;
    width: 55vw;
    opacity: 0.1;
  }
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--teal-light);
}

.orbit-ring:nth-child(1) {
  inset: 10%;
  animation: spin 18s linear infinite;
}

.orbit-ring:nth-child(2) {
  inset: 22%;
  border-color: var(--orange);
  animation: spin 12s linear infinite reverse;
  transform: rotate(60deg);
}

.orbit-ring:nth-child(3) {
  inset: 35%;
  animation: spin 24s linear infinite;
  transform: rotate(30deg);
}

.orbit-dot {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal-light);
  top: 50%;
  left: -0.25rem;
  transform: translateY(-50%);
}

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

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 45rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--teal-light);
}

.hero-h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 7.5rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.5rem;
}

.hero-h1 span {
  color: var(--teal-light);
  font-style: italic;
  display: block;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.6;
  max-width: 30rem;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.8); }
}
/* #endregion */

/* #region Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }
/* #endregion */

/* #region Stats Bar */
.stats-bar {
  background: var(--charcoal-mid);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-bar > .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 43.75em) {
  .stats-bar > .container { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--teal-light);
  line-height: 1;
  letter-spacing: 0.0625rem;
}

.stat-label {
  font-size: 0.625rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.375rem;
  font-weight: 500;
}
/* #endregion */

/* #region Section Commons */
section {
  padding: 5rem 0;
}

@media (min-width: 56.25em) {
  section { padding: 6.25rem 0; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.625rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--teal);
}

.section-h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-h2 em {
  font-style: italic;
  color: var(--teal);
}

.section-intro {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 36.25rem;
}
/* #endregion */

/* #region About */
.about { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
  align-items: start;
}

@media (min-width: 56.25em) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.about-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.about-meta-value {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9375rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pillar {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(196, 154, 53, 0.15);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
}

.pillar:hover {
  transform: translateY(-0.1875rem);
  border-color: rgba(196, 154, 53, 0.4);
}

.pillar-icon {
  margin-bottom: 0.875rem;
  display: flex;
}

.pillar-title {
  font-size: 0.6875rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.pillar-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}
/* #endregion */

/* #region Why Uranium */
.why-uranium {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-uranium .section-h2    { color: #fff; }
.why-uranium .section-intro  { color: rgba(255, 255, 255, 0.55); }
.why-uranium .section-eyebrow { color: var(--teal-light); }
.why-uranium .section-eyebrow::before { background: var(--teal-light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 3.5rem;
}

@media (min-width: 43.75em) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 68.75em) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  background: #222222;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.why-card:hover { background: rgba(196, 154, 53, 0.65); }
.why-card:hover::after { transform: scaleX(1); }

.why-card-tag {
  display: inline-block;
  font-size: 0.5625rem;
  letter-spacing: 0.15625rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 700;
  border: 1px solid rgba(196, 154, 53, 0.4);
  padding: 0.25rem 0.625rem;
  margin-bottom: 1.25rem;
}

.why-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.why-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.15;
  color: #fff;
}

.why-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

/* #region WHY URANIUM — BG CYCLE */
.why-uranium .container { position: relative; z-index: 1; }

.why-bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.why-bg-img.is-active { opacity: 0.1; }

.why-bg-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.12;
  pointer-events: none;
}

.why-card.is-active { background: rgba(196, 154, 53, 0.65); }
.why-card.is-active::after { transform: scaleX(1); }
/* #endregion */
/* #endregion */

/* #region Market Strip */
.market-strip {
  background: var(--teal-dark);
  padding: 3rem 0;
  text-align: center;
}

.market-strip > .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 43.75em) {
  .market-strip > .container { grid-template-columns: repeat(3, 1fr); }
}

.mstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.25rem;
  color: #fff;
  line-height: 1;
}

.mstat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.mstat-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
  font-weight: 300;
}

.mstat-sources {
  grid-column: 1 / -1;
  font-size: 0.625rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}
/* #endregion */

/* #region Projects */
.projects { background: #fff; }

.project-card {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

@media (min-width: 56.25em) {
  .project-card { grid-template-columns: 1fr 1fr; }
}

.project-map {
  background: linear-gradient(135deg, #131108 0%, #1e1a0a 50%, #0d0c06 100%);
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-map-svg {
  width: 85%;
  max-width: 22.5rem;
  opacity: 0.85;
}

.project-map-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.project-info {
  padding: 3rem 2.5rem;
  background: #fff;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
}

.project-badge::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--teal-light);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.project-info h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.project-info .sub {
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.project-info p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.project-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.spec { display: flex; flex-direction: column; }

.spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--teal);
  line-height: 1;
}

.spec-key {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.exploration-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.expl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.expl-item::before {
  content: '';
  flex-shrink: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: var(--teal-light);
  margin-top: 0.5rem;
}
/* #endregion */

/* #region News */
.news { background: var(--off-white); }

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 43.75em) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 62.5em) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 0.1875rem solid var(--gold);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.1);
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.news-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.2s;
}

.news-pdf-btn:hover { background: var(--teal-light); }

.news-pdf-btn.disabled {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  cursor: default;
}

.news-pdf-btn [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
}

.news-date {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.news-card-body h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.1875rem;
  line-height: 1.3;
  margin-bottom: 0.625rem;
  color: var(--charcoal);
}

.news-card-body p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.news-read-more:hover { gap: 0.625rem; }
/* #endregion */

/* #region CTA Banner */
.cta-banner {
  background: var(--charcoal);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 56.25em) {
  .cta-banner { padding: 6.25rem 0; }
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196, 154, 53, 0.15) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 37.5rem;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.cta-ctas {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-details {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-contact-label {
  font-size: 0.6875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.cta-contact-value {
  color: var(--teal-light);
  font-size: 0.9375rem;
  font-weight: 500;
}

.cta-contact-value.muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}
/* #endregion */

/* #region Footer */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.5);
  padding: 3.75rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

@media (min-width: 43.75em) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; }
}

.footer-logo {
  display: block;
  width: 10rem;
  height: auto;
}

.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  max-width: 16.25rem;
}

.footer-col h5 {
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-disclaimer {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* #endregion */

/* #region Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}
/* #endregion */

/* #region Page Banner */
.page-banner {
  background: var(--charcoal);
  padding: 11rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-banner .section-eyebrow {
  margin-bottom: 0.5rem;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 0% 60%, rgba(196, 154, 53, 0.13) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-dark), transparent);
}

.page-banner > .container { position: relative; z-index: 1; }

.page-banner-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0.875rem 0 1rem;
}

.page-banner-title em {
  font-style: italic;
  color: var(--teal-light);
}

.page-banner-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 34rem;
  font-weight: 300;
}

.release-banner .page-banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  max-width: 50rem;
}

.page-banner-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.page-banner-date {
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

#page-content .page-banner {
  background: var(--charcoal) url('images/hero-bg.png') center top / cover no-repeat !important;
}

#page-content .page-banner::before {
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.75) 0%, rgba(17, 17, 17, 0.75) 100%), radial-gradient(ellipse 80% 100% at 0% 60%, rgba(196, 154, 53, 0.13) 0%, transparent 60%) !important;
}
/* #endregion */

/* #region Page Transitions */
#page-content {
  transition: opacity 0.22s ease;
}

#page-content.is-transitioning {
  opacity: 0;
  pointer-events: none;
}

/* #endregion */

/* #region Preloader */
#page-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

#page-preloader.is-visible {
  opacity: 1;
  pointer-events: all;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo-wrap {
  position: relative;
  width: 16rem;
  max-width: 80vw;
}

.preloader-logo-base {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.15;
}

.preloader-logo-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(0% 100%, 0% 100%, 0% 100%);
  transition: clip-path 0.4s ease-out;
}

.preloader-logo-bright {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}
/* #endregion */

/* #region Project Grid Cards */
.proj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 48em) {
  .proj-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 75em) {
  .proj-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.proj-grid-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proj-grid-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.proj-grid-accent {
  height: 0.1875rem;
  background: var(--teal);
  flex-shrink: 0;
}

.proj-grid-accent.orange { background: var(--orange); }

.proj-grid-thumb {
  height: 17rem;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.proj-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.proj-grid-card:hover .proj-grid-thumb img { transform: scale(1.03); }

.proj-grid-thumb-label {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-size: 0.5rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}

.proj-grid-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proj-grid-location {
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.proj-grid-location.orange { color: var(--orange); }

.proj-grid-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.proj-grid-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 1.25rem;
  list-style: none;
  padding-left: 0;
}

.proj-grid-hl-label {
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}

.proj-grid-hl-label.orange { color: var(--orange); }

.proj-grid-hl-item {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.proj-grid-hl-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: var(--gold);
}

.proj-grid-overview {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.proj-grid-cta {
  margin-top: 1.75rem;
}
/* #endregion */

/* #region News Archive Page */
.news-archive-section {
  background: var(--off-white);
}

.news-year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.news-year-tab {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.09375rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-muted);
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-year-tab:hover,
.news-year-tab.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 43.75em) {
  .news-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 62.5em) {
  .news-archive-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-archive-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}

.news-archive-empty h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.news-archive-empty a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}

.news-archive-empty a:hover { gap: 0.875rem; }
/* #endregion */

/* #region Team Page */
.team-section {
  background: var(--warm-white);
}

.team-advisors-section {
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 56.25em) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: grid;
  grid-template-columns: 14rem 1fr;
  transition: transform 0.25s, box-shadow 0.25s;
}

@media (max-width: 43.74em) {
  .team-card { grid-template-columns: 10rem 1fr; }
}

.team-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.09);
}

.team-portrait {
  background: linear-gradient(135deg, #1a1408, #2e2010);
  position: relative;
  overflow: hidden;
  min-height: 12rem;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: absolute;
  inset: 0;
}

.team-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-portrait-placeholder svg {
  width: 4rem;
  height: 4rem;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1;
  fill: none;
}

.team-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.125rem;
}

.team-card-credentials {
  font-size: 0.625rem;
  letter-spacing: 0.0625rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.team-card-position {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.team-card-bio {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.advisors-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.advisor-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

@media (min-width: 43.75em) {
  .advisor-card { grid-template-columns: 6.25rem 1fr; }
}

.advisor-card:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.07);
}

.advisor-portrait {
  width: 100%;
  height: 7.5rem;
  background: linear-gradient(135deg, #1a1408, #2e2010);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 43.75em) {
  .advisor-portrait {
    height: 100%;
    min-height: 7rem;
  }
}

.advisor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.advisor-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisor-portrait-placeholder svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1;
  fill: none;
}

.advisor-card-body {
  padding: 1.25rem 1.5rem;
}

.advisor-card-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.125rem;
}

.advisor-card-credentials {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}

.advisor-card-position {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.875rem;
}

.advisor-card-bio {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.team-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}

.team-empty h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
/* #endregion */

/* #region Stock Page */
.stock-chart-section {
  background: var(--charcoal);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stock-exchange-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stock-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stock-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(196, 154, 53, 0.3);
}

.stock-tab.is-active {
  background: rgba(196, 154, 53, 0.12);
  border-color: var(--gold);
}

.stock-tab-exchange {
  font-size: 0.625rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.stock-tab.is-active .stock-tab-exchange {
  color: var(--gold);
}

.stock-tab-ticker {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05rem;
}

.stock-tab.is-active .stock-tab-ticker {
  color: #fff;
}

.stock-chart-wrap {
  height: 28rem;
  position: relative;
}

@media (min-width: 56.25em) {
  .stock-chart-wrap { height: 34rem; }
}

.stock-chart-wrap .tradingview-widget-container {
  width: 100%;
  height: 100%;
}

.stock-chart-wrap .tradingview-widget-copyright {
  font-size: 0.625rem;
  text-align: center;
  padding: 0.5rem 0 1rem;
  color: rgba(255, 255, 255, 0.2);
}

.stock-chart-wrap .tradingview-widget-copyright a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.stock-shares-section {
  background: var(--warm-white);
}

.shares-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 56.25em) {
  .shares-grid { grid-template-columns: repeat(4, 1fr); }
}

.share-stat {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.share-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}

.share-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
  letter-spacing: 0.0625rem;
}

.share-stat-label {
  font-size: 0.625rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 600;
}

.shares-updated {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  letter-spacing: 0.03125rem;
  text-align: right;
}

.stock-schedule-section {
  background: var(--off-white);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 56.25em) {
  .schedule-grid { grid-template-columns: 1fr 1fr; }
}

.schedule-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.schedule-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--charcoal);
}

.schedule-card-header h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03125rem;
}

.schedule-card-header span {
  font-size: 0.625rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 600;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.schedule-table thead th {
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-size: 0.625rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.schedule-table tbody td {
  padding: 0.75rem 1.25rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule-table tbody tr:last-child td { border-bottom: none; }

.schedule-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.schedule-table .col-amount { text-align: right; }
.schedule-table .col-price  { text-align: right; }

.schedule-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(196, 154, 53, 0.04);
}

.schedule-total-label {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.schedule-total-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--teal);
  letter-spacing: 0.0625rem;
}

.schedule-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
}

.stock-no-symbols {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}
/* #endregion */

/* #region Contact Page */
.contact-section {
  background: var(--warm-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  align-items: start;
}

@media (min-width: 56.25em) {
  .contact-layout { grid-template-columns: 1fr 1.5fr; gap: 5rem; }
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(196, 154, 53, 0.08);
  border: 1px solid rgba(196, 154, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-info-icon [data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 1.75;
}

.contact-info-label {
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.contact-info-value a:hover { color: var(--teal-light); }

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.375rem 0.75rem;
  transition: color 0.2s, border-color 0.2s;
}

.contact-social-link:hover {
  color: var(--teal);
  border-color: rgba(196, 154, 53, 0.3);
}

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 2.5rem;
  position: relative;
}

@media (min-width: 43.75em) {
  .contact-form-card { padding: 3rem; }
}

.contact-form-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 31.25em) {
  .contact-form { grid-template-columns: 1fr 1fr; }
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-field.full { grid-column: 1 / -1; }

.contact-field label {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  appearance: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--teal);
  background: #fff;
}

.contact-field textarea {
  resize: none;
  height: 12rem;
}

.contact-subscribe-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.contact-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.contact-checkbox [data-lucide] {
  width: 0.75rem;
  height: 0.75rem;
  stroke: #fff;
  stroke-width: 3;
  opacity: 0;
  transition: opacity 0.15s;
}

.contact-subscribe-row.is-checked .contact-checkbox {
  background: var(--teal);
  border-color: var(--teal);
}

.contact-subscribe-row.is-checked .contact-checkbox [data-lucide] { opacity: 1; }

.contact-subscribe-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-hp { display: none !important; }

.contact-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 0.9375rem 2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.contact-submit:hover { background: var(--teal-light); }
.contact-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.contact-submit [data-lucide] {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(0.25rem);
}

.contact-modal.is-open { display: flex; }

.contact-modal-inner {
  background: #fff;
  max-width: 28rem;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(1rem) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.contact-modal-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-modal-icon [data-lucide] {
  width: 3rem;
  height: 3rem;
  stroke-width: 1.5;
}

.contact-modal.is-success .contact-modal-icon [data-lucide] { stroke: var(--teal); }
.contact-modal.is-error   .contact-modal-icon [data-lucide] { stroke: var(--orange); }

.contact-modal h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}

.contact-modal p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.contact-modal-close {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.contact-modal-close:hover { background: var(--teal-light); }
/* #endregion */

/* #region Legal Page */
.legal-section {
  background: var(--warm-white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: start;
}

@media (min-width: 62.5em) {
  .legal-layout { grid-template-columns: 14rem 1fr; gap: 4rem; }
}

.legal-toc {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.5rem;
}

@media (min-width: 62.5em) {
  .legal-toc { position: sticky; top: 6rem; }
}

.legal-toc-title {
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.legal-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.legal-toc-list a {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.375rem 0.5rem;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  line-height: 1.4;
}

.legal-toc-list a:hover {
  color: var(--teal);
  border-left-color: var(--teal);
  background: rgba(196, 154, 53, 0.04);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-updated {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.legal-block {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-top: 0.25rem;
  scroll-margin-top: 7rem;
}

.legal-block h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.625rem;
}

.legal-block h3:first-child { margin-top: 0; }

.legal-block p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block p strong { color: var(--charcoal); font-weight: 600; }

.legal-block ul,
.legal-block ol {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-block li { margin-bottom: 0.375rem; }
.legal-block ul li::marker { color: var(--teal-light); }
.legal-block ol li::marker { color: var(--teal); }

.legal-block a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(196, 154, 53, 0.35);
  text-underline-offset: 0.125rem;
  transition: color 0.2s;
}

.legal-block a:hover { color: var(--teal-light); }

.legal-caps {
  font-size: 0.875rem !important;
  font-weight: 600;
  color: var(--charcoal) !important;
  line-height: 1.65 !important;
}
/* #endregion */

/* #region Release Page */
.release-section {
  background: var(--warm-white);
}

.release-top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.release-back-row {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.release-body {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 2.5rem;
}

@media (min-width: 43.75em) {
  .release-body { padding: 3.5rem; }
}

.release-body h2,
.release-body h3,
.release-body h4,
.release-body h5 {
  font-family: 'Instrument Sans', sans-serif;
  color: var(--charcoal);
  line-height: 1.3;
}

.release-body h2 { font-size: 1.625rem; margin: 1.75rem 0 0.875rem; }
.release-body h2:first-child { margin-top: 0; }
.release-body h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.release-body h4 { font-size: 1.0625rem; color: var(--teal); margin: 1.25rem 0 0.5rem; }

.release-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.release-body ul,
.release-body ol {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.release-body li { margin-bottom: 0.375rem; }
.release-body ul li::marker { color: var(--teal-light); }
.release-body ol li::marker { color: var(--teal); }

.release-body strong, .release-body b { color: var(--charcoal); font-weight: 600; }
.release-body em, .release-body i { color: var(--charcoal); }

.release-body a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(196, 154, 53, 0.35);
  text-underline-offset: 0.125rem;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.release-body a:hover {
  color: var(--teal-light);
  text-decoration-color: var(--teal-light);
}

.release-body hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}

.release-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  margin: 1rem 0;
}

.release-body .table-wrap {
  position: relative;
  margin: 1.75rem 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.release-body .table-wrap table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  font-size: 0.875rem;
}

.release-body .table-wrap th {
  background: var(--charcoal);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.03125rem;
}

.release-body .table-wrap td {
  padding: 0.625rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.release-body .table-wrap tr:last-child td { border-bottom: none; }
.release-body .table-wrap tbody tr:nth-child(even) td { background: rgba(0, 0, 0, 0.02); }

.release-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0.25rem;
}

.release-pdf-btn:hover { background: var(--teal); }
.release-pdf-btn.is-disabled { background: rgba(0, 0, 0, 0.08); color: var(--text-muted); cursor: default; }
.release-pdf-btn.is-disabled:hover { background: rgba(0, 0, 0, 0.08); }

.release-pdf-btn [data-lucide] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.release-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.release-back-link:hover { gap: 0.75rem; }

.release-back-link [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
}

.release-not-found {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}

.release-not-found h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
/* #endregion */

/* #region Presentations Page */
.presentations-section {
  background: var(--warm-white);
}

.presentations-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pres-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

@media (min-width: 43.75em) {
  .pres-card { grid-template-columns: 14rem 1fr; }
}

.pres-card:hover {
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.09);
}

.pres-cover {
  position: relative;
  background: linear-gradient(135deg, #1a1408, #2e2010);
  cursor: pointer;
  overflow: hidden;
  min-height: 10rem;
}

@media (min-width: 43.75em) {
  .pres-cover { min-height: 0; }
}

.pres-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pres-card:hover .pres-cover img {
  transform: scale(1.04);
}

.pres-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.pres-card:hover .pres-cover-overlay {
  background: rgba(196, 154, 53, 0.3);
}

.pres-cover-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}

.pres-card:hover .pres-cover-icon {
  opacity: 1;
  transform: scale(1);
}

.pres-cover-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  margin-left: 0.125rem;
}

.pres-cover-placeholder {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pres-cover-placeholder svg {
  width: 3rem;
  height: 3rem;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1;
  fill: none;
}

.pres-body {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.pres-date {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pres-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.pres-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pres-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pres-btn-primary {
  background: var(--teal);
  color: #fff;
}

.pres-btn-primary:hover { background: var(--teal-light); }

.pres-btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--charcoal);
}

.pres-btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.pres-btn [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
}

.pres-empty {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}

.pres-empty h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
/* #endregion */

/* #region Project Pages — Hero */
.proj-hero {
  background: linear-gradient(135deg, #0a0805 0%, #1a1408 40%, #0d0b04 100%);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 56.25em) {
  .proj-hero { padding: 12rem 0 6.25rem; }
}

.proj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(212, 176, 80, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.proj-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 62.5em) {
  .proj-hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.proj-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}

.proj-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.proj-hero-breadcrumb a:hover { color: var(--teal-light); }

.proj-hero-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.15);
}

.proj-hero h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}

.proj-hero h1 em {
  font-style: italic;
  color: var(--teal-light);
  display: block;
}

.proj-hero-sub {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.proj-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.proj-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(212, 176, 80, 0.35);
  color: var(--teal-light);
}

.proj-hero-tag.tag-active::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--teal-light);
  animation: blink 2s ease-in-out infinite;
}

.proj-hero-map {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 176, 80, 0.15);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  max-height: 32rem;
  overflow: hidden;
  position: relative;
}

.proj-hero-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.proj-hero-map-label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
/* #endregion */

/* #region Project Pages — Stats Row */
.proj-stats-row {
  background: var(--teal-dark);
  padding: 0;
}

.proj-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 43.75em) {
  .proj-stats-inner { grid-template-columns: repeat(4, 1fr); }
}

.proj-stat {
  padding: 2rem 1.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proj-stat:nth-child(2n) { border-right: none; }

@media (min-width: 43.75em) {
  .proj-stat { border-bottom: none; }
  .proj-stat:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .proj-stat:last-child { border-right: none; }
}

.proj-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.0625rem;
}

.proj-stat-key {
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
/* #endregion */

/* #region Project Pages — Overview */
.proj-overview { background: #fff; }

.proj-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
  align-items: start;
  margin-top: 3rem;
}

@media (min-width: 56.25em) {
  .proj-overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.proj-desc p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.proj-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.proj-highlights-title {
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.proj-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.proj-hl-item::before {
  content: '';
  flex-shrink: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: var(--teal-light);
  margin-top: 0.5rem;
}

.proj-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}
/* #endregion */

/* #region Project Pages — Location & Access */
.proj-location {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.proj-location::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(196, 154, 53, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.proj-location .section-h2 { color: #fff; }
.proj-location .section-intro { color: rgba(255, 255, 255, 0.5); }
.proj-location .section-eyebrow { color: var(--teal-light); }
.proj-location .section-eyebrow::before { background: var(--teal-light); }

.proj-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 43.75em) {
  .proj-location-grid { grid-template-columns: repeat(3, 1fr); }
}

.proj-loc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 1.75rem;
  border-top: 2px solid var(--teal);
  transition: background 0.2s;
}

.proj-loc-card:hover { background: rgba(212, 176, 80, 0.08); }

.proj-loc-icon {
  color: var(--teal-light);
  margin-bottom: 1.25rem;
  display: flex;
}

.proj-loc-icon [data-lucide] {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.5;
}

.proj-loc-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.proj-loc-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-weight: 300;
}
/* #endregion */

/* #region Project Pages — Geological Setting */
.proj-geology { background: var(--warm-white); }

.proj-geology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
  align-items: start;
  margin-top: 3rem;
}

@media (min-width: 56.25em) {
  .proj-geology-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.proj-geology-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.proj-geo-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
/* #endregion */

/* #region Project Pages — Exploration History */
.proj-history { background: var(--off-white); }

.proj-history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 43.75em) {
  .proj-history-grid { grid-template-columns: repeat(2, 1fr); }
}

.proj-milestone {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.proj-milestone:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.08);
}

.proj-milestone::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
}

.proj-milestone-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(196, 154, 53, 0.12);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  pointer-events: none;
  letter-spacing: 0.0625rem;
}

.proj-milestone-tag {
  display: inline-block;
  font-size: 0.5625rem;
  letter-spacing: 0.15625rem;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  border: 1px solid rgba(196, 154, 53, 0.3);
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
}

.proj-milestone h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.1875rem;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.proj-milestone p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
/* #endregion */

/* #region Project Pages — QP Statement */
.proj-qp {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2rem 0;
}

.proj-qp-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.proj-qp-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(196, 154, 53, 0.08);
  border: 1px solid rgba(196, 154, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.proj-qp-icon [data-lucide] {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.proj-qp-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.proj-qp-text strong {
  color: var(--charcoal);
  font-weight: 600;
}

.proj-sources {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}
/* #endregion */

/* #region Project Pages — Property Maps */
.proj-maps { background: var(--charcoal); }

.proj-maps .section-h2 { color: #fff; }
.proj-maps .section-intro { color: rgba(255, 255, 255, 0.5); }
.proj-maps .section-eyebrow { color: var(--teal-light); }
.proj-maps .section-eyebrow::before { background: var(--teal-light); }

.proj-maps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 43.75em) {
  .proj-maps-grid { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
}

.proj-map-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s;
}

a.proj-map-card { display: block; text-decoration: none; }

.proj-map-card:hover { border-color: rgba(212, 176, 80, 0.4); }

.proj-map-thumb {
  position: relative;
  overflow: hidden;
  background: #111;
}

.proj-map-thumb img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.proj-map-card:hover .proj-map-thumb img { transform: scale(1.04); }

.proj-map-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.proj-map-card:hover .proj-map-thumb-overlay { background: rgba(196, 154, 53, 0.2); }

.proj-map-zoom-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}

.proj-map-card:hover .proj-map-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.proj-map-zoom-icon [data-lucide] {
  width: 1.125rem;
  height: 1.125rem;
  stroke: #fff;
  stroke-width: 2;
}

.proj-map-info {
  padding: 1.25rem 1.25rem 1.5rem;
}

.proj-map-label {
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.proj-map-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
/* #endregion */

/* #region Project Pages — Exploration Zones */
.proj-zones { background: var(--off-white); }

.proj-zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 56.25em) {
  .proj-zones-grid { grid-template-columns: 1fr 1fr; }
}

.proj-zone-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.proj-zone-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.08);
}

.proj-zone-header {
  background: linear-gradient(135deg, #1a1408, #2e2010);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.proj-zone-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal-light);
}

.proj-zone-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
}

.proj-zone-tag {
  display: inline-block;
  font-size: 0.5625rem;
  letter-spacing: 0.15625rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 700;
  border: 1px solid rgba(212, 176, 80, 0.4);
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.875rem;
}

.proj-zone-header h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
  line-height: 1.2;
}

.proj-zone-header p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  line-height: 1.5;
}

.proj-zone-body { padding: 1.75rem; }

.proj-zone-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.proj-zone-results {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.proj-zone-result {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.proj-zone-result:last-child { border-bottom: none; }

.proj-zone-result-val {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  color: var(--teal);
  line-height: 1.1;
  min-width: 4.5rem;
  text-align: right;
}

.proj-zone-result-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}
/* #endregion */

/* #region Project Pages — Drill Results */
.proj-drill { background: #fff; }

.proj-drill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 43.75em) {
  .proj-drill-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 62.5em) {
  .proj-drill-grid { grid-template-columns: repeat(3, 1fr); }
}

.proj-drill-card {
  background: var(--warm-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--teal);
}

.proj-drill-hole {
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.875rem;
}

.proj-drill-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.proj-drill-interval {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.proj-drill-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.proj-drill-sup {
  font-size: 0.5625rem;
  color: rgba(0, 0, 0, 0.3);
  vertical-align: super;
  line-height: 0;
}
/* #endregion */

/* #region Project Pages — Exploration Strategy */
.proj-strategy {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.proj-strategy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 50%, rgba(196, 154, 53, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.proj-strategy .section-h2 { color: #fff; }
.proj-strategy .section-intro { color: rgba(255, 255, 255, 0.5); }
.proj-strategy .section-eyebrow { color: var(--teal-light); }
.proj-strategy .section-eyebrow::before { background: var(--teal-light); }

.proj-strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 56.25em) {
  .proj-strategy-grid { grid-template-columns: repeat(2, 1fr); }
}

.proj-phase-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.proj-phase-card:hover { background: rgba(212, 176, 80, 0.08); }

.proj-phase-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.proj-phase-card:hover::after { transform: scaleX(1); }

.proj-phase-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  line-height: 1;
  pointer-events: none;
}

.proj-phase-tag {
  display: inline-block;
  font-size: 0.5625rem;
  letter-spacing: 0.15625rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 700;
  border: 1px solid rgba(212, 176, 80, 0.4);
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
}

.proj-phase-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.proj-phase-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-weight: 300;
}

.proj-phase-detail {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.proj-phase-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

.proj-phase-detail-item::before {
  content: '';
  flex-shrink: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.6;
  margin-top: 0.45rem;
}
/* #endregion */

/* #region SUBPOP */
.firstnameform { position: absolute; left: -9999px; visibility: hidden; }

.subpop {
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.subpop.show {
  opacity: 1;
  pointer-events: all;
}

.subpop .under {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(0.5rem);
}

.subpop.show .under {
  height: 100%;
}

.subpop .item {
  background-color: var(--charcoal);
  overflow: hidden;
  transform: translateY(3rem);
  opacity: 0;
  pointer-events: none;
  margin: 2rem;
  max-width: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5);
  border-radius: 0.75rem;
}

.subpop .item.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.subpop .item .text {
  text-align: center;
  color: var(--off-white);
  pointer-events: none;
  opacity: 0;
  transform: translateY(3rem);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.subpop .item .text::-webkit-scrollbar {
  display: none;
}

.subpop .item .text.show {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.subpop .item .text img {
  height: 5rem;
}

.subpop .item .text h3 {
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.subpop .item .text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.subpop .item .text form input[type="email"] {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--off-white);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s ease-in-out;
}

.subpop .item .text form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subpop .item .text form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
}

.subpop .item .text form button {
  width: 100%;
  margin-top: 0.5rem;
  background-color: var(--teal);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.subpop .item .text form button:hover {
  background-color: var(--teal-dark);
}

.subpop .item .text a.closetext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: auto;
  padding-top: 1.5rem;
  display: inline-block;
}

.subpop .item .text a.closetext:hover {
  color: var(--teal);
  text-decoration: none;
}

.subpop .item .image {
  display: none;
}

.subpop .close {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.subpop .close:hover {
  opacity: 1;
  color: var(--off-white);
}

@media only screen and (max-width: 800px) {
  .subpop .item .text img {
    height: 4rem;
  }
}
/* #endregion */

/* #region SUBRESPONSE */
.subresponse {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  padding: 1rem;
}

.subresponse.show {
  opacity: 1;
  pointer-events: all;
}

.subresponse .under {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 167, 69, 0.9);
}

.subresponse.suberror .under {
  background: rgba(120, 50, 50, 0.9);
}

.subresponse .item {
  color: #fff;
  border: 2px solid #fff;
  text-align: center;
  transform: scale(1.25);
  opacity: 0;
  border-radius: 0.75rem;
  padding: 2rem;
}

.subresponse.show .item {
  transform: scale(1);
  opacity: 1;
}

.subresponse .item .fa-solid {
  font-size: 3rem;
  display: block;
}

.subresponse .item .close {
  padding: 1rem 3rem;
  font-weight: 600;
  background: #fff;
  color: rgba(40, 167, 69, 1);
  border-radius: 0.5rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.subresponse.suberror .item .close {
  color: rgba(120, 50, 50, 1);
}

.subresponse .item .close:hover {
  transform: scale(1.05);
  background: rgba(30, 125, 52, 1);
  color: #fff;
}

.subresponse.suberror .item .close:hover {
  background: rgba(120, 0, 0, 1);
}

.subresponse .item .text {
  opacity: 0;
  transform: scale(1.25);
}

.subresponse .item .text.show {
  opacity: 1;
  transform: scale(1);
}
/* #endregion */
