.primary-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.investor-hero,
.investor-section,
.investor-grid,
.materials-section,
.investor-callout {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 3rem);
}

.investor-hero::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.5), rgba(5, 4, 3, 0.92)),
    url("../../assets/images/tb-hero-neverwake.png") center / cover no-repeat;
  filter: saturate(0.86) contrast(1.08) brightness(0.6);
}

.investor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 76px);
}

.investor-copy h1 {
  max-width: 950px;
  font-size: clamp(3rem, 6.6vw, 7rem);
  line-height: 0.96;
}

.investor-copy p,
.investor-section p,
.materials-section p,
.investor-callout p,
.investor-grid p,
.materials-card p {
  color: #eadfc8;
  font-size: 1rem;
  line-height: 1.7;
}

.investor-copy p {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.investor-panel,
.investor-grid article,
.materials-card,
.investor-callout,
.investor-section {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(22, 16, 11, 0.96), rgba(7, 5, 4, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(201, 154, 73, 0.12), transparent 18rem);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(240, 208, 138, 0.05);
}

.investor-panel {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.investor-panel h2,
.materials-card h3,
.investor-callout h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.investor-panel ul {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.investor-panel li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(201, 154, 73, 0.18);
}

.investor-panel span,
.materials-card span {
  color: var(--gold);
  font-family: "TBCinzel", Georgia, serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.investor-panel strong {
  color: var(--text);
  font-weight: 500;
}

.investor-section,
.materials-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 0.85rem;
}

.investor-section h2,
.materials-section h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.investor-section p,
.materials-section p {
  margin: 0;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding-top: 0;
}

.investor-grid article {
  min-height: 260px;
  padding: 1.2rem;
}

.investor-grid h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.materials-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.investor-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 0.85rem;
}

.investor-callout p {
  margin: 0;
}

@media (max-width: 1180px) {
  .investor-hero,
  .investor-section,
  .materials-section,
  .investor-callout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .investor-hero,
  .investor-grid {
    grid-template-columns: 1fr;
  }

  .investor-hero {
    min-height: auto;
  }

  .investor-copy h1 {
    font-size: 3rem;
  }
}
