:root {
  --charcoal: #0b0d0f;
  --graphite: #20252a;
  --ivory: #f2eee6;
  --gold: #b08d57;
  --silver: #b9bec4;
  --emerald: #18352d;
  --white: #ffffff;
  --muted: #6c7174;
  --line: rgba(176, 141, 87, 0.34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body:not(.is-loaded) .site-header,
body:not(.is-loaded) .hero-copy > *,
body:not(.is-loaded) .hero-card,
body:not(.is-loaded) .orbital-field {
  opacity: 0;
}

body:not(.is-loaded) .hero-card {
  transform: translateY(-82px);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px 34px;
  color: var(--ivory);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header[data-elevated="true"] {
  border-bottom: 1px solid rgba(185, 190, 196, 0.16);
  background: rgba(11, 13, 15, 0.88);
  backdrop-filter: blur(16px);
  padding-block: 12px;
}

.brand-link img {
  display: block;
  width: clamp(190px, 21vw, 310px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(242, 238, 230, 0.78);
}

.site-nav a:hover {
  color: var(--ivory);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle,
.menu-toggle,
.header-cta,
.primary-button,
.secondary-button,
.contact-form button {
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle {
  display: inline-flex;
  width: 42px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(176, 141, 87, 0.5);
  background: rgba(11, 13, 15, 0.2);
  color: var(--ivory);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header[data-menu-open="true"] .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-menu-open="true"] .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header[data-menu-open="true"] .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lang-toggle {
  width: 42px;
  height: 38px;
  border: 1px solid rgba(185, 190, 196, 0.35);
  background: transparent;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(176, 141, 87, 0.55);
  padding: 0 15px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 750;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 34px;
  display: grid;
  min-width: 230px;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.34);
  border-radius: 8px;
  background: rgba(11, 13, 15, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header[data-menu-open="true"] .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel a {
  border-bottom: 1px solid rgba(185, 190, 196, 0.1);
  padding: 13px 16px;
  color: rgba(242, 238, 230, 0.78);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-panel a:last-child {
  border-bottom: 0;
}

.menu-panel a:hover {
  background: rgba(176, 141, 87, 0.1);
  color: var(--ivory);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--ivory);
}

.hero::before {
  position: absolute;
  inset: 78px clamp(14px, 2vw, 28px) auto;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 238, 230, 0.18), transparent);
  content: "";
  opacity: 0.88;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 3vw, 54px);
  bottom: clamp(18px, 4vw, 56px);
  z-index: 1;
  width: clamp(160px, 18vw, 340px);
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0), rgba(176, 141, 87, 0.62), rgba(176, 141, 87, 0));
  content: "";
  opacity: 0.62;
  transform-origin: right;
  animation: editorialRailPulse 4200ms ease-in-out infinite;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  opacity: 0.94;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  top: 14%;
  right: 7%;
  width: clamp(220px, 28vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 238, 230, 0.09);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 53, 45, 0.18), transparent 66%);
  filter: blur(0.2px);
  animation: spatialHaloDrift 18s ease-in-out infinite alternate;
}

.hero-visual::after {
  inset: 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(242, 238, 230, 0.08), transparent 18%),
    linear-gradient(110deg, transparent 0 55%, rgba(242, 238, 230, 0.055) 55.2%, transparent 56% 100%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: atmosphericSweep 14s ease-in-out infinite alternate;
}

.metal-plane {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(242, 238, 230, 0.08), transparent 28%),
    linear-gradient(150deg, transparent 45%, rgba(176, 141, 87, 0.15) 46%, transparent 55%),
    linear-gradient(35deg, rgba(24, 53, 45, 0.7), transparent 40%),
    #0b0d0f;
  animation: metalSweep 16s ease-in-out infinite alternate;
}

.reserve-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 190, 196, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 190, 196, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
  animation: gridDrift 22s linear infinite;
}

.orbital-field {
  position: absolute;
  left: clamp(-260px, -12vw, -96px);
  right: auto;
  top: 50%;
  width: clamp(420px, 45vw, 720px);
  aspect-ratio: 1;
  opacity: 0.58;
  transform: translate3d(var(--parallax-x, 0px), calc(-50% + var(--parallax-y, 0px)), 0);
  transition: opacity 900ms ease 520ms, transform 260ms ease-out;
}

.orbit,
.orbital-core {
  position: absolute;
  inset: 0;
  margin: auto;
}

.orbit {
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(185, 190, 196, 0.04), 0 0 90px rgba(24, 53, 45, 0.3);
}

.orbit::before {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(176, 141, 87, 0.72);
  content: "";
}

.orbit-one {
  width: 100%;
  height: 100%;
  animation: orbitRotate 18s linear infinite;
}

.orbit-two {
  width: 74%;
  height: 74%;
  transform: rotateX(64deg) rotateZ(-18deg);
  animation: orbitRotateReverse 24s linear infinite;
}

.orbit-three {
  width: 52%;
  height: 52%;
  border-color: rgba(185, 190, 196, 0.2);
  transform: rotateX(72deg) rotateZ(36deg);
  animation: orbitRotate 28s linear infinite;
}

.orbital-core {
  display: grid;
  width: 34%;
  height: 34%;
  place-items: center;
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(242, 238, 230, 0.13), rgba(24, 53, 45, 0.58) 48%, rgba(11, 13, 15, 0.86));
  color: rgba(242, 238, 230, 0.82);
  font-size: clamp(28px, 5vw, 82px);
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), inset 0 0 32px rgba(176, 141, 87, 0.14);
  transform: translateZ(0);
  animation: corePulse 4.8s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: center;
  padding: 132px 0 78px;
}

.hero-copy {
  max-width: 820px;
}

.is-loaded .site-header {
  animation: headerReveal 760ms ease both;
}

.is-loaded .hero-date-line {
  opacity: 1;
}

.is-loaded .hero-copy .eyebrow {
  animation: introSlide 760ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both;
}

.is-loaded .hero-copy h1 {
  animation: introSlide 900ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.is-loaded .hero-copy .hero-text {
  animation: introSlide 860ms cubic-bezier(0.16, 1, 0.3, 1) 410ms both;
}

.is-loaded .hero-actions {
  animation: introSlide 760ms cubic-bezier(0.16, 1, 0.3, 1) 560ms both;
}

.hero-date-line {
  position: absolute;
  z-index: 4;
  top: 102px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 999px;
  background: rgba(11, 13, 15, 0.18);
  color: rgba(242, 238, 230, 0.62);
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 640ms ease 180ms;
  backdrop-filter: blur(12px);
}

.hero-date-line span {
  color: var(--gold);
}

.hero-date-line time {
  letter-spacing: 0.02em;
  text-transform: none;
}

.editorial-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

.editorial-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-panel.editorial-reveal {
  transform: translateY(76px) scale(0.96);
  transition-duration: 1180ms;
}

.about-panel.editorial-reveal.is-visible {
  transform: translateY(0) scale(1);
}

.about-heading-block .section-kicker,
.about-heading-block h2,
.about-monogram,
.about-statement-label,
.about-copy p,
.about-proof-grid {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 920ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-copy p {
  clip-path: inset(0 100% 0 0);
  filter: blur(10px);
  transform: translateX(44px) translateY(18px);
  transition:
    opacity 980ms ease 300ms,
    transform 1500ms cubic-bezier(0.16, 1, 0.3, 1) 300ms,
    clip-path 1550ms cubic-bezier(0.16, 1, 0.3, 1) 300ms,
    filter 1100ms ease 300ms;
}

.about-panel.is-visible .about-heading-block .section-kicker,
.about-panel.is-visible .about-heading-block h2,
.about-panel.is-visible .about-monogram,
.about-panel.is-visible .about-statement-label,
.about-panel.is-visible .about-copy p,
.about-panel.is-visible .about-proof-grid {
  opacity: 1;
  transform: translateY(0);
}

.about-panel.is-visible .about-copy p {
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translateX(0) translateY(0);
  animation: aboutCopySettle 1500ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
}

.about-panel.is-visible .about-heading-block h2 {
  transition-delay: 120ms;
}

.about-panel.is-visible .about-copy p {
  transition-delay: 260ms;
}

.about-panel.is-visible .about-proof-grid {
  transition-delay: 420ms;
}

@keyframes aboutCopySettle {
  0% {
    letter-spacing: 0.018em;
  }
  70% {
    letter-spacing: 0;
  }
  100% {
    letter-spacing: 0;
  }
}

.line-card.editorial-reveal,
.market-card.editorial-reveal,
.insight-card.editorial-reveal {
  transform: translateY(42px) scale(0.985);
}

.line-card.editorial-reveal.is-visible,
.market-card.editorial-reveal.is-visible,
.insight-card.editorial-reveal.is-visible {
  transform: translateY(0) scale(1);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 24px;
  font-family: "Arial Black", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(44px, 6.6vw, 98px);
  font-weight: 900;
  line-height: 0.94;
}

.hero-text {
  max-width: 620px;
  color: rgba(242, 238, 230, 0.74);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 22px;
  font-weight: 800;
}

.primary-button::after,
.secondary-button::after {
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(242, 238, 230, 0.32), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg);
  transition: left 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 280ms ease;
  pointer-events: none;
}

.primary-button:hover::after,
.secondary-button:hover::after {
  left: 112%;
  opacity: 1;
}

.primary-button {
  background: var(--emerald);
  color: var(--ivory);
}

.secondary-button {
  border: 1px solid rgba(185, 190, 196, 0.38);
  color: var(--ivory);
}

.hero-card {
  position: relative;
  align-self: start;
  justify-self: center;
  width: min(100%, 430px);
  margin-top: clamp(92px, 16vh, 128px);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 8px;
  background: rgba(32, 37, 42, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  padding: 28px;
  backdrop-filter: blur(14px);
  transform: translateY(-104px);
  transition: opacity 880ms ease 620ms, transform 880ms cubic-bezier(0.16, 1, 0.3, 1) 620ms;
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-card::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 17, 18, 0.76), rgba(13, 17, 18, 0.64) 46%, rgba(13, 17, 18, 0.38)),
    radial-gradient(circle at 20% 12%, rgba(176, 141, 87, 0.16), transparent 36%);
}

.hero-card::after {
  z-index: 2;
  background:
    linear-gradient(rgba(242, 238, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 238, 230, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18), #000 34%, #000 82%, rgba(0, 0, 0, 0.28));
}

.hero-card-video-stage {
  position: absolute;
  inset: 0;
}

.hero-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.92) contrast(1.2) brightness(0.88);
  transform: scale(1.12);
  transition: opacity 1800ms ease;
}

.hero-card-video.is-active {
  opacity: 0.78;
  animation: heroVideoDrift 7600ms ease-in-out both;
}

.hero-card > img,
.hero-card > dl {
  position: relative;
  z-index: 3;
}

.is-loaded .hero-card {
  opacity: 1;
  transform: translateY(-104px);
}

@media (min-width: 981px) {
  .is-loaded .hero-card {
    animation: heroCardFloat 8200ms ease-in-out 1300ms infinite;
  }
}

.hero-mark {
  width: 130px;
  margin-bottom: 30px;
}

.hero-card dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.hero-card dt {
  margin-bottom: 6px;
  color: var(--ivory);
  font-size: 18px;
  font-weight: 850;
}

.hero-card dd {
  margin: 0;
  color: rgba(242, 238, 230, 0.68);
  font-size: 15px;
}

.section {
  padding: clamp(74px, 9vw, 126px) 0;
}

.section-light {
  background: var(--ivory);
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(176, 141, 87, 0.2), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(24, 53, 45, 0.22), transparent 30%),
    linear-gradient(180deg, #f7f2e8 0%, #efe7da 58%, var(--ivory) 100%);
}

.about-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 13, 15, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.about-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(176, 141, 87, 0.12) 30.2% 30.8%, transparent 31% 100%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.42), transparent 36%);
  content: "";
  pointer-events: none;
}

.section-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.lines-teaser-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(176, 141, 87, 0.16), transparent 28%),
    linear-gradient(135deg, var(--charcoal), var(--graphite));
  color: var(--ivory);
}

.lines-teaser-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 24%, rgba(176, 141, 87, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(242, 238, 230, 0.06), rgba(24, 53, 45, 0.16)),
    rgba(11, 13, 15, 0.28);
  padding: clamp(26px, 5vw, 52px);
  text-align: center;
}

.lines-teaser-panel::before,
.market-teaser-panel::before,
.insights-teaser-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(242, 238, 230, 0.08), transparent),
    radial-gradient(circle at 18% 36%, rgba(176, 141, 87, 0.18), transparent 24%);
  content: "";
  opacity: 0;
  transform: translateX(-12%);
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lines-teaser-panel::after,
.market-teaser-panel::after,
.insights-teaser-panel::after {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 36px);
  width: clamp(64px, 12vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.68), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 760ms ease 220ms, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1) 220ms;
  pointer-events: none;
}

.lines-teaser-panel.is-visible::before,
.market-teaser-panel.is-visible::before,
.insights-teaser-panel.is-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.lines-teaser-panel.is-visible::after,
.market-teaser-panel.is-visible::after,
.insights-teaser-panel.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.lines-teaser-panel h2,
.lines-teaser-panel p:not(.section-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.lines-teaser-panel h2 {
  max-width: 760px;
}

.lines-teaser-panel p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(242, 238, 230, 0.66);
  font-size: clamp(16px, 1.8vw, 20px);
}

.lines-teaser-button {
  white-space: nowrap;
}

.lines-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 24%, rgba(176, 141, 87, 0.2), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(24, 53, 45, 0.7), transparent 34%),
    linear-gradient(135deg, #090b0c 0%, #111615 58%, #15120d 100%);
  color: var(--ivory);
}

.lines-page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 238, 230, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 238, 230, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 86%, transparent);
}

.lines-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 72svh;
  padding: 150px 0 88px;
}

.lines-page-hero h1 {
  max-width: 980px;
}

.lines-page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(242, 238, 230, 0.7);
  font-size: clamp(17px, 2vw, 22px);
}

.lines-page-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(176, 141, 87, 0.12), transparent 24%),
    var(--charcoal);
}

.insights-teaser-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(24, 53, 45, 0.14), transparent 30%),
    linear-gradient(180deg, #f7f2e8 0%, var(--ivory) 100%);
}

.insights-teaser-panel {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(176, 141, 87, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 74px rgba(11, 13, 15, 0.07);
  padding: clamp(26px, 5vw, 52px);
  text-align: center;
}

.insights-teaser-panel h2,
.insights-teaser-panel p:not(.section-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.insights-teaser-panel h2 {
  max-width: 820px;
}

.insights-teaser-panel p:not(.section-kicker) {
  max-width: 700px;
  color: #4c555a;
  font-size: clamp(16px, 1.8vw, 20px);
}

.insights-teaser-button {
  white-space: nowrap;
}

.insights-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(176, 141, 87, 0.18), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(24, 53, 45, 0.72), transparent 34%),
    linear-gradient(135deg, #090b0c 0%, #111615 58%, #15120d 100%);
  color: var(--ivory);
}

.insights-page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 238, 230, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 238, 230, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 86%, transparent);
}

.insights-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 72svh;
  padding: 150px 0 88px;
}

.insights-page-hero h1 {
  max-width: 980px;
}

.insights-page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(242, 238, 230, 0.7);
  font-size: clamp(17px, 2vw, 22px);
}

.insights-page-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(176, 141, 87, 0.12), transparent 28%),
    var(--ivory);
}

.insights-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.insight-feature-card,
.insight-editorial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 54px rgba(11, 13, 15, 0.07);
  padding: clamp(24px, 4vw, 44px);
}

.insight-feature-card {
  grid-row: span 2;
  min-height: 520px;
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 141, 87, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(242, 238, 230, 0.62));
}

.insight-feature-card::after,
.insight-editorial-card::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(24, 53, 45, 0.12);
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(176, 141, 87, 0.24), transparent, rgba(24, 53, 45, 0.16), transparent);
  content: "";
  opacity: 0.72;
  animation: insightMarkTurn 16s linear infinite;
}

.insight-feature-card span,
.insight-editorial-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-feature-card h2,
.insight-editorial-card h3 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.insight-feature-card h2 {
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
}

.insight-editorial-card h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.02;
}

.insight-feature-card p,
.insight-editorial-card p {
  max-width: 680px;
  margin: 0;
  color: #4c555a;
  font-size: clamp(15px, 1.7vw, 18px);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
}

.about-panel {
  position: relative;
  z-index: 1;
  align-items: center;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, 0.96), rgba(20, 27, 26, 0.92) 46%, rgba(242, 238, 230, 0.84) 46.2%, rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.36);
  box-shadow: 0 34px 96px rgba(11, 13, 15, 0.18);
  padding: clamp(30px, 5vw, 64px);
}

.about-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-ribbon {
  position: absolute;
  right: clamp(-40px, 2vw, 40px);
  top: 50%;
  width: min(360px, 34vw);
  height: min(360px, 34vw);
  border: 1px solid transparent;
  border-radius: 42% 58% 52% 48%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 34%),
    conic-gradient(from 210deg, rgba(176, 141, 87, 0), rgba(176, 141, 87, 0.42), rgba(185, 190, 196, 0.24), rgba(24, 53, 45, 0), rgba(176, 141, 87, 0));
  mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 17px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 17px));
  filter: drop-shadow(0 18px 34px rgba(11, 13, 15, 0.12));
  opacity: 0;
  transform: translate3d(72px, -50%, 0) rotate(-18deg) scale(0.78);
  transition: opacity 900ms ease 240ms, transform 1400ms cubic-bezier(0.16, 1, 0.3, 1) 240ms;
}

.about-ribbon-two {
  width: min(280px, 27vw);
  height: min(280px, 27vw);
  right: clamp(26px, 7vw, 110px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 36%),
    conic-gradient(from 40deg, rgba(24, 53, 45, 0), rgba(24, 53, 45, 0.34), rgba(176, 141, 87, 0.38), rgba(24, 53, 45, 0));
  transform: translate3d(48px, -50%, 0) rotate(28deg) scale(0.8);
  transition-delay: 360ms;
}

.about-ribbon-three {
  width: min(190px, 20vw);
  height: min(190px, 20vw);
  right: clamp(112px, 14vw, 210px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 34%),
    conic-gradient(from 300deg, rgba(185, 190, 196, 0), rgba(185, 190, 196, 0.34), rgba(176, 141, 87, 0.2), rgba(185, 190, 196, 0));
  transform: translate3d(34px, -50%, 0) rotate(-48deg) scale(0.8);
  transition-delay: 500ms;
}

.about-panel.is-visible .about-ribbon {
  opacity: 0.86;
  transform: translate3d(0, -50%, 0) rotate(0deg) scale(1);
  animation: aboutRibbonDrift 7600ms ease-in-out infinite;
}

.about-panel.is-visible .about-ribbon-two {
  animation-delay: 450ms;
}

.about-panel.is-visible .about-ribbon-three {
  animation-delay: 850ms;
}

.about-ribbon-glint {
  position: absolute;
  right: clamp(36px, 8vw, 140px);
  top: 22%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(176, 141, 87, 0.12) 28%, transparent 62%);
  opacity: 0;
  transform: translate3d(40px, 20px, 0) scale(0.74);
  transition: opacity 900ms ease 620ms, transform 1300ms cubic-bezier(0.16, 1, 0.3, 1) 620ms;
}

.about-panel.is-visible .about-ribbon-glint {
  opacity: 0.68;
  transform: translate3d(0, 0, 0) scale(1);
  animation: aboutGlintMove 5200ms ease-in-out infinite;
}

.about-panel::before {
  position: absolute;
  top: clamp(30px, 5vw, 64px);
  bottom: clamp(30px, 5vw, 64px);
  left: calc(46% - 1px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(176, 141, 87, 0.86), transparent);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-panel.is-visible::before {
  transform: scaleY(1);
}

.about-heading-block {
  position: relative;
  color: var(--ivory);
  padding-left: 0;
}

.about-heading-block h2 {
  max-width: 620px;
  margin-bottom: 34px;
  letter-spacing: 0;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 0.96;
}

.about-monogram {
  position: relative;
  display: inline-grid;
  width: min(280px, 74vw);
  aspect-ratio: 1.58;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 53, 45, 0.74), rgba(11, 13, 15, 0.88)),
    rgba(11, 13, 15, 0.9);
  box-shadow: inset 0 0 36px rgba(176, 141, 87, 0.08), 0 24px 52px rgba(0, 0, 0, 0.22);
}

.about-monogram::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 238, 230, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 238, 230, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
}

.about-monogram span {
  position: relative;
  z-index: 1;
  color: var(--ivory);
  font-family: "Arial Black", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 1;
}

.about-monogram i {
  position: absolute;
  right: 18%;
  bottom: 27%;
  left: 18%;
  height: 8px;
  border-radius: 999px;
  background: var(--emerald);
}

.about-monogram i::after {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(176, 141, 87, 0.64);
  content: "";
  transform: translate(-50%, -50%);
  animation: logoDotSweep 4.8s ease-in-out infinite;
}

.about-copy {
  position: relative;
  border-left: 0;
  padding-left: 0;
}

.about-copy p {
  max-width: 820px;
  color: #26302f;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.52;
  text-align: left;
  text-align-last: left;
}

.about-statement-label {
  display: inline-flex;
  margin-bottom: 22px;
  border: 1px solid rgba(176, 141, 87, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--gold);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  background: rgba(176, 141, 87, 0.28);
}

.about-proof-grid span {
  min-height: 92px;
  display: flex;
  align-items: end;
  background:
    radial-gradient(circle at 88% 12%, rgba(176, 141, 87, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.48);
  color: #1e2826;
  padding: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-signals {
  display: grid;
  place-items: center;
  margin-top: 28px;
}

.about-signal {
  min-width: min(260px, 100%);
  border: 1px solid rgba(176, 141, 87, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 238, 230, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(24, 53, 45, 0.96), rgba(11, 13, 15, 0.9));
  color: var(--ivory);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(12px);
  opacity: 0;
  box-shadow: 0 16px 34px rgba(11, 13, 15, 0.12), inset 0 0 18px rgba(176, 141, 87, 0.08);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
}

.about-panel.is-visible .about-signal {
  opacity: 1;
  transform: translateY(0);
}

.about-signal.is-switching {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(8px) scale(0.98);
}

@keyframes aboutRibbonDrift {
  0%,
  100% {
    filter: drop-shadow(0 18px 34px rgba(11, 13, 15, 0.12));
    translate: 0 0;
  }
  50% {
    filter: drop-shadow(0 26px 42px rgba(11, 13, 15, 0.16));
    translate: -10px -8px;
  }
}

@keyframes aboutGlintMove {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  50% {
    opacity: 0.74;
    transform: translate3d(-24px, 22px, 0) scale(1.08);
  }
}

@keyframes logoDotSweep {
  0%,
  100% {
    left: 46%;
  }

  50% {
    left: 64%;
  }
}

.section h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-family: "Arial Black", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 1;
}

.prose {
  color: #30363a;
  font-size: clamp(17px, 2vw, 21px);
}

.prose p {
  margin-bottom: 0;
}

.section-dark .section-heading h2 {
  color: var(--ivory);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 44px;
}

#lines .section-heading,
#insights .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#lines .section-heading h2,
#insights .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.line-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(176, 141, 87, 0.3);
  border: 1px solid rgba(176, 141, 87, 0.3);
}

.line-card {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(176, 141, 87, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(36, 42, 47, 0.96), rgba(13, 16, 18, 0.98));
  padding: 28px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.line-card:hover {
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 141, 87, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(42, 49, 54, 0.98), rgba(13, 16, 18, 0.98));
  transform: translateY(-2px);
}

.line-card-wide {
  grid-column: 1 / -1;
  min-height: 260px;
  padding-right: min(42vw, 470px);
}

.line-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 190, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 190, 196, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: 0.5;
  pointer-events: none;
}

.line-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.65), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.line-card:hover::after {
  opacity: 1;
}

.line-index {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 130px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.line-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.04;
}

.line-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(242, 238, 230, 0.68);
  font-size: 16px;
}

.line-visual {
  position: absolute;
  z-index: 1;
  top: 58px;
  right: 22px;
  width: 150px;
  aspect-ratio: 1;
  opacity: 0.72;
  animation: lineVisualIntro 1200ms cubic-bezier(0.16, 1, 0.3, 1) both, lineVisualBreath 5600ms ease-in-out infinite 1300ms;
  transition: opacity 180ms ease, transform 220ms ease;
}

.line-card:hover .line-visual {
  opacity: 0.94;
  transform: translateY(-4px) scale(1.04);
}

.line-card-wide .line-visual {
  top: 32px;
  right: 70px;
  width: min(27vw, 250px);
}

.line-visual::before {
  position: absolute;
  inset: 4%;
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-radius: 50%;
  content: "";
}

.cash-disc {
  position: absolute;
  right: 14%;
  top: 4%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(176, 141, 87, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(242, 238, 230, 0.2), rgba(24, 53, 45, 0.72) 58%, rgba(11, 13, 15, 0.88));
  box-shadow: inset 0 0 26px rgba(176, 141, 87, 0.14), 0 18px 44px rgba(0, 0, 0, 0.24);
  animation: lineSoftPulse 4200ms ease-in-out infinite;
}

.cash-bar {
  position: absolute;
  left: 8%;
  height: 18%;
  border: 1px solid rgba(185, 190, 196, 0.22);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(242, 238, 230, 0.12), rgba(24, 53, 45, 0.62));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.cash-bar:nth-child(2) {
  right: 28%;
  bottom: 31%;
}

.cash-bar:nth-child(3) {
  right: 18%;
  bottom: 20%;
}

.cash-bar:nth-child(4) {
  right: 8%;
  bottom: 9%;
}

.metal-ingot {
  position: absolute;
  width: 62%;
  height: 25%;
  border: 1px solid rgba(176, 141, 87, 0.42);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(242, 238, 230, 0.24), rgba(176, 141, 87, 0.72) 46%, rgba(80, 63, 38, 0.82)),
    var(--gold);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), inset 10px 0 18px rgba(242, 238, 230, 0.14);
  transform: skewX(-14deg);
  transition: transform 220ms ease;
}

.line-metals:hover .metal-ingot:nth-child(1) {
  transform: translateY(-4px) skewX(-14deg);
}

.line-metals:hover .metal-ingot:nth-child(2) {
  transform: translateY(-2px) skewX(-14deg);
}

.metal-ingot:nth-child(1) {
  right: 8%;
  top: 20%;
}

.metal-ingot:nth-child(2) {
  right: 24%;
  top: 42%;
}

.metal-ingot:nth-child(3) {
  right: 12%;
  top: 62%;
}

.digital-ring {
  position: absolute;
  inset: 2%;
  border: 1px solid rgba(185, 190, 196, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 26px rgba(24, 53, 45, 0.45);
  animation: orbitRotate 18s linear infinite;
}

.digital-coin {
  position: absolute;
  inset: 22%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 141, 87, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(242, 238, 230, 0.22), rgba(176, 141, 87, 0.58) 50%, rgba(11, 13, 15, 0.9));
  color: rgba(242, 238, 230, 0.84);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 0 26px rgba(176, 141, 87, 0.18);
}

.digital-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--silver);
  box-shadow: 0 0 18px rgba(185, 190, 196, 0.55);
  animation: lineSoftPulse 3200ms ease-in-out infinite;
}

.digital-node:nth-child(3) {
  right: 14%;
  top: 22%;
}

.digital-node:nth-child(4) {
  left: 16%;
  bottom: 20%;
}

.market-axis {
  position: absolute;
  inset: 20% 12% 16% 14%;
  border-left: 1px solid rgba(185, 190, 196, 0.28);
  border-bottom: 1px solid rgba(185, 190, 196, 0.28);
}

.market-bar {
  position: absolute;
  bottom: 18%;
  width: 13%;
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.72), rgba(24, 53, 45, 0.74));
}

.market-bar:nth-child(2) {
  left: 26%;
  height: 24%;
}

.market-bar:nth-child(3) {
  left: 46%;
  height: 42%;
}

.market-bar:nth-child(4) {
  left: 66%;
  height: 60%;
}

.market-line {
  position: absolute;
  left: 22%;
  top: 25%;
  width: 62%;
  height: 42%;
  border-top: 2px solid rgba(185, 190, 196, 0.72);
  border-right: 2px solid rgba(185, 190, 196, 0.72);
  transform: skewY(-22deg);
  animation: marketLinePulse 3600ms ease-in-out infinite;
}

.opportunity-frame {
  position: absolute;
  inset: 19%;
  border: 1px solid rgba(176, 141, 87, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(242, 238, 230, 0.08), rgba(24, 53, 45, 0.5));
  transform: rotate(45deg);
  box-shadow: inset 0 0 26px rgba(176, 141, 87, 0.1), 0 18px 44px rgba(0, 0, 0, 0.2);
}

.opportunity-path {
  position: absolute;
  left: 19%;
  top: 56%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 190, 196, 0.1), rgba(176, 141, 87, 0.78));
  transform: rotate(-26deg);
}

.opportunity-point {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(176, 141, 87, 0.62);
  animation: lineSoftPulse 3000ms ease-in-out infinite;
}

.opportunity-point:nth-child(3) {
  left: 18%;
  bottom: 28%;
}

.opportunity-point:nth-child(4) {
  right: 15%;
  top: 25%;
}

.line-detail-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.line-detail {
  scroll-margin-top: 84px;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  padding: clamp(54px, 7vw, 88px) 0;
}

.line-detail:nth-child(even) {
  background: #101316;
}

.line-detail-inner {
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.line-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.line-detail h2 {
  margin: 0;
  font-family: "Arial Black", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.02;
}

.line-detail p:not(.section-kicker) {
  margin: 34px 0 0;
  color: rgba(242, 238, 230, 0.72);
  font-size: clamp(17px, 1.8vw, 21px);
}

.market-section {
  background: var(--graphite);
  color: var(--ivory);
}

.market-teaser-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 141, 87, 0.16), transparent 28%),
    linear-gradient(135deg, var(--graphite), var(--charcoal));
  color: var(--ivory);
}

.market-teaser-panel {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 238, 230, 0.06), rgba(24, 53, 45, 0.18)),
    rgba(11, 13, 15, 0.28);
  padding: clamp(26px, 5vw, 52px);
}

.market-teaser-panel h2 {
  margin-right: auto;
  margin-left: auto;
  max-width: 760px;
}

.market-teaser-panel p:not(.section-kicker) {
  margin-right: auto;
  margin-left: auto;
  max-width: 680px;
  color: rgba(242, 238, 230, 0.66);
  font-size: clamp(16px, 1.8vw, 20px);
}

.market-teaser-button {
  white-space: nowrap;
}

.market-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(176, 141, 87, 0.22), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(24, 53, 45, 0.64), transparent 34%),
    linear-gradient(135deg, #090b0c 0%, #111615 58%, #15120d 100%);
  color: var(--ivory);
}

.market-page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 238, 230, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 238, 230, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 86%, transparent);
}

.market-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 72svh;
  padding: 150px 0 88px;
}

.market-page-hero h1 {
  max-width: 980px;
}

.market-page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(242, 238, 230, 0.7);
  font-size: clamp(17px, 2vw, 22px);
}

.market-page-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(176, 141, 87, 0.14), transparent 24%),
    var(--graphite);
}

.market-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.refresh-button {
  min-height: 42px;
  border: 1px solid rgba(176, 141, 87, 0.5);
  border-radius: 6px;
  background: transparent;
  color: var(--ivory);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.refresh-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(176, 141, 87, 0.32);
  background: rgba(176, 141, 87, 0.32);
}

.market-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.market-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  background: var(--charcoal);
  padding: 22px;
}

.market-page-grid .market-card {
  isolation: isolate;
  min-height: 190px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: 6px;
  background:
    radial-gradient(circle at 82% 16%, rgba(176, 141, 87, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(15, 21, 20, 0.96), rgba(11, 13, 15, 0.98));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.market-page-grid .market-card::before,
.market-page-grid .market-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.market-page-grid .market-card::before {
  right: 18px;
  top: 18px;
  z-index: -1;
  width: 116px;
  height: 76px;
  opacity: 0.44;
}

.market-page-grid .market-card::after {
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(242, 238, 230, 0.12);
  border-radius: 50%;
  background: rgba(242, 238, 230, 0.035);
  color: rgba(242, 238, 230, 0.64);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.02em;
  animation: marketAssetFloat 4600ms ease-in-out infinite;
}

.market-page-grid .market-card-digital::before {
  border: 1px solid rgba(185, 190, 196, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(185, 190, 196, 0.14), transparent 22%),
    conic-gradient(from 40deg, transparent 0 22%, rgba(185, 190, 196, 0.34) 23% 25%, transparent 26% 52%, rgba(176, 141, 87, 0.32) 53% 55%, transparent 56% 100%);
  box-shadow: inset 0 0 26px rgba(24, 53, 45, 0.44);
  animation: marketOrbitTurn 15s linear infinite;
}

.market-page-grid .market-card-digital::after {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.5), transparent 18%),
    linear-gradient(135deg, rgba(176, 141, 87, 0.72), rgba(24, 53, 45, 0.76));
  box-shadow: inset 0 0 22px rgba(185, 190, 196, 0.18), 0 0 28px rgba(185, 190, 196, 0.08);
}

.market-page-grid .market-card[data-symbol="BTC"]::after {
  content: "₿";
}

.market-page-grid .market-card[data-symbol="ETH"]::after {
  content: "Ξ";
}

.market-page-grid .market-card[data-symbol="SOL"]::after {
  content: "S";
}

.market-page-grid .market-card-equity::before {
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(185, 190, 196, 0.24) 58% 100%),
    linear-gradient(90deg, transparent 0 8%, rgba(176, 141, 87, 0.6) 8% 17%, transparent 17% 25%, rgba(185, 190, 196, 0.44) 25% 34%, transparent 34% 42%, rgba(176, 141, 87, 0.52) 42% 51%, transparent 51% 59%, rgba(185, 190, 196, 0.48) 59% 68%, transparent 68% 76%, rgba(176, 141, 87, 0.64) 76% 85%, transparent 85%);
  clip-path: polygon(0 100%, 0 18%, 18% 18%, 18% 100%, 25% 100%, 25% 48%, 43% 48%, 43% 100%, 50% 100%, 50% 28%, 68% 28%, 68% 100%, 75% 100%, 75% 8%, 93% 8%, 93% 100%);
  animation: marketBarsLift 5.6s ease-in-out infinite;
}

.market-page-grid .market-card-equity::after {
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(185, 190, 196, 0.2), rgba(24, 53, 45, 0.5)),
    rgba(242, 238, 230, 0.035);
  transform: skewX(-10deg);
}

.market-page-grid .market-card-equity[data-symbol="EC"]::after {
  content: "EC";
}

.market-page-grid .market-card-equity[data-symbol="META"]::after {
  content: "M";
}

.market-page-grid .market-card-equity[data-symbol="AMZN"]::after {
  content: "A";
}

.market-page-grid .market-card-metal::before {
  width: 132px;
  height: 82px;
  background:
    linear-gradient(145deg, rgba(242, 238, 230, 0.18), rgba(176, 141, 87, 0.55) 48%, rgba(72, 55, 30, 0.6)),
    var(--gold);
  clip-path: polygon(14% 18%, 86% 18%, 100% 100%, 0 100%);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.2));
  transform: skewX(-12deg);
  animation: marketIngotGlint 5.2s ease-in-out infinite;
}

.market-page-grid .market-card-metal::after {
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(176, 141, 87, 0.38), rgba(242, 238, 230, 0.08));
  transform: skewX(-12deg);
}

.market-page-grid .market-card-metal[data-symbol="GOLD"]::after {
  content: "Au";
}

.market-page-grid .market-card-metal[data-symbol="SILVER"]::after {
  content: "Ag";
}

.market-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.market-card strong {
  display: block;
  min-height: 40px;
  color: var(--ivory);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.market-card small {
  display: block;
  margin-top: 10px;
  color: rgba(242, 238, 230, 0.58);
  font-size: 13px;
}

.market-card em {
  display: block;
  margin-top: 8px;
  color: var(--silver);
  font-size: 12px;
  font-style: normal;
}

@keyframes marketAssetFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 0) scale(1.03);
  }
}

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

@keyframes marketBarsLift {
  0%,
  100% {
    transform: translateY(6px);
    opacity: 0.36;
  }
  50% {
    transform: translateY(0);
    opacity: 0.56;
  }
}

@keyframes marketIngotGlint {
  0%,
  100% {
    transform: translate3d(0, 4px, 0) skewX(-12deg);
    opacity: 0.38;
  }
  50% {
    transform: translate3d(-8px, 0, 0) skewX(-12deg);
    opacity: 0.56;
  }
}

.market-note {
  margin: 16px 0 0;
  color: rgba(242, 238, 230, 0.52);
  font-size: 12px;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(24, 53, 45, 0.76), transparent 38%),
    linear-gradient(150deg, transparent 52%, rgba(176, 141, 87, 0.16) 53%, transparent 64%),
    var(--charcoal);
  color: var(--ivory);
  padding: 150px 0 92px;
}

.blog-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 190, 196, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 190, 196, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.22));
}

.blog-hero-inner {
  position: relative;
  max-width: 980px;
}

.blog-hero h1 {
  margin-bottom: 26px;
}

.blog-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(242, 238, 230, 0.72);
  font-size: clamp(18px, 2vw, 23px);
}

.blog-section {
  background: var(--ivory);
}

.blog-layout {
  display: grid;
  gap: 26px;
}

.blog-featured {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(176, 141, 87, 0.16), transparent 34%),
    var(--charcoal);
  color: var(--ivory);
  padding: clamp(28px, 5vw, 54px);
}

.blog-featured span,
.blog-post-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-featured h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ivory);
}

.blog-featured p {
  max-width: 760px;
  margin: 0;
  color: rgba(242, 238, 230, 0.68);
  font-size: 18px;
}

.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  background: rgba(176, 141, 87, 0.28);
}

.blog-post-card {
  min-height: 290px;
  background: #ffffff;
  padding: 28px;
}

.blog-post-card h3 {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.04;
}

.blog-post-card p {
  margin: 0;
  color: #4c555a;
  font-size: 15px;
}

.blog-notice {
  max-width: 980px;
  margin: 0;
  color: #5c6468;
  font-size: 13px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  min-height: 250px;
  border: 1px solid rgba(176, 141, 87, 0.26);
  border-radius: 8px;
  background: #ffffff;
  padding: 26px;
}

.insight-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.04;
}

.insight-card p {
  margin: 0;
  color: #4c555a;
  font-size: 15px;
}

.principle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.principle-row span {
  border: 1px solid rgba(176, 141, 87, 0.45);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 850;
}

.contact-section {
  background: var(--graphite);
  color: var(--ivory);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.56fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.contact-panel h2 {
  max-width: 650px;
}

.contact-panel p {
  max-width: 620px;
  color: rgba(242, 238, 230, 0.72);
  font-size: 19px;
}

#network .split {
  align-items: center;
}

#network .split > div:first-child {
  text-align: center;
}

#network .split > div:first-child h2 {
  margin-right: auto;
  margin-left: auto;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(176, 141, 87, 0.32);
  border-radius: 8px;
  background: rgba(11, 13, 15, 0.36);
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(242, 238, 230, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(185, 190, 196, 0.28);
  border-radius: 6px;
  background: rgba(242, 238, 230, 0.08);
  color: var(--ivory);
  padding: 12px 13px;
  outline: none;
}

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

.contact-form button {
  min-height: 48px;
  border: 0;
  background: var(--emerald);
  color: var(--ivory);
  font-weight: 850;
}

.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 34px 0 42px;
}

.detail-hero {
  min-height: 72svh;
  background:
    linear-gradient(130deg, rgba(24, 53, 45, 0.78), transparent 38%),
    linear-gradient(150deg, transparent 52%, rgba(176, 141, 87, 0.16) 53%, transparent 64%),
    var(--charcoal);
  color: var(--ivory);
  padding: 150px 0 82px;
}

.detail-hero-inner {
  max-width: 980px;
}

.reserve-hero {
  min-height: 82svh;
  overflow: hidden;
}

.reserve-hero-inner {
  position: relative;
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
}

.reserve-ambient {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

.reserve-ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 190, 196, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 190, 196, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.15));
  animation: gridDrift 28s linear infinite;
}

.reserve-ambient-capital {
  position: absolute;
  right: clamp(-90px, 6vw, 110px);
  top: 24%;
  width: clamp(250px, 34vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(242, 238, 230, 0.12), rgba(24, 53, 45, 0.52) 45%, rgba(11, 13, 15, 0.1) 70%);
  box-shadow: inset 0 0 64px rgba(176, 141, 87, 0.1), 0 28px 90px rgba(0, 0, 0, 0.24);
  animation: corePulse 5.6s ease-in-out infinite;
}

.reserve-ambient-capital::before,
.reserve-ambient-capital::after {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.reserve-ambient-capital::before {
  border: 1px dashed rgba(176, 141, 87, 0.34);
  animation: orbitRotate 22s linear infinite;
}

.reserve-ambient-capital::after {
  inset: 32%;
  border: 1px solid rgba(185, 190, 196, 0.22);
  box-shadow: 0 -18px 44px rgba(176, 141, 87, 0.14);
  animation: reserveCapitalFloat 7.2s ease-in-out infinite;
}

.reserve-ambient-stack {
  position: absolute;
  right: clamp(20px, 12vw, 190px);
  bottom: 16%;
  width: clamp(170px, 24vw, 360px);
  height: clamp(120px, 17vw, 250px);
  border: 1px solid rgba(185, 190, 196, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 21%, rgba(185, 190, 196, 0.18) 22%, transparent 24%),
    linear-gradient(180deg, transparent 49%, rgba(176, 141, 87, 0.22) 50%, transparent 52%),
    linear-gradient(180deg, transparent 73%, rgba(185, 190, 196, 0.14) 74%, transparent 76%),
    linear-gradient(135deg, rgba(242, 238, 230, 0.08), rgba(24, 53, 45, 0.44));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  transform: skewY(-6deg);
}

.detail-intro {
  position: relative;
  z-index: 2;
}

.reserve-signal {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 8px;
  background: rgba(11, 13, 15, 0.42);
  padding: 24px;
  backdrop-filter: blur(14px);
}

.reserve-signal span,
.reserve-process-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reserve-signal strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.reserve-signal small {
  color: rgba(242, 238, 230, 0.62);
  font-size: 14px;
}

.metals-hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(11, 13, 15, 0.96), rgba(11, 13, 15, 0.72)),
    linear-gradient(150deg, transparent 52%, rgba(176, 141, 87, 0.2) 53%, transparent 64%),
    var(--charcoal);
}

.metals-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.metals-ambient-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 28%, rgba(176, 141, 87, 0.2), transparent 24%),
    linear-gradient(120deg, rgba(242, 238, 230, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(185, 190, 196, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 58px 58px;
  opacity: 0.78;
  animation: metalSweep 18s ease-in-out infinite alternate;
}

.metals-ambient-ingot {
  position: absolute;
  right: clamp(34px, 12vw, 210px);
  bottom: 20%;
  width: clamp(160px, 24vw, 360px);
  height: clamp(68px, 9vw, 130px);
  border: 1px solid rgba(176, 141, 87, 0.36);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(242, 238, 230, 0.16), rgba(176, 141, 87, 0.54), rgba(67, 51, 30, 0.68));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28), inset 12px 0 24px rgba(242, 238, 230, 0.1);
  transform: skewX(-16deg) rotate(-4deg);
}

.metals-ambient-ingot:nth-child(3) {
  right: clamp(-20px, 7vw, 120px);
  bottom: 33%;
  opacity: 0.62;
  transform: skewX(-16deg) rotate(7deg);
}

.metals-signal strong {
  color: #f4e6c8;
}

.detail-hero h1 {
  margin-bottom: 26px;
}

.detail-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(242, 238, 230, 0.72);
  font-size: clamp(18px, 2vw, 23px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--silver);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

.detail-list {
  color: #30363a;
  font-size: 19px;
}

.detail-list ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.reserve-focus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(24, 53, 45, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f5ed 0%, var(--ivory) 64%, #ebe4d8 100%);
}

.reserve-focus-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 53, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 53, 45, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.reserve-focus-layout {
  position: relative;
  z-index: 1;
  align-items: center;
}

.reserve-liquid-visual {
  position: relative;
  float: right;
  width: clamp(132px, 17vw, 230px);
  aspect-ratio: 1;
  margin: 0 0 24px 34px;
}

.reserve-liquid-ring {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(176, 141, 87, 0.44);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.54), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(24, 53, 45, 0.18), transparent 58%);
  box-shadow: inset 0 0 34px rgba(176, 141, 87, 0.12), 0 24px 58px rgba(24, 53, 45, 0.12);
  animation: reserveLiquidPulse 5.4s ease-in-out infinite;
}

.reserve-liquid-ring::before {
  position: absolute;
  left: 50%;
  top: 7%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(176, 141, 87, 0.68);
  content: "";
  transform-origin: 0 96px;
  animation: orbitRotate 13s linear infinite;
}

.reserve-liquid-core {
  position: absolute;
  inset: 32%;
  border: 1px solid rgba(24, 53, 45, 0.26);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 53, 45, 0.86), rgba(11, 13, 15, 0.86));
  box-shadow: inset 0 0 18px rgba(242, 238, 230, 0.1);
}

.reserve-liquid-line {
  position: absolute;
  left: 12%;
  right: 14%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 53, 45, 0.12), rgba(176, 141, 87, 0.72), rgba(24, 53, 45, 0.18));
  transform-origin: center;
  animation: reserveLineFlow 3.8s ease-in-out infinite;
}

.reserve-liquid-line:nth-child(3) {
  top: 38%;
}

.reserve-liquid-line:nth-child(4) {
  top: 51%;
  left: 22%;
  animation-delay: 420ms;
}

.reserve-liquid-line:nth-child(5) {
  top: 64%;
  left: 30%;
  animation-delay: 840ms;
}

.metals-focus-layout {
  align-items: center;
}

.metals-dynamic-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid rgba(176, 141, 87, 0.36);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 850;
}

.metals-dynamic-line strong {
  color: var(--gold);
  transition: opacity 180ms ease, transform 180ms ease;
}

.metals-dynamic-line strong.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

.metals-specimen {
  position: relative;
  float: right;
  width: clamp(120px, 16vw, 210px);
  aspect-ratio: 1;
  margin: 0 0 22px 30px;
}

.specimen-rock {
  position: absolute;
  inset: 18%;
  clip-path: polygon(46% 0%, 82% 18%, 100% 58%, 72% 95%, 24% 88%, 0% 48%, 16% 14%);
  background:
    radial-gradient(circle at 32% 28%, rgba(242, 238, 230, 0.54), transparent 16%),
    linear-gradient(135deg, rgba(242, 238, 230, 0.24), rgba(176, 141, 87, 0.8) 44%, rgba(82, 62, 35, 0.96));
  box-shadow: inset -18px -22px 28px rgba(11, 13, 15, 0.28), inset 14px 8px 18px rgba(242, 238, 230, 0.12);
  animation: specimenFloat 4.8s ease-in-out infinite;
}

.specimen-shadow {
  position: absolute;
  left: 24%;
  right: 18%;
  bottom: 12%;
  height: 18px;
  border-radius: 50%;
  background: rgba(11, 13, 15, 0.18);
  filter: blur(8px);
  animation: specimenShadow 4.8s ease-in-out infinite;
}

.specimen-glint {
  position: absolute;
  right: 28%;
  top: 24%;
  width: 34px;
  height: 34px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(242, 238, 230, 0.78) 48%, transparent 54%),
    linear-gradient(0deg, transparent 44%, rgba(242, 238, 230, 0.78) 48%, transparent 54%);
  filter: blur(0.2px);
  opacity: 0.68;
  animation: glintPulse 2.8s ease-in-out infinite;
}

.reserve-process-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.reserve-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(176, 141, 87, 0.26);
  background: rgba(176, 141, 87, 0.26);
}

.reserve-process-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 141, 87, 0.12), transparent 34%),
    var(--graphite);
  padding: 28px;
}

.reserve-process-card::before {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  content: "";
  filter: contrast(1.28) saturate(1.18) brightness(1.18);
  opacity: 0.52;
  transform: scale(1.04);
  transition: opacity 180ms ease, transform 260ms ease;
}

.reserve-process-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 15, 0.38), rgba(11, 13, 15, 0.78)),
    linear-gradient(90deg, rgba(11, 13, 15, 0.9), rgba(11, 13, 15, 0.32) 58%, rgba(11, 13, 15, 0.12));
  content: "";
}

.reserve-process-card:hover::before {
  opacity: 0.62;
  transform: scale(1.08);
}

.reserve-process-card:nth-child(1)::before {
  background-image: url("./assets/reserve-capital-visibility.svg");
}

.reserve-process-card:nth-child(2)::before {
  background-image: url("./assets/reserve-liquidity-discipline.svg");
}

.reserve-process-card:nth-child(3)::before {
  background-image: url("./assets/reserve-opportunity-readiness.svg");
}

.reserve-process-card > * {
  position: relative;
  z-index: 1;
}

.reserve-process-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.04;
}

.reserve-process-card p {
  margin: 0;
  color: rgba(242, 238, 230, 0.66);
  font-size: 16px;
}

.reserve-playbook-section {
  background: #101316;
  color: var(--ivory);
}

.reserve-playbook-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 1px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  background: rgba(176, 141, 87, 0.28);
}

.reserve-playbook-only {
  display: block;
}

.reserve-playbook-only .reserve-playbook-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reserve-playbook-cards {
  display: grid;
  gap: 1px;
  background: rgba(176, 141, 87, 0.24);
}

.reserve-playbook-card {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 90% 22%, rgba(176, 141, 87, 0.08), transparent 34%),
    var(--charcoal);
  color: var(--ivory);
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.reserve-playbook-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 190, 196, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 190, 196, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.reserve-playbook-card:hover,
.reserve-playbook-card.is-active {
  background:
    radial-gradient(circle at 84% 18%, rgba(176, 141, 87, 0.18), transparent 38%),
    var(--graphite);
}

.reserve-playbook-card:hover::before,
.reserve-playbook-card.is-active::before {
  opacity: 1;
}

.reserve-playbook-card span,
.reserve-playbook-card strong,
.reserve-playbook-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.reserve-playbook-card span {
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.reserve-playbook-card strong {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.02;
}

.reserve-playbook-card small {
  color: rgba(242, 238, 230, 0.58);
  font-size: 13px;
}

.reserve-playbook-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  overflow: hidden;
  align-items: end;
  background:
    radial-gradient(circle at 22% 26%, rgba(24, 53, 45, 0.62), transparent 34%),
    linear-gradient(140deg, #151a1d, #0b0d0f);
  padding: clamp(28px, 5vw, 54px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.reserve-playbook-panel.is-switching {
  opacity: 0.68;
  transform: scale(0.992);
}

.reserve-panel-visual {
  position: relative;
  min-height: 300px;
}

.reserve-panel-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(176, 141, 87, 0.42);
  border-radius: 50%;
  box-shadow: inset 0 0 62px rgba(176, 141, 87, 0.08), 0 0 80px rgba(24, 53, 45, 0.34);
  animation: corePulse 5.2s ease-in-out infinite;
}

.reserve-panel-ring::before {
  position: absolute;
  left: 50%;
  top: 10%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(176, 141, 87, 0.75);
  content: "";
  animation: orbitRotate 12s linear infinite;
  transform-origin: 0 120px;
}

.reserve-panel-bar {
  position: absolute;
  left: 18%;
  right: 12%;
  height: 42px;
  border: 1px solid rgba(185, 190, 196, 0.2);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(242, 238, 230, 0.08), rgba(24, 53, 45, 0.6));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

.reserve-panel-bar:nth-child(2) {
  bottom: 35%;
}

.reserve-panel-bar:nth-child(3) {
  bottom: 24%;
  left: 24%;
}

.reserve-panel-bar:nth-child(4) {
  bottom: 13%;
  left: 30%;
}

.reserve-panel-index {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.reserve-playbook-panel h3 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
}

.reserve-playbook-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(242, 238, 230, 0.68);
  font-size: clamp(17px, 2vw, 22px);
}

.metals-playbook-section {
  background: #100f0c;
  color: var(--ivory);
}

.metals-playbook-card:hover,
.metals-playbook-card.is-active {
  background:
    radial-gradient(circle at 84% 18%, rgba(176, 141, 87, 0.26), transparent 38%),
    #1b1a16;
}

.metals-playbook-panel {
  background:
    radial-gradient(circle at 22% 26%, rgba(176, 141, 87, 0.28), transparent 34%),
    linear-gradient(140deg, #1b1a16, #0b0d0f);
}

.metals-panel-visual {
  position: relative;
  min-height: 300px;
}

.metals-panel-ingot {
  position: absolute;
  width: 72%;
  height: 25%;
  border: 1px solid rgba(176, 141, 87, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(242, 238, 230, 0.28), rgba(176, 141, 87, 0.72) 46%, rgba(78, 58, 31, 0.9)),
    var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 14px 0 24px rgba(242, 238, 230, 0.12);
  transform: skewX(-14deg);
}

.metals-panel-ingot:nth-child(1) {
  right: 6%;
  top: 28%;
  animation: specimenFloat 5s ease-in-out infinite;
}

.metals-panel-ingot:nth-child(2) {
  right: 22%;
  top: 49%;
  opacity: 0.78;
  animation: specimenFloat 5.8s ease-in-out infinite reverse;
}

.metals-panel-stone {
  position: absolute;
  left: 10%;
  bottom: 15%;
  width: 34%;
  aspect-ratio: 1;
  clip-path: polygon(46% 0%, 82% 18%, 100% 58%, 72% 95%, 24% 88%, 0% 48%, 16% 14%);
  background:
    radial-gradient(circle at 32% 28%, rgba(242, 238, 230, 0.48), transparent 16%),
    linear-gradient(135deg, rgba(242, 238, 230, 0.22), rgba(176, 141, 87, 0.78) 44%, rgba(82, 62, 35, 0.96));
  box-shadow: inset -18px -22px 28px rgba(11, 13, 15, 0.28), 0 24px 60px rgba(0, 0, 0, 0.26);
  animation: specimenFloat 4.6s ease-in-out infinite;
}

.metals-panel-scan {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 238, 230, 0.72), transparent);
  box-shadow: 0 0 26px rgba(176, 141, 87, 0.56);
  animation: metalsScan 3.6s ease-in-out infinite;
}

.metals-playbook-panel[data-topic="custody"] .metals-panel-scan {
  top: 50%;
}

.metals-playbook-panel[data-topic="liquidity"] .metals-panel-scan {
  top: 72%;
}

.investor-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 94px);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(28px, 5vw, 54px);
}

.investor-profile::before {
  position: absolute;
  inset: 0;
  background: url("./assets/reserve-investor-profile.jpg") center center / cover;
  content: "";
  filter: contrast(1.08) saturate(0.72) brightness(0.92);
  opacity: 0.44;
}

.investor-profile.has-profile-video::before {
  display: none;
}

.investor-profile::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.72) 72%, rgba(11, 13, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(242, 238, 230, 0.32));
  content: "";
  z-index: 1;
}

.investor-profile > * {
  position: relative;
  z-index: 2;
}

.profile-video-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.profile-video-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: contrast(1.12) saturate(0.84) brightness(0.82);
  transform: scale(1.08);
  animation: profileVideoFade 14s ease-in-out infinite;
}

.profile-video-stage video:nth-child(2) {
  animation-delay: 7s;
}

.profile-video-reserve video {
  object-position: 58% center;
}

.profile-video-metals video {
  object-position: 54% center;
  filter: contrast(1.22) saturate(0.92) brightness(0.76);
}

.profile-video-digital video {
  object-position: 62% center;
  filter: contrast(1.1) saturate(0.9) brightness(0.78);
}

.investor-profile h2 {
  max-width: 560px;
}

.investor-profile-body p {
  color: #30363a;
  font-size: clamp(17px, 2vw, 21px);
}

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

.investor-tags span {
  border: 1px solid rgba(176, 141, 87, 0.38);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 850;
  animation: tagFloat 5s ease-in-out infinite;
  animation-delay: calc(var(--tag-order, 0) * 160ms);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.investor-tags span:nth-child(1) {
  --tag-order: 0;
}

.investor-tags span:nth-child(2) {
  --tag-order: 1;
}

.investor-tags span:nth-child(3) {
  --tag-order: 2;
}

.investor-tags span:nth-child(4) {
  --tag-order: 3;
}

.investor-tags span:hover {
  background: rgba(176, 141, 87, 0.12);
  transform: translateY(-2px);
}

.metals-client-section {
  background: var(--ivory);
}

.metals-investor-profile::before {
  background: url("./assets/metals-miner-profile.jpg") 54% center / cover;
  filter: contrast(1.22) saturate(0.92) brightness(0.78);
  opacity: 0.88;
}

.metals-investor-profile::after {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 46%, rgba(255, 255, 255, 0.5) 64%, rgba(11, 13, 15, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(176, 141, 87, 0.1));
}

.digital-detail-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(24, 53, 45, 0.72), transparent 28%),
    radial-gradient(circle at 62% 72%, rgba(176, 141, 87, 0.18), transparent 30%),
    linear-gradient(135deg, #090b0c 0%, #0f1514 54%, #11100d 100%);
}

.digital-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.digital-hero-visual {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  border: 1px solid rgba(185, 190, 196, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 238, 230, 0.08), transparent 28%),
    radial-gradient(circle at 46% 52%, rgba(24, 53, 45, 0.72), transparent 56%);
  box-shadow: inset 0 0 80px rgba(185, 190, 196, 0.08), 0 34px 90px rgba(0, 0, 0, 0.24);
}

.digital-orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(185, 190, 196, 0.26);
  border-radius: 50%;
  animation: digitalOrbit 24s linear infinite;
}

.digital-orbit-two {
  inset: 24%;
  border-color: rgba(176, 141, 87, 0.28);
  transform: rotate(24deg);
  animation-duration: 18s;
  animation-direction: reverse;
}

.digital-token {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(88px, 11vw, 128px);
  height: clamp(88px, 11vw, 128px);
  border-radius: 50%;
  color: var(--ivory);
  font-size: clamp(21px, 2.4vw, 34px);
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28), inset 0 0 28px rgba(255, 255, 255, 0.08);
}

.digital-token-btc {
  top: 14%;
  right: 12%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.34), transparent 16%),
    linear-gradient(135deg, #d7a44e, #725125 72%);
  animation: digitalTokenFloat 5200ms ease-in-out infinite;
}

.digital-token-eth {
  left: 12%;
  bottom: 18%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.42), transparent 16%),
    linear-gradient(135deg, #dfe5e7, #5a6268 76%);
  animation: digitalTokenFloat 5800ms ease-in-out infinite reverse;
}

.digital-signal {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--silver);
  box-shadow: 0 0 24px rgba(185, 190, 196, 0.8);
  animation: lineSoftPulse 2600ms ease-in-out infinite;
}

.digital-signal-one {
  left: 46%;
  top: 16%;
}

.digital-signal-two {
  right: 27%;
  bottom: 20%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(176, 141, 87, 0.74);
  animation-delay: 500ms;
}

.digital-focus-section {
  position: relative;
  overflow: hidden;
}

.digital-focus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 53, 45, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 53, 45, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.digital-focus-layout {
  position: relative;
  z-index: 1;
}

.digital-dynamic-line {
  width: fit-content;
  margin-top: 24px;
  border: 1px solid rgba(24, 53, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 9px 13px;
  color: #60676a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.digital-dynamic-line strong {
  color: var(--emerald);
  transition: opacity 180ms ease, transform 180ms ease;
}

.digital-dynamic-line strong.is-switching {
  opacity: 0;
  transform: translateY(5px);
}

.digital-playbook-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(176, 141, 87, 0.12), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(185, 190, 196, 0.1), transparent 24%),
    var(--charcoal);
  color: var(--ivory);
}

.digital-playbook-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(185, 190, 196, 0.08) 38.2% 38.6%, transparent 38.8%),
    linear-gradient(90deg, rgba(242, 238, 230, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 46px 46px;
}

.digital-playbook-layout {
  position: relative;
  z-index: 1;
}

.digital-playbook-card {
  background: rgba(242, 238, 230, 0.04);
}

.digital-playbook-card.is-active {
  border-color: rgba(185, 190, 196, 0.42);
  background: linear-gradient(135deg, rgba(24, 53, 45, 0.72), rgba(176, 141, 87, 0.12));
}

.digital-playbook-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(185, 190, 196, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(15, 21, 20, 0.94), rgba(11, 13, 15, 0.98));
}

.digital-ledger-visual {
  position: absolute;
  inset: auto 34px 32px auto;
  width: min(210px, 42%);
  height: 150px;
  opacity: 0.62;
}

.digital-ledger-visual span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 190, 196, 0.82), transparent);
  animation: digitalLedgerScan 2600ms ease-in-out infinite;
}

.digital-ledger-visual span:nth-child(1) {
  top: 18%;
}

.digital-ledger-visual span:nth-child(2) {
  top: 38%;
  animation-delay: 160ms;
}

.digital-ledger-visual span:nth-child(3) {
  top: 58%;
  animation-delay: 320ms;
}

.digital-ledger-visual span:nth-child(4) {
  top: 78%;
  animation-delay: 480ms;
}

.digital-reference-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(24, 53, 45, 0.26), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(176, 141, 87, 0.16), transparent 24%),
    linear-gradient(180deg, #f6f3eb 0%, var(--ivory) 64%, #e8e1d5 100%);
}

.digital-reference-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.digital-reference-panel p:not(.section-kicker) {
  max-width: 620px;
  color: #4c555a;
  font-size: clamp(16px, 1.8vw, 19px);
}

.digital-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.digital-reference-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(24, 53, 45, 0.16);
  border-radius: 6px;
  background:
    radial-gradient(circle at 80% 16%, rgba(24, 53, 45, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(11, 13, 15, 0.08);
  padding: 22px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.digital-reference-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 53, 45, 0.1), rgba(24, 53, 45, 0.66), rgba(176, 141, 87, 0.2));
  transform-origin: left;
  animation: metalPriceLine 3.6s ease-in-out infinite;
}

.digital-reference-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 53, 45, 0.28);
  box-shadow: 0 28px 56px rgba(11, 13, 15, 0.12);
}

.digital-reference-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.digital-reference-card-top span {
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.digital-reference-card-top i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.7), transparent 18%),
    linear-gradient(135deg, rgba(176, 141, 87, 0.98), rgba(82, 61, 31, 0.92));
  color: var(--ivory);
  font-size: 20px;
  font-style: normal;
  font-weight: 950;
  box-shadow: inset 0 -8px 16px rgba(11, 13, 15, 0.18), 0 10px 24px rgba(176, 141, 87, 0.2);
  animation: digitalIconPulse 4200ms ease-in-out infinite;
}

.digital-reference-eth .digital-reference-card-top i {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 18%),
    linear-gradient(135deg, #e6e9ec, #596269);
}

.digital-reference-sol .digital-reference-card-top i {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(135deg, var(--emerald), #0b0d0f);
}

.digital-reference-card strong {
  display: block;
  color: var(--charcoal);
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1;
}

.digital-reference-card small,
.digital-reference-card em {
  display: block;
  margin-top: 10px;
  color: #5c6468;
  font-size: 12px;
  font-style: normal;
}

.digital-reference-card em {
  width: fit-content;
  border: 1px solid rgba(24, 53, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 7px 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.digital-reference-card.is-positive em {
  border-color: rgba(24, 53, 45, 0.28);
  background: rgba(24, 53, 45, 0.08);
}

.digital-reference-card.is-negative em {
  border-color: rgba(176, 141, 87, 0.34);
  background: rgba(176, 141, 87, 0.12);
}

.digital-reference-note {
  grid-column: 2;
  width: fit-content;
  margin: -2px 0 0;
  border: 1px solid rgba(24, 53, 45, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 8px 12px;
  color: #5d6264;
  font-size: 12px;
}

.digital-investor-section {
  position: relative;
  overflow: hidden;
}

.digital-investor-profile {
  position: relative;
  overflow: hidden;
  border-color: rgba(24, 53, 45, 0.18);
  background: var(--ivory);
}

.digital-investor-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(242, 238, 230, 0.08) 46.2% 46.7%, transparent 46.9%),
    url("./assets/digital-crypto-profile.svg") 64% center / cover;
  filter: contrast(1.08) saturate(0.9) brightness(0.78);
  opacity: 0.74;
  transform: scale(1.02);
  animation: digitalProfileDrift 12s ease-in-out infinite;
}

.digital-investor-profile.has-profile-video::before {
  display: none;
}

.digital-investor-profile::after {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 44%, rgba(255, 255, 255, 0.7) 68%, rgba(11, 13, 15, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(24, 53, 45, 0.08));
}

.digital-investor-profile.has-profile-video::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.28) 62%, rgba(11, 13, 15, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(24, 53, 45, 0.02));
}

.digital-investor-profile > * {
  position: relative;
  z-index: 2;
}

.digital-investor-profile .profile-video-stage {
  position: absolute;
  z-index: 0;
}

.digital-investor-profile .profile-video-stage video {
  filter: contrast(1.22) saturate(1.02) brightness(0.9);
}

.digital-investor-tags span {
  border-color: rgba(24, 53, 45, 0.2);
}

.equities-detail-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(185, 190, 196, 0.2), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(24, 53, 45, 0.72), transparent 34%),
    linear-gradient(135deg, #090b0c 0%, #101618 56%, #11100d 100%);
}

.equities-hero-visual {
  position: relative;
  min-height: clamp(320px, 40vw, 500px);
  border: 1px solid rgba(185, 190, 196, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(rgba(185, 190, 196, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 190, 196, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 18%, rgba(176, 141, 87, 0.16), transparent 30%),
    rgba(11, 13, 15, 0.38);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: inset 0 0 70px rgba(24, 53, 45, 0.22), 0 30px 80px rgba(0, 0, 0, 0.24);
}

.equities-market-axis {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 190, 196, 0.58), transparent);
}

.equities-market-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 42%;
  height: 3px;
  clip-path: polygon(0 80%, 18% 46%, 34% 60%, 49% 20%, 66% 42%, 82% 10%, 100% 34%, 100% 100%, 0 100%);
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.22), rgba(176, 141, 87, 0.86), rgba(185, 190, 196, 0.4));
  box-shadow: 0 0 28px rgba(176, 141, 87, 0.36);
  animation: equitiesLineMove 5.8s ease-in-out infinite;
}

.equities-market-bar {
  position: absolute;
  bottom: 22%;
  width: 12%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.82), rgba(24, 53, 45, 0.72));
  animation: equitiesBarLift 4.2s ease-in-out infinite;
}

.equities-market-bar:nth-child(3) {
  left: 18%;
  height: 28%;
}

.equities-market-bar:nth-child(4) {
  left: 44%;
  height: 44%;
  animation-delay: 380ms;
}

.equities-market-bar:nth-child(5) {
  right: 18%;
  height: 36%;
  animation-delay: 760ms;
}

.equities-market-ticker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 50%;
  background: rgba(11, 13, 15, 0.64);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(10px);
  animation: tagFloat 5s ease-in-out infinite;
  transition: opacity 260ms ease, transform 260ms ease;
}

.equities-market-ticker.is-switching {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
}

.equities-market-ticker:nth-child(6) {
  left: 12%;
  top: 16%;
}

.equities-market-ticker:nth-child(7) {
  right: 18%;
  top: 24%;
  animation-delay: 300ms;
}

.equities-market-ticker:nth-child(8) {
  left: 44%;
  bottom: 10%;
  animation-delay: 600ms;
}

.equities-focus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 190, 196, 0.14), transparent 28%),
    linear-gradient(180deg, #f8f5ed 0%, var(--ivory) 64%, #ebe4d8 100%);
}

.equities-focus-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 53, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 53, 45, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.equities-focus-layout {
  position: relative;
  z-index: 1;
  align-items: center;
}

.equities-focus-visual {
  position: relative;
  float: right;
  width: clamp(140px, 18vw, 230px);
  aspect-ratio: 1.25;
  margin: 0 0 24px 34px;
  border: 1px solid rgba(24, 53, 45, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(rgba(24, 53, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 53, 45, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.54);
  background-size: 28px 28px;
  box-shadow: 0 22px 48px rgba(11, 13, 15, 0.08);
}

.equities-focus-visual span {
  position: absolute;
  left: 16%;
  right: 16%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 53, 45, 0.16), rgba(176, 141, 87, 0.78));
  animation: reserveLineFlow 3.8s ease-in-out infinite;
}

.equities-focus-visual span:nth-child(1) {
  top: 30%;
}

.equities-focus-visual span:nth-child(2) {
  top: 50%;
  left: 28%;
  animation-delay: 380ms;
}

.equities-focus-visual span:nth-child(3) {
  top: 70%;
  left: 20%;
  animation-delay: 760ms;
}

.equities-playbook-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(185, 190, 196, 0.11), transparent 28%),
    var(--charcoal);
}

.equities-playbook-card {
  cursor: default;
}

.equities-reference-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(24, 53, 45, 0.2), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(176, 141, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #f6f3eb 0%, var(--ivory) 64%, #e8e1d5 100%);
}

.equities-reference-card .digital-reference-card-top i {
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.68), transparent 18%),
    linear-gradient(135deg, var(--emerald), #0b0d0f);
  font-size: 14px;
}

.equities-investor-section {
  background: var(--ivory);
}

.profile-video-equities video {
  object-position: 58% center;
  filter: contrast(1.16) saturate(0.88) brightness(0.82);
}

.equities-investor-profile.has-profile-video::after {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.46) 66%, rgba(11, 13, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(185, 190, 196, 0.08));
}

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

@keyframes digitalTokenFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(3deg);
  }
}

@keyframes digitalLedgerScan {
  0%,
  100% {
    transform: translateX(-18px) scaleX(0.42);
    opacity: 0.34;
  }
  50% {
    transform: translateX(18px) scaleX(1);
    opacity: 0.92;
  }
}

@keyframes digitalIconPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.04);
  }
}

@keyframes digitalProfileDrift {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.06) translate3d(-18px, 0, 0);
  }
}

@keyframes equitiesLineMove {
  0%,
  100% {
    transform: translateY(0) scaleX(0.84);
    opacity: 0.72;
  }

  50% {
    transform: translateY(-10px) scaleX(1);
    opacity: 1;
  }
}

@keyframes equitiesBarLift {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.metals-reference-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(176, 141, 87, 0.18), transparent 28%),
    radial-gradient(circle at 86% 36%, rgba(185, 190, 196, 0.24), transparent 32%),
    linear-gradient(180deg, #f8f5ed 0%, var(--ivory) 58%, #ebe4d8 100%);
  padding-top: 0;
}

.metals-reference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 28%, rgba(176, 141, 87, 0.12) 28.2% 28.8%, transparent 29% 100%),
    linear-gradient(90deg, rgba(11, 13, 15, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px;
  opacity: 0.72;
}

.metals-reference-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.4);
  box-shadow: 0 28px 70px rgba(11, 13, 15, 0.08);
  padding: clamp(28px, 5vw, 54px);
}

.metals-reference-panel h2 {
  max-width: 560px;
}

.metals-reference-panel p:not(.section-kicker) {
  max-width: 620px;
  color: #4c555a;
  font-size: clamp(16px, 1.8vw, 19px);
}

.metals-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
  min-width: 0;
}

.metals-reference-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 238, 230, 0.72)),
    #ffffff;
  border: 1px solid rgba(176, 141, 87, 0.26);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(11, 13, 15, 0.08);
  padding: clamp(22px, 2.4vw, 30px);
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.metals-reference-card::before,
.metals-reference-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.metals-reference-card::before {
  inset: -40% -20% auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.22);
  filter: blur(4px);
  animation: metalPriceHalo 7s ease-in-out infinite;
}

.metals-reference-card::after {
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0.72), rgba(176, 141, 87, 0.1));
  transform-origin: left;
  animation: metalPriceLine 3.8s ease-in-out infinite;
}

.metals-reference-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 141, 87, 0.46);
  box-shadow: 0 26px 54px rgba(11, 13, 15, 0.12);
}

.metals-reference-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.metals-reference-card-top span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metals-reference-card-top i {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.88), transparent 18%),
    linear-gradient(135deg, rgba(176, 141, 87, 0.96), rgba(102, 78, 43, 0.88));
  box-shadow: inset 0 -8px 16px rgba(11, 13, 15, 0.18), 0 10px 24px rgba(176, 141, 87, 0.22);
}

.metals-reference-card-top i::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.metals-reference-card-silver .metals-reference-card-top i {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #e6e9ec, #8b9398);
  box-shadow: inset 0 -8px 16px rgba(11, 13, 15, 0.15), 0 10px 24px rgba(92, 100, 104, 0.2);
}

.metals-reference-card-silver::before {
  background: rgba(185, 190, 196, 0.3);
}

.metals-reference-card-silver::after {
  background: linear-gradient(90deg, rgba(185, 190, 196, 0.1), rgba(92, 100, 104, 0.54), rgba(185, 190, 196, 0.1));
}

.metals-reference-card strong {
  display: block;
  max-width: 100%;
  color: var(--charcoal);
  font-size: clamp(38px, 3.2vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
}

.metals-reference-card small,
.metals-reference-card em {
  display: block;
  margin-top: 10px;
  color: #5c6468;
  font-size: 12px;
  font-style: normal;
}

.metals-reference-card em {
  width: fit-content;
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  padding: 7px 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.metals-reference-card.is-positive em {
  border-color: rgba(24, 53, 45, 0.26);
  background: rgba(24, 53, 45, 0.08);
}

.metals-reference-card.is-negative em {
  border-color: rgba(176, 141, 87, 0.34);
  background: rgba(176, 141, 87, 0.12);
}

.metals-reference-note {
  grid-column: 2;
  margin: -8px 0 0;
  width: fit-content;
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 8px 12px;
  color: #5d6264;
  font-size: 12px;
}

@keyframes metalPriceHalo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(-16px, 14px, 0) scale(1.08);
    opacity: 0.95;
  }
}

@keyframes metalPriceLine {
  0%,
  100% {
    transform: scaleX(0.36);
    opacity: 0.42;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.9;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-inner {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(176, 141, 87, 0.28);
  padding-top: 28px;
}

.footer-inner img {
  width: 76px;
}

.footer-inner p {
  margin-bottom: 10px;
}

.disclaimer {
  max-width: 980px;
  color: rgba(242, 238, 230, 0.48);
  font-size: 12px;
}

@keyframes introSlide {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVideoDrift {
  0% {
    transform: scale(1.12) translateX(-1.5%);
  }

  50% {
    transform: scale(1.16) translateX(1.8%);
  }

  100% {
    transform: scale(1.13) translateX(-0.8%);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(-104px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  }

  50% {
    transform: translateY(-116px);
    box-shadow: 0 42px 96px rgba(0, 0, 0, 0.34);
  }
}

@keyframes editorialRailPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.5);
  }

  50% {
    opacity: 0.72;
    transform: scaleX(1);
  }
}

@keyframes spatialHaloDrift {
  from {
    opacity: 0.46;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0.78;
    transform: translate3d(-32px, 22px, 0) scale(1.08);
  }
}

@keyframes atmosphericSweep {
  from {
    opacity: 0.44;
    transform: translateX(-2%);
  }

  to {
    opacity: 0.78;
    transform: translateX(2%);
  }
}

@keyframes reserveCapitalFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }

  50% {
    transform: translate3d(-18px, 12px, 0) scale(1.05);
    opacity: 0.96;
  }
}

@keyframes reserveLiquidPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translateY(-8px) scale(1.035);
    opacity: 1;
  }
}

@keyframes reserveLineFlow {
  0%,
  100% {
    transform: scaleX(0.5);
    opacity: 0.48;
  }

  50% {
    transform: scaleX(1);
    opacity: 0.92;
  }
}

@keyframes profileVideoFade {
  0% {
    opacity: 0;
    transform: scale(1.08) translateX(-1.2%);
  }

  10%,
  46% {
    opacity: 0.86;
  }

  50% {
    opacity: 0;
    transform: scale(1.13) translateX(1.4%);
  }

  100% {
    opacity: 0;
    transform: scale(1.08) translateX(-1.2%);
  }
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metalSweep {
  from {
    filter: saturate(0.92) brightness(0.96);
    transform: scale(1);
  }

  to {
    filter: saturate(1.1) brightness(1.04);
    transform: scale(1.04);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 72px 72px;
  }
}

@keyframes orbitRotate {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

@keyframes orbitRotateReverse {
  from {
    rotate: 360deg;
  }

  to {
    rotate: 0deg;
  }
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), inset 0 0 32px rgba(176, 141, 87, 0.14);
  }

  50% {
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.4), inset 0 0 48px rgba(176, 141, 87, 0.24);
  }
}

@keyframes specimenFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-13px) rotate(4deg);
  }
}

@keyframes specimenShadow {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.1;
    transform: scale(1.08);
  }
}

@keyframes glintPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.84) rotate(0deg);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.08) rotate(18deg);
  }
}

@keyframes lineVisualIntro {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }

  to {
    opacity: 0.72;
    transform: translateY(0) scale(1);
  }
}

@keyframes lineVisualBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.015);
  }
}

@keyframes lineSoftPulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.22);
  }
}

@keyframes marketLinePulse {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@keyframes metalsScan {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(-18px);
  }

  50% {
    opacity: 0.9;
    transform: translateY(18px);
  }
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

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

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .reserve-hero-inner,
  .digital-hero-inner,
  .split,
  .contact-panel,
  .market-teaser-panel,
  .line-detail-inner,
  .detail-layout,
  .reserve-playbook-layout,
  .reserve-playbook-panel,
  .digital-reference-panel,
  .metals-reference-panel,
  .investor-profile {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 78px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 820px;
    font-size: clamp(42px, 7.6vw, 64px);
    line-height: 1;
  }

  .hero-text {
    max-width: 760px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 52px;
    padding: 10px 18px;
    text-align: center;
    white-space: normal;
  }

  .about-copy {
    border-left: 0;
    padding-left: 0;
  }

  .about-panel {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(242, 238, 230, 0.78)),
      rgba(255, 255, 255, 0.36);
  }

  .about-panel::before {
    display: none;
  }

  .about-heading-block {
    margin: calc(clamp(30px, 5vw, 64px) * -1) calc(clamp(30px, 5vw, 64px) * -1) 0;
    border-bottom: 1px solid rgba(176, 141, 87, 0.32);
    background:
      radial-gradient(circle at 82% 20%, rgba(176, 141, 87, 0.1), transparent 28%),
      linear-gradient(135deg, rgba(11, 13, 15, 0.98), rgba(18, 26, 24, 0.94));
    padding: clamp(30px, 6vw, 58px);
  }

  .about-copy {
    padding-top: 8px;
  }

  .hero-card {
    justify-self: center;
    width: min(100%, 560px);
    max-width: 560px;
    margin-top: 46px;
    transform: translateY(0);
  }

  .is-loaded .hero-card {
    transform: translateY(0);
  }

  .orbital-field {
    left: -180px;
    right: auto;
    top: 34%;
    width: 460px;
    opacity: 0.42;
  }

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

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

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

  .insight-grid,
  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .reserve-process-grid {
    grid-template-columns: 1fr;
  }

  .metals-reference-note {
    grid-column: auto;
  }

  .digital-reference-note {
    grid-column: auto;
  }

  .digital-hero-visual {
    min-height: 360px;
  }

  .digital-reference-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-link img {
    width: 180px;
  }

  h1 {
    font-size: clamp(34px, 10.2vw, 50px);
    line-height: 1.01;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero-inner {
    padding-top: 124px;
    padding-bottom: 64px;
  }

  .hero-date-line {
    top: 80px;
    max-width: calc(100vw - 120px);
    white-space: nowrap;
  }

  .orbital-field {
    left: -180px;
    right: auto;
    top: 28%;
    width: 360px;
  }

  .hero-card {
    margin-top: 42px;
  }

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

  .market-heading {
    display: block;
  }

  .refresh-button {
    margin-top: 18px;
    width: 100%;
  }

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

  .market-page-grid {
    grid-template-columns: 1fr;
  }

  .market-page-hero-inner {
    min-height: auto;
    padding: 128px 0 64px;
  }

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

  .metals-reference-grid {
    grid-template-columns: 1fr;
  }

  .metals-reference-card strong {
    font-size: clamp(36px, 11vw, 52px);
  }

  .digital-hero-visual {
    min-height: 300px;
  }

  .digital-token {
    width: 82px;
    height: 82px;
    font-size: 21px;
  }

  .digital-reference-card strong {
    font-size: 32px;
  }

  .line-card,
  .line-card-wide {
    grid-column: auto;
    min-height: 300px;
    padding-right: 28px;
  }

  .line-card-wide .line-visual,
  .line-visual {
    top: 42px;
    right: 20px;
    width: 138px;
    opacity: 0.62;
  }

  .line-index {
    margin-bottom: 118px;
  }

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

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

  body:not(.is-loaded) .site-header,
  body:not(.is-loaded) .hero-copy > *,
  body:not(.is-loaded) .hero-card,
  body:not(.is-loaded) .orbital-field {
    opacity: 1;
    transform: none;
  }
}
