/* ============================================================
   AMERICORE RESOURCES — MAINSHEET PREPRO
   Design System + All Page Styles
   ============================================================ */

/* #region RESET */
/* ============================================================
   JRX MEDIA — BASE RESET
   v1.0
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-sans:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-mono:    'Cascadia Code', 'Fira Code', 'Courier New', monospace;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.5rem;
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --max-w:  1400px;
  --gut:    clamp(1rem, 5vw, 3rem);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-full: 9999px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --duration:  200ms;
  --color-bg:       #ffffff;
  --color-text:     #111111;
  --color-muted:    #6b7280;
  --color-border:   #e5e7eb;
  --color-accent:   #B71C2F;
  --color-accent-h: #8B1525;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  tab-size: 4;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  padding-top: var(--shell-h);
}

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

.container-sm {
  width: 100%;
  max-width: 53.75rem;
  margin-inline: auto;
  padding-inline: var(--gut);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  text-wrap: balance;
}

p, li, blockquote {
  max-width: 72ch;
  text-wrap: pretty;
}

a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-accent-h);
}

strong, b { font-weight: 600; }
em, i     { font-style: italic; }
small { font-size: var(--text-sm); }

code, kbd, samp, pre {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

pre {
  overflow-x: auto;
  white-space: pre;
}

blockquote {
  border-left: 0.1875rem solid var(--border);
  padding-left: var(--space-lg);
  color: var(--text-muted);
}

ul, ol {
  padding-left: var(--space-xl);
}

li + li {
  margin-top: var(--space-xs);
}

.list-reset {
  list-style: none;
  padding-left: 0;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

img, video {
  height: auto;
}

img {
  font-style: italic;
}

svg {
  overflow: hidden;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

textarea {
  resize: vertical;
}

fieldset {
  border: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
}

:focus-visible {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.1875rem;
}

:focus:not(:focus-visible) {
  outline: none;
}

[role="button"],
label[for] {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flex   { display: flex; }
.grid   { display: grid; }
.block  { display: block; }
.hidden { display: none; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-auto { margin-top: auto; }
.ml-auto { margin-left: auto; }

.section {
  padding-block: var(--space-3xl);
}
/* #endregion */

/* #region VARIABLES */
/* All design tokens are defined in companyColors.css — loaded before this file */

body {
    padding-top: var(--shell-h);
}

.home-hero {
    margin-top: calc(-1 * var(--shell-h));
}
/* #endregion */

/* #region TYPOGRAPHY */
h1 {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 1.75rem;
    height: 0.125rem;
    background: var(--red);
    flex-shrink: 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 1.75rem;
    height: 0.125rem;
    background: var(--red);
    flex-shrink: 0;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    font-weight: 700;
    color: var(--navy);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}
/* #endregion */

/* #region BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-0.0625rem);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--red);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: 0.125rem solid var(--red);
    border-radius: 0.25rem;
    transition: all var(--dur) var(--ease);
    letter-spacing: 0.02em;
}

.btn-outline:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-0.0625rem);
}

.btn-outline--light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: 0.125rem solid rgba(255,255,255,0.6);
    border-radius: 0.25rem;
    transition: all var(--dur) var(--ease);
    letter-spacing: 0.02em;
}

.btn-outline--light:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}
/* #endregion */

/* #region PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-star {
    --progress: 0%;
    position: relative;
    width: 5rem;
    height: 5rem;
    animation: preloader-pulse 1.8s ease-in-out infinite;
}

.preloader-star-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.preloader-star-bg {
    fill: rgba(255, 255, 255, 0.08);
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 0.5;
}

.preloader-star-fill {
    fill: var(--red);
    clip-path: inset(calc(100% - var(--progress)) 0 0 0);
    transition: clip-path 0.3s var(--ease);
    filter: drop-shadow(0 0 0.5rem rgba(183, 28, 47, 0.65));
}

@keyframes preloader-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .preloader-star { animation: none; }
    .preloader-star-fill { transition: none; }
}
/* #endregion */

/* #region PAGE TRANSITION */
#page-wipe {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
}

#page-content {
    transition: opacity 0.25s ease;
}
/* #endregion */

/* #region HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
    background: var(--navy);
    box-shadow: 0 0.125rem 1.25rem rgba(0,0,0,0.35);
}

.site-header.nav-solid {
    background: var(--navy);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding-inline: var(--gut);
    max-width: var(--max-w);
    margin-inline: auto;
}

.header-logo img {
    height: 2.5rem;
    width: auto;
}

.header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-cta {
    padding: 0.5rem 1.25rem;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    border-radius: 0.25rem;
    letter-spacing: 0.02em;
    transition: background var(--dur) var(--ease);
}

.header-cta:hover {
    background: var(--red-dark);
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.mobile-toggle [data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 64rem) {
    .mobile-toggle {
        display: flex;
    }
    .header-cta {
        display: none;
    }
}
/* #endregion */

/* #region TOPBAR */
.topbar {
    height: var(--ticker-h);
    overflow: hidden;
    max-height: var(--ticker-h);
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), opacity 0.35s var(--ease);
    background: rgba(10,18,36,0.75);
    backdrop-filter: blur(0.25rem);
    border-bottom: 0.0625rem solid rgba(255,255,255,0.08);
}

.topbar.topbar-scrolled {
    max-height: 0;
    opacity: 0;
}

.topbar-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar-symbols {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding-right: 1.25rem;
    margin-right: 1.25rem;
    border-right: 0.0625rem solid rgba(255,255,255,0.15);
}

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

.topbar-metals {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55);
}

.topbar-metals .metal-val {
    color: #0b60ce;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-contact-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

.topbar-contact-link:hover {
    color: #fff;
}

.topbar-divider {
    width: 0.0625rem;
    height: 0.75rem;
    background: rgba(255,255,255,0.15);
}

.topbar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s var(--ease);
}

.topbar-social-link:hover {
    color: var(--color-accent);
}

@media (max-width: 48rem) {
    .topbar {
        display: none;
    }
    body {
        padding-top: var(--header-h);
    }
    .home-hero {
        margin-top: calc(-1 * var(--header-h));
    }
}
/* #endregion */

/* #region NAV */
#site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: 0.25rem;
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link [data-lucide] {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform var(--dur) var(--ease);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .nav-link [data-lucide] {
    transform: rotate(180deg);
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 12rem;
    background: var(--navy);
    border: 0.0625rem solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav-dropdown-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* Mobile nav drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(22rem, 85vw);
    height: 100dvh;
    background: var(--navy);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    justify-content: space-between;
}

.mobile-nav .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    margin-top: 0.25rem;
    padding-left: 1rem;
}

.mobile-nav .nav-dropdown-link {
    padding: 0.625rem 1rem;
}

.mobile-nav .mobile-nav-cta {
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: var(--red);
    color: #fff;
    text-align: center;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 64rem) {
    #site-nav {
        display: none;
    }
}
/* #endregion */

/* #region FOOTER */
.site-footer {
    background: var(--navy);
    border-top: 0.1875rem solid var(--red);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
    color: rgba(255,255,255,0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.footer-brand-logo img {
    height: 2.5rem;
    margin-bottom: 1.25rem;
}

.footer-brand-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
    max-width: 22rem;
}

.footer-symbols {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-symbol-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 0.0625rem solid rgba(255,255,255,0.12);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.footer-social-row {
    display: flex;
    gap: 0.75rem;
}

.footer-social-row a {
    color: rgba(255,255,255,0.5);
    font-size: 1.125rem;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.footer-social-row a:hover {
    color: var(--red);
}

.footer-nav-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.0625rem solid rgba(255,255,255,0.1);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.footer-nav-link:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    background: var(--red);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background var(--dur) var(--ease);
    border: none;
}

.footer-subscribe-btn:hover {
    background: var(--red-dark);
}

.subfooter {
    margin-top: clamp(2rem, 4vw, 3rem);
    border-top: 0.0625rem solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}

.subfooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subfooter-inner a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.subfooter-inner a:hover {
    color: rgba(255,255,255,0.8);
}

.jrxdark {
    display: block;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    text-decoration: none;
    font-size: 0.75rem;
}

@media (max-width: 64rem) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 48rem) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 40rem) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .subfooter-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* #endregion */

/* #region SUBPOP */
.subpop {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.subpop.show {
    opacity: 1;
    visibility: visible;
}

.subpop .under {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.subpop .item {
    position: relative;
    display: flex;
    max-width: 52rem;
    width: 92%;
    background: var(--navy);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.5);
    transform: scale(0.95) translateY(1rem);
    transition: transform 0.3s ease;
    border: 0.0625rem solid rgba(255,255,255,0.08);
}

.subpop.show .item {
    transform: scale(1) translateY(0);
}

.subpop .item .text {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
}

.subpop .item .text .padtop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.subpop .item .text .padtop > img {
    display: block;
}

.subpop .item .text img {
    max-height: 3rem;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.subpop .item .text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.subpop .item .text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.subpop .item .image {
    width: 40%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.subpop .item .image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 40%);
}

.subpop .subform {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.subpop .subform input[type="email"] {
    padding: 0.875rem 1rem;
    border: 0.0625rem solid rgba(255,255,255,0.15);
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: border-color 0.2s var(--ease);
}

.subpop .subform input[type="email"]::placeholder {
    color: rgba(255,255,255,0.35);
}

.subpop .subform input[type="email"]:focus {
    outline: none;
    border-color: var(--color-accent);
}

.subpop .subform button {
    padding: 0.875rem 1.5rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    justify-content: center;
    transition: background var(--dur) var(--ease);
}

.subpop .subform button:hover {
    background: var(--color-accent-h);
}

.subpop .closetext {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s var(--ease);
}

.subpop .closetext:hover {
    color: rgba(255,255,255,0.6);
}

.subpop .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: color var(--dur) var(--ease);
    text-decoration: none;
}

.subpop .close:hover {
    color: #fff;
}

.firstnameform {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

@media (max-width: 48rem) {
    .subpop .item {
        flex-direction: column;
    }
    .subpop .item .image {
        width: 100%;
        height: 10rem;
    }
    .subpop .item .image::after {
        background: linear-gradient(to top, var(--navy) 0%, transparent 40%);
    }
}
/* #endregion */

/* #region SUBRESPONSE */
.subresponse {
    position: fixed;
    inset: 0;
    z-index: 10011;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.subresponse.show {
    opacity: 1;
    visibility: visible;
}

.subresponse .under {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.subresponse .item {
    position: relative;
    background: var(--navy);
    border: 0.0625rem solid var(--navy-light);
    border-top: 0.25rem solid var(--red);
    border-radius: 0.75rem;
    padding: 2.5rem 2.5rem 3rem;
    text-align: center;
    max-width: 28rem;
    width: 90%;
    box-shadow: var(--shadow-lg);
}

.subresponse-logo {
    margin-bottom: 1.75rem;
}

.subresponse-logo img {
    height: 2.5rem;
    width: auto;
    max-width: 14rem;
    object-fit: contain;
}

.subresponse-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 0 0 0.375rem rgba(183, 28, 47, 0.18);
}

.subresponse-badge::before {
    content: "\f00c"; /* check */
}

.subresponse.suberror .subresponse-badge {
    background: linear-gradient(135deg, #d8843a, #b35415);
    box-shadow: 0 0 0 0.375rem rgba(179, 84, 21, 0.18);
}

.subresponse.suberror .subresponse-badge::before {
    content: "\f071"; /* triangle-exclamation */
}

.subresponse .item .text h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.subresponse .item .text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.subresponse .subresponse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.25rem;
    padding: 0.8125rem 2.5rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: 0 0.5rem 1rem rgba(183, 28, 47, 0.35);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur) var(--ease);
}

.subresponse .subresponse-btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 1.5rem rgba(183, 28, 47, 0.45);
    filter: brightness(1.05);
}

.subresponse .subresponse-btn:active {
    transform: translateY(0);
    box-shadow: 0 0.25rem 0.625rem rgba(183, 28, 47, 0.35);
}
/* #endregion */

/* #region PAGE HERO (Inner Pages) */
.pagetop {
    margin-top: calc(-1 * var(--shell-h));
    padding: calc(5rem + var(--shell-h)) 0 4rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pagetop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17,27,51,0.92) 0%, rgba(17,27,51,0.75) 50%, rgba(17,27,51,0.5) 100%);
}

.pagetop .boxbox {
    position: relative;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.pagetop h2 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

@media (max-width: 48rem) {
    .pagetop {
        padding: calc(4rem + var(--header-h)) 0 3rem;
        margin-top: calc(-1 * var(--header-h));
    }
}
/* #endregion */

/* #region SECTION LABELS */
/* Defined in TYPOGRAPHY region above */
/* #endregion */

/* #region SECTION — SUBSCRIBE STRIP */
.subscribe-strip {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg);
}

.subscribe-strip-inner {
    position: relative;
    max-width: 36rem;
    margin-inline: auto;
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--navy);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.subscribe-strip-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
}

.subscribe-strip h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.subscribe-strip p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem;
    max-width: 32rem;
}

.subscribe-strip-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 24rem;
}

.subscribe-strip-form input[type="email"] {
    padding: 0.875rem 1rem;
    border: 0.0625rem solid rgba(255,255,255,0.15);
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: border-color 0.2s var(--ease);
}

.subscribe-strip-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.35);
}

.subscribe-strip-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-accent);
}

.subscribe-strip-form .btn-primary {
    width: 100%;
    justify-content: center;
}

.subscribe-strip-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.subpop-trigger {
    cursor: pointer;
}
/* #endregion */

/* #region CARDS — TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--surface);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.team-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-md);
}

.team-card-portrait {
    aspect-ratio: 3/4;
    background: var(--surface-alt);
    overflow: hidden;
}

.team-card-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-info {
    padding: 1.25rem;
}

.team-card-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-card-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.team-card-bio {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.team-card-readmore {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    cursor: pointer;
}

.team-card-readmore:hover {
    color: var(--red-dark);
}
/* #endregion */

/* #region MODALS */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10005;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    border-radius: 0.75rem;
    max-width: 42rem;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    transform: scale(0.95) translateY(1rem);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
}

.modal-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.modal-title {
    font-size: 0.875rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.modal-bio {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.8;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10006;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 24rem;
    width: 90%;
    text-align: center;
}

.popup-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-cancel {
    padding: 0.625rem 1.5rem;
    border: 0.0625rem solid var(--border);
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-confirm {
    padding: 0.625rem 1.5rem;
    background: var(--red);
    color: #fff;
    border-radius: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
/* #endregion */

/* #region CARDS — NEWS */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 0.0625rem solid var(--border-light);
    transition: background var(--dur) var(--ease);
}

.news-item:first-child {
    border-top: 0.0625rem solid var(--border-light);
}

.news-item-date {
    min-width: 6.5rem;
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.news-item-title {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.news-item-title a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.news-item-title a:hover {
    color: var(--red);
}

.news-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.news-read-btn {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
}

.news-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.news-pdf-btn:hover {
    color: var(--red);
}

.news-pdf-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.news-year-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.news-year-pill {
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 0.0625rem solid var(--border);
    border-radius: 6.25rem;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.news-year-pill:hover {
    border-color: var(--red);
    color: var(--red);
}

.news-year-pill.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    pointer-events: none;
}

@media (max-width: 40rem) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
/* #endregion */

/* #region RELEASE BODY */
.release-body {
    max-width: var(--max-w);
    margin-inline: auto;
    padding: clamp(2rem, 4vw, 4rem) var(--gut);
}

.release-body h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.release-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.release-content {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.release-content p {
    margin-bottom: 1.25rem;
    max-width: 72ch;
}

.release-content table {
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.release-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 2rem;
}

.release-back:hover {
    color: var(--red-dark);
}

.release-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    border: 0.0625rem solid var(--border);
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.release-pdf-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
/* #endregion */

/* #region CARDS — PRESENTATIONS */
.pres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 2rem;
}

.pres-card {
    background: var(--surface);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.pres-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-md);
}

.pres-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--surface-alt);
    overflow: hidden;
}

.pres-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pres-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,27,51,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.pres-card-thumb:hover .pres-card-overlay {
    opacity: 1;
}

.pres-card-info {
    padding: 1.25rem;
}

.pres-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.pres-card-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pres-card-actions {
    display: flex;
    gap: 1rem;
}

.pres-card-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity var(--dur) var(--ease);
}

.pres-card-actions a:hover {
    opacity: 0.75;
}

.pres-card-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pres-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 4rem 1.5rem;
    color: var(--text-muted);
}

.pres-empty i,
.pres-empty svg {
    opacity: 0.25;
    margin-bottom: 0.5rem;
}

.pres-empty-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}
/* #endregion */

/* #region TABLE — GLOBAL */
.nv-table-scroll {
    overflow-x: auto;
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--border-light);
}

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

.nv-table thead {
    background: var(--navy);
    color: #fff;
}

.nv-table th {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nv-table td {
    padding: 0.75rem 1rem;
    border-bottom: 0.0625rem solid var(--border-light);
}

.nv-table tbody tr:hover {
    background: var(--surface-alt);
}

.nv-table tbody tr:last-child td {
    border-bottom: none;
}
/* #endregion */

/* #region TABLE — CAPITAL STRUCTURE */
.cap-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.cap-donut {
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    margin: 0 auto;
}

.cap-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cap-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.cap-legend-swatch {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 0.125rem;
}

@media (max-width: 48rem) {
    .cap-layout {
        grid-template-columns: 1fr;
    }
}
/* #endregion */

/* #region TABLE — O&W SCHEDULE */
/* Uses global .nv-table styles */
/* #endregion */

/* #region TABLE — DRILL RESULTS */
.drill-table-wrap {
    overflow-x: auto;
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--border-light);
}

.drill-table {
    min-width: 40rem;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.drill-table thead {
    background: var(--navy);
    color: #fff;
}

.drill-table th {
    padding: 0.625rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.drill-table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 0.0625rem solid var(--border-light);
}

.drill-table tbody tr:hover {
    background: var(--surface-alt);
}
/* #endregion */

/* #region CONTACT */
.grecaptcha-badge { visibility: hidden; }

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: var(--max-w);
    margin-inline: auto;
    padding: clamp(3rem, 5vw, 5rem) var(--gut);
}

.contact-info-panel h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text);
}

.contact-info-item [data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-info-item a {
    color: var(--text);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--red);
}

.contact-social-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-social-row a {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.contact-social-row a:hover {
    background: var(--red);
    color: #fff;
}

.contact-form-panel {
    background: var(--surface);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 0.0625rem solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.0625rem solid var(--border);
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    background: var(--bg);
    transition: border-color var(--dur) var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--red);
}

.contact-form textarea {
    min-height: 8rem;
}

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

.contact-form .subscribe-opt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.contact-form .subscribe-opt input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--red);
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.recaptcha-notice a {
    color: var(--text-muted);
    text-decoration: underline;
}

.sysmsg {
    position: fixed;
    inset: 0;
    z-index: 10012;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sysmsg.show {
    opacity: 1;
    visibility: visible;
}

.sysmsg-box {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
    max-width: 24rem;
    width: 90%;
}

.sysmsg-box h3 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.sysmsg-box p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 48rem) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
/* #endregion */

/* #region SUBSCRIBE PAGE */
.subpage.subscribe {
    max-width: 36rem;
    margin-inline: auto;
    padding: clamp(3rem, 6vw, 5rem) var(--gut);
    text-align: center;
}

.subpage .iconflex {
    flex-direction: column;
    gap: 1.5rem;
}

.subpage .icon {
    font-size: 3rem;
    color: var(--red);
}

.subpage .maintext h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.subpage .maintext p {
    color: var(--text-muted);
}

.subpage .mainlink {
    display: inline-flex;
    padding: 0.75rem 1.75rem;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.subpage #updateForm {
    text-align: left;
    margin-top: 2rem;
}

.subpage .form-group {
    margin-bottom: 1.25rem;
}

.subpage .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.subpage .form-group input[type="text"],
.subpage .form-group input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 0.0625rem solid var(--border);
    border-radius: 0.25rem;
    background: var(--bg);
}

.subpage .btn-unsubscribe {
    background: transparent;
    color: var(--text-muted);
    border: 0.0625rem solid var(--border);
    margin-left: 0.75rem;
}
/* #endregion */

/* #region PROJECT PAGES */
.proj-page {
    overflow: clip;
}

.proj-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--surface);
}

.proj-section:nth-child(even) {
    background: var(--bg);
}

.proj-section.proj-dark {
    background: var(--navy);
    color: #fff;
}

.proj-page-header {
    text-align: center;
    padding: clamp(3rem, 5vw, 5rem) var(--gut);
}

.proj-two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.proj-two-col.img-left {
    grid-template-columns: 1fr 1.2fr;
}

.proj-two-col.align-top {
    align-items: flex-start;
}

.proj-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.proj-section-sublabel {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.proj-ceo-quote {
    border-left: 0.25rem solid var(--red);
    padding: 1.5rem 2rem;
    background: var(--surface-alt);
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
}

.proj-placeholder-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface-alt);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 48rem) {
    .proj-two-col,
    .proj-two-col.img-left {
        grid-template-columns: 1fr;
    }
}
/* #endregion */

/* #region TRINITY PROJECT PAGE */

#page-content[data-cat="projects"] > .pagetop { display: none; }

.proj-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.proj-intro {
    background: var(--navy);
    color: #fff;
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.proj-intro-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center top;
    z-index: 0;
    will-change: transform;
}

.proj-intro-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17,27,51,0.92) 0%, rgba(17,27,51,0.75) 50%, rgba(17,27,51,0.5) 100%);
}

.proj-intro > .proj-inner {
    position: relative;
    z-index: 1;
}

.proj-intro-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 1.25rem;
}

.proj-intro-overline::before {
    content: '';
    display: inline-block;
    width: 1.75rem;
    height: 0.125rem;
    background: var(--red-light);
    flex-shrink: 0;
}

.proj-intro h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1rem;
}

.proj-intro-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.75rem;
}

.proj-intro-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 45rem;
    margin-bottom: 3rem;
}

.proj-intro-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.proj-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.proj-intro-stat {
    padding: 1.5rem 1.25rem;
    border-left: 0.1875rem solid var(--red);
}

.proj-intro-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.proj-intro-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.proj-sticky-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 90;
    background: var(--surface);
    border-bottom: 0.0625rem solid var(--border-light);
    transition: box-shadow var(--dur) var(--ease), top 0.35s var(--ease);
}

.proj-sticky-nav.is-stuck {
    box-shadow: var(--shadow-sm);
}

.proj-sticky-nav-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.proj-sticky-nav-inner::-webkit-scrollbar { display: none; }

.proj-sticky-nav a {
    flex-shrink: 0;
    padding: 0.875rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 0.125rem solid transparent;
    transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
    white-space: nowrap;
}

.proj-sticky-nav a:hover,
.proj-sticky-nav a.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

/* Mobile dropdown toggle — hidden on desktop */
.proj-sticky-nav-toggle {
    display: none;
}

.proj-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.proj-dark .proj-section-title {
    color: #fff;
}

.proj-body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 45rem;
}

.proj-body-text + .proj-body-text {
    margin-top: 1.25rem;
}

.proj-dark .proj-body-text {
    color: rgba(255,255,255,0.75);
}

.proj-divider {
    width: 3rem;
    height: 0.125rem;
    background: var(--red);
    margin: 2rem 0;
}

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

.proj-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border-light);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: box-shadow var(--dur) var(--ease);
}

.proj-card:hover {
    box-shadow: var(--shadow-md);
}

.proj-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.proj-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
}

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

.proj-text-block {
    margin-bottom: 2rem;
}

.proj-text-block:last-child {
    margin-bottom: 0;
}

.proj-district-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.proj-callout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.proj-callout-grid--2x2 {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
}

.proj-callout-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow var(--dur) var(--ease);
}

.proj-callout-card:hover {
    box-shadow: var(--shadow-md);
}

.proj-callout-card.highlight {
    border-color: var(--red);
    background: rgba(183,28,47,0.03);
}

.proj-callout-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.proj-callout-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.proj-disclaimer {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1.25rem;
    line-height: 1.6;
}

.proj-timeline {
    position: relative;
    padding-left: 2.5rem;
    margin-top: 2.5rem;
}

.proj-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 0.125rem;
    background: var(--border);
}

.proj-timeline-event {
    position: relative;
    padding-bottom: 2.5rem;
}

.proj-timeline-event:last-child {
    padding-bottom: 0;
}

.proj-timeline-dot {
    position: absolute;
    left: -2.3rem;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--red);
    border: 0.125rem solid var(--surface);
    box-shadow: 0 0 0 0.125rem var(--red);
}

.proj-timeline-year {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.proj-timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.proj-timeline-body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
}

.proj-geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.proj-highlight-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proj-geo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.proj-highlight-card {
    border-left: 0.1875rem solid var(--red);
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: 0 0.5rem 0.5rem 0;
}

.proj-highlight-card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.proj-highlight-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.proj-headline-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.proj-headline-stat {
    border-left: 0.1875rem solid var(--red);
    padding-left: 1.25rem;
}

.proj-headline-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.proj-headline-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.proj-table-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.proj-table-label:first-of-type {
    margin-top: 0;
}

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

.proj-stockpile-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border-light);
    border-top: 0.1875rem solid var(--red);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 2rem;
    text-align: center;
}

.proj-stockpile-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.proj-stockpile-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.proj-stockpile-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.proj-drill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.proj-drill-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border-light);
    border-radius: 0.5rem;
    padding: 1.75rem;
    transition: box-shadow var(--dur) var(--ease);
}

.proj-drill-card:hover {
    box-shadow: var(--shadow-md);
}

.proj-drill-card-section {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.proj-drill-card-hole {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.proj-drill-card-result {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.proj-drill-card-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.drill-table .indent-row td:first-child {
    padding-left: 2rem;
    font-style: italic;
    color: var(--text-muted);
}

.proj-footnote {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.6;
}

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

.proj-phase-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border-light);
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.proj-phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
}

.proj-phase-card.phase-complete::before { background: #16a34a; }
.proj-phase-card.phase-next::before { background: var(--red); }
.proj-phase-card.phase-followon::before { background: #94a3b8; }

.proj-phase-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 6.25rem;
    margin-bottom: 1rem;
}

.proj-phase-tag.complete {
    background: rgba(34,197,94,0.1);
    color: #16a34a;
}

.proj-phase-tag.next {
    background: rgba(183,28,47,0.1);
    color: var(--red);
}

.proj-phase-tag.followon {
    background: rgba(100,116,139,0.1);
    color: #64748b;
}

.proj-phase-card h3 {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.proj-phase-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.proj-phase-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
}

@media (max-width: 64rem) {
    .proj-intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .proj-card-grid {
        grid-template-columns: 1fr;
    }
    .proj-overview-grid,
    .proj-geo-grid,
    .proj-district-grid {
        grid-template-columns: 1fr;
    }
    .proj-geo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .proj-drill-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proj-phase-grid {
        grid-template-columns: 1fr;
    }
    .proj-headline-stats {
        grid-template-columns: 1fr;
    }
    .proj-callout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48rem) {
    .proj-intro-stats {
        grid-template-columns: 1fr;
    }
    .proj-callout-grid,
    .proj-callout-grid--2x2 {
        grid-template-columns: 1fr;
    }
    .proj-geo-cards {
        grid-template-columns: 1fr;
    }
    .proj-drill-grid {
        grid-template-columns: 1fr;
    }
    .proj-stockpile-grid {
        grid-template-columns: 1fr;
    }
    /* #region Project sub-nav — mobile dropdown */
    .proj-sticky-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: var(--max-w);
        margin-inline: auto;
        padding: 0.875rem var(--gut);
        background: none;
        border: none;
        font-family: inherit;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--red);
        cursor: pointer;
    }

    .proj-sticky-nav-arrow {
        flex-shrink: 0;
        transition: transform 0.3s var(--ease);
    }

    .proj-sticky-nav.is-open .proj-sticky-nav-arrow {
        transform: rotate(180deg);
    }

    .proj-sticky-nav-inner {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        overflow: visible;
        padding-inline: 0;
        background: var(--surface);
        border-bottom: 0.0625rem solid var(--border-light);
        box-shadow: var(--shadow-md);
        z-index: 10;
    }

    .proj-sticky-nav.is-open .proj-sticky-nav-inner {
        display: flex;
    }

    .proj-sticky-nav a {
        width: 100%;
        padding: 0.875rem var(--gut);
        font-size: 0.75rem;
        text-align: left;
        border-bottom: 0.0625rem solid var(--border-light);
    }

    .proj-sticky-nav a:last-child {
        border-bottom: none;
    }

    .proj-sticky-nav a:hover,
    .proj-sticky-nav a.active {
        border-bottom-color: var(--border-light);
        background: rgba(183, 28, 47, 0.06);
    }
    /* #endregion */
}
/* #endregion */

/* #region SCROLL ANIMATIONS */
.scroll-reveal-active [data-reveal] {
    opacity: 0;
    transform: translateY(1.75rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal-active [data-reveal="fade-left"] {
    transform: translateX(-1.75rem);
}

.scroll-reveal-active [data-reveal="fade-right"] {
    transform: translateX(1.75rem);
}

.scroll-reveal-active [data-reveal="fade"] {
    transform: none;
}

.scroll-reveal-active [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* #endregion */

/* #region UTILITIES */
.rel { position: relative; }
.abs { position: absolute; }
/* #endregion */

/* #region PAGE: HOME */
.home-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.home-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17,27,51,0.85) 0%, rgba(17,27,51,0.5) 45%, transparent 75%);
}

.home-hero-content {
    position: relative;
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding: 8rem var(--gut) 6rem;
    color: #fff;
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 0.0625rem solid rgba(255,255,255,0.15);
    border-radius: 6.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.home-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.home-hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.home-stats-bar {
    position: relative;
    background: var(--navy);
    padding: clamp(2rem, 4vw, 3rem) 0;
    margin-top: -4rem;
    z-index: 2;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    text-align: center;
    color: #fff;
}

.home-stat-number {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.home-stat-number span {
    font-size: 0.5em;
    font-weight: 600;
    vertical-align: super;
}

.home-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* --- The Opportunity --- */
.home-opportunity {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--surface);
}

.home-opportunity-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.home-opportunity-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-opportunity-header h2 {
    color: var(--navy);
}

.home-opportunity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.home-opportunity-card {
    background: var(--bg);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 0.0625rem solid var(--border-light);
}

.home-opportunity-card-img {
    height: 14rem;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
}

.home-opportunity-card-body {
    padding: 2rem;
}

.home-opportunity-card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.home-opportunity-card-body p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
}

/* --- Investment Thesis --- */
.home-thesis {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--bg);
}

.home-thesis-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.home-thesis-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-thesis-header h2 {
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.home-thesis-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 45rem;
    margin-inline: auto;
}

.home-thesis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.home-thesis-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border-light);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: box-shadow var(--dur) var(--ease);
}

.home-thesis-card:hover {
    box-shadow: var(--shadow-md);
}

.home-thesis-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.home-thesis-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
}

/* --- Trinity Silver Project --- */
.home-trinity {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--navy);
    color: #fff;
}

.home-trinity-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    margin-bottom: 3rem;
}

.home-trinity-text h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.home-trinity-text p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.home-trinity-img {
    border-radius: 0.75rem;
    overflow: hidden;
}

.home-trinity-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: rgba(255,255,255,0.05);
}

.home-trinity-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    margin-bottom: 2rem;
}

.home-trinity-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 0.0625rem solid rgba(255,255,255,0.08);
    border-radius: 0.5rem;
}

.home-trinity-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.375rem;
}

.home-trinity-stat-num span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    vertical-align: super;
}

.home-trinity-stat-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.home-trinity-disclaimer {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* --- Exploration Roadmap --- */
.home-roadmap {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--surface);
}

.home-roadmap-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.home-roadmap-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-roadmap-header h2 {
    color: var(--navy);
}

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

.home-roadmap-phase {
    background: var(--bg);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 0.0625rem solid var(--border-light);
    position: relative;
}

.home-roadmap-phase-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 6.25rem;
    margin-bottom: 1rem;
}

.home-roadmap-phase-tag.complete {
    background: rgba(34,197,94,0.1);
    color: #16a34a;
}

.home-roadmap-phase-tag.active {
    background: rgba(183,28,47,0.1);
    color: var(--color-accent);
}

.home-roadmap-phase-tag.upcoming {
    background: rgba(100,116,139,0.1);
    color: #64748b;
}

.home-roadmap-phase h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.home-roadmap-phase p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
}

/* --- News + Subscribe Combined --- */
.home-bottom {
    position: relative;
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--bg);
    overflow: hidden;
}

.home-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/gallery/bg_news-strip.jpg') center center / cover no-repeat;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.home-bottom-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    align-items: start;
}

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

.home-news-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    background: #fff;
    border: 0.0625rem solid var(--border-light);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-news-btn:hover {
    border-color: var(--navy);
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.08);
    transform: translateY(-0.0625rem);
}

.home-news-btn-date {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    min-width: 6rem;
}

.home-news-btn-title {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.home-news-btn-arrow {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    color: var(--red);
    transition: transform 0.2s;
}

.home-news-btn:hover .home-news-btn-arrow {
    transform: translateX(0.25rem);
}

.home-bottom-subscribe {
    background: var(--navy);
    color: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.home-bottom-subscribe .subscribe-strip-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.home-bottom-subscribe h2 {
    color: #fff;
    font-size: 1.5rem;
}

.home-bottom-subscribe p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 24rem;
}

.home-bottom-subscribe .subscribe-strip-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* --- Home Responsive (legacy) --- */
@media (max-width: 64rem) {
    .home-trinity-inner {
        grid-template-columns: 1fr;
    }
    .home-trinity-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-roadmap-grid {
        grid-template-columns: 1fr;
    }
    .home-thesis-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 48rem) {
    .home-opportunity-grid {
        grid-template-columns: 1fr;
    }
    .home-trinity-stats {
        grid-template-columns: 1fr;
    }
    .home-bottom-inner {
        grid-template-columns: 1fr;
    }
}

/* --- Project Overview --- */
.home-overview {
    padding: 0;
    background: var(--navy);
    color: #fff;
}

.home-overview-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    padding-bottom: 2.5rem;
}

.home-overview-text h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.home-overview-text p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 100%;
}

.home-overview-text p:last-child {
    margin-bottom: 0;
}

.home-overview-detail {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    padding-bottom: 4rem;
}

.home-overview-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.home-overview-card {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 0.0625rem solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.home-overview-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-0.125rem);
}

.home-overview-card i,
.home-overview-card svg {
    color: var(--red-light);
    flex-shrink: 0;
}

.home-overview-card p {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

.home-overview-closing {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin: 0 0 1rem;
    max-width: 100%;
}

.home-overview-adjacent-note {
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
    margin: 0;
}

.home-overview-map img {
    width: 100%;
    border-radius: 0.5rem;
    display: block;
}

.home-overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-w);
    margin-inline: auto;
}

.home-overview-stat {
    padding: 2rem var(--gut);
    text-align: center;
    border-right: 0.0625rem solid rgba(255,255,255,0.08);
}

.home-overview-stat:last-child {
    border-right: none;
}

.home-overview-stat-value {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.home-overview-stat-value span {
    font-size: 0.5em;
    font-weight: 600;
    color: var(--red-light);
    vertical-align: super;
}

.home-overview-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}

.home-overview-footnote {
    padding: 1rem var(--gut) 2rem;
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(255,255,255,0.3);
    text-align: center;
    border-top: 0.0625rem solid rgba(255,255,255,0.06);
    max-width: none;
}

.home-overview-footnote a {
    color: rgba(255,255,255,0.5);
    transition: color var(--dur) var(--ease);
}

.home-overview-footnote a:hover {
    color: rgba(255,255,255,0.8);
}

/* --- Project History --- */
.home-history {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--surface);
}

.home-history-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.home-history-img-wrap {
    align-self: start;
}

.home-history-img-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

.home-history-img-caption {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.75rem;
    line-height: 1.55;
    max-width: 100%;
}

.home-history-text h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.home-history-text p {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.home-history-text p:last-child {
    margin-bottom: 0;
}

/* --- Digging Deeper --- */
.home-depth {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--bg);
}

.home-depth-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    margin-bottom: 3rem;
}

.home-depth-text h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.home-depth-text p {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.home-depth-text p:last-child {
    margin-bottom: 0;
}

.home-depth-img img {
    width: 100%;
    display: block;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.home-depth-img-caption {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.75rem;
    line-height: 1.5;
    max-width: 100%;
}

.home-depth-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.home-depth-card {
    border-left: 0.1875rem solid var(--red);
    padding: 1.5rem 1.75rem;
    background: var(--surface);
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.home-depth-card-hole {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.home-depth-card-result {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.home-depth-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Looking Forward --- */
.home-forward {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--surface);
}

.home-forward-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.home-forward-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.home-forward-header h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.home-forward-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 45rem;
    margin-inline: auto;
}

.home-forward-timeline {
    position: relative;
}

.hf-nodes {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1.75rem;
    position: relative;
}

.hf-nodes::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 0.125rem;
    background: linear-gradient(
        to right,
        var(--red) 0%,
        var(--red) 50%,
        var(--border) 50%,
        var(--border) 100%
    );
    transform: translateY(-50%);
    z-index: 0;
}

.hf-node-wrap {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.hf-node-dot {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background: var(--red);
    border: 0.1875rem solid var(--red);
}

.hf-node-wrap.next .hf-node-dot {
    animation: hf-dot-pulse 2s ease-in-out infinite;
}

.hf-node-wrap.followon .hf-node-dot {
    background: var(--surface);
    border-color: var(--border);
}

@keyframes hf-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(183,28,47,0.35); }
    50%       { box-shadow: 0 0 0 0.5rem rgba(183,28,47,0); }
}

.hf-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hf-card {
    background: var(--bg);
    border: 0.0625rem solid var(--border-light);
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--dur) var(--ease);
}

.hf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
}

.hf-card.phase-complete::before { background: #16a34a; }
.hf-card.phase-next::before     { background: var(--red); }
.hf-card.phase-followon::before { background: var(--border); }

.hf-card.phase-next {
    border-color: rgba(183,28,47,0.15);
    box-shadow: var(--shadow-md);
}

.hf-card:hover {
    box-shadow: var(--shadow-md);
}

.hf-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 6.25rem;
    margin-bottom: 1rem;
}

.hf-tag.complete { background: rgba(34,197,94,0.1);  color: #16a34a; }
.hf-tag.next     { background: rgba(183,28,47,0.1);  color: var(--red); }
.hf-tag.followon { background: rgba(100,116,139,0.1); color: #64748b; }

.hf-phase-num {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hf-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hf-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

/* --- Roadmap CTA --- */
.home-forward-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 0.0625rem solid var(--border-light);
}

.home-forward-cta-lead {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.75rem;
    max-width: none;
    white-space: nowrap;
    line-height: 1.3;
}

@media (max-width: 48rem) {
    .home-forward-cta-lead {
        white-space: normal;
        font-size: clamp(1.125rem, 5vw, 1.375rem);
    }
}

/* #region TRINITY SUBSCRIBE MODAL */
.trinity-sub-modal .modal-box {
    max-width: 32rem;
    padding: 3rem 2.5rem;
    text-align: center;
}

.trinity-sub-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(183, 28, 47, 0.07);
    border: 0.0625rem solid rgba(183, 28, 47, 0.2);
    padding: 0.3rem 0.875rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.trinity-sub-modal h3 {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.trinity-sub-modal .modal-box > p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: none;
}

.trinity-sub-form {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.trinity-sub-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 0.0625rem solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
}

.trinity-sub-form input[type="email"]:focus {
    border-color: var(--navy);
}

.trinity-sub-form .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

.trinity-sub-skip {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.trinity-sub-skip:hover {
    opacity: 1;
}

.trinity-sub-note {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.3);
    margin: 0;
    max-width: none;
}

@media (max-width: 30rem) {
    .trinity-sub-form {
        flex-direction: column;
    }

    .trinity-sub-modal .modal-box {
        padding: 2rem 1.5rem;
    }
}
/* #endregion */

/* --- New Sections Responsive --- */
@media (max-width: 64rem) {
    .home-overview-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .home-overview-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-overview-stat {
        border-right: none;
        border-bottom: 0.0625rem solid rgba(255,255,255,0.08);
    }

    .home-overview-stat:nth-child(odd) {
        border-right: 0.0625rem solid rgba(255,255,255,0.08);
    }

    .home-overview-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .home-history-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home-history-img-wrap {
        align-self: auto;
    }

    .home-depth-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .hf-nodes {
        display: none;
    }

    .hf-cards {
        grid-template-columns: 1fr;
    }

    .home-forward-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 48rem) {
    .home-depth-cards {
        grid-template-columns: 1fr;
    }

    .home-overview-highlights {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hf-node-wrap.next .hf-node-dot {
        animation: none;
    }
}
/* #endregion */

/* #region PAGE: MANAGEMENT */
.mgmt-section {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: var(--bg);
}

.mgmt-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}
/* #endregion */

/* #region PAGE: ADVISORS */
/* Reuses .mgmt-section and .team-grid styles */
/* #endregion */

/* #region PAGE: STOCK */
.stock-section {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: var(--bg);
}

.stock-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}

.stock-chart-wrap {
    margin-bottom: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 0.0625rem solid var(--border-light);
}

.stock-symbols-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stock-symbol-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 0.0625rem solid var(--border);
    border-radius: 0.5rem;
    background: var(--surface);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.stock-symbol-btn.active {
    border-color: var(--red);
    background: rgba(183,28,47,0.04);
}

.stock-symbol-btn-exchange {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stock-symbol-btn-ticker {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
}

.stock-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stock-stat-card {
    background: var(--surface);
    border-top: 0.1875rem solid var(--red);
    padding: 1.5rem;
    text-align: center;
    border-radius: 0 0 0.5rem 0.5rem;
}

.stock-stat-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stock-stat-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}

@media (max-width: 48rem) {
    .stock-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* #endregion */

/* #region PAGE: NEWS */
.news-section {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: var(--bg);
}

.news-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}
/* #endregion */

/* #region PAGE: PRESENTATIONS */
.pres-section {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: var(--bg);
}

.pres-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
}
/* #endregion */

/* #region PAGE: CONTACT */
/* Styles defined in CONTACT region above */
/* #endregion */

/* #region PAGE: SUBSCRIBE */
/* Styles defined in SUBSCRIBE PAGE region above */
/* #endregion */

/* #region PAGE: DISCLAIMERS */
.disclaimers-section {
    max-width: 52rem;
    margin-inline: auto;
    padding: clamp(3rem, 5vw, 5rem) var(--gut);
}

.disclaimers-section h3 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.0625rem solid var(--border-light);
}

.disclaimers-section .disc-block {
    margin-bottom: 2.5rem;
}

.disclaimers-section p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
/* #endregion */

/* #region PAGE: 404 */
.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40vh;
    padding: 4rem var(--gut);
}

.page-404 [data-lucide] {
    width: 4rem;
    height: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.page-404 h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.page-404 p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
/* #endregion */
