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

.story-hero,
.story-band,
.story-grid,
.story-showcase,
.story-cta {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 3rem) clamp(1rem, 2.4vw, 2.4rem);
}

.story-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.54), rgba(5, 4, 3, 0.92)),
    var(--story-bg, url("../../assets/images/tb-hero-neverwake.png")) center / cover no-repeat;
  filter: saturate(0.84) contrast(1.08) brightness(0.58);
}

.story-hero {
  min-height: min(640px, calc(78vh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(1rem, 2.8vw, 2.8rem);
  align-items: center;
}

.story-copy h1 {
  max-width: 950px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1;
}

.story-copy p,
.story-band p,
.story-grid p,
.story-showcase p,
.story-cta p {
  color: #eadfc8;
  font-size: 0.96rem;
  line-height: 1.58;
}

.story-copy p {
  max-width: 720px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.story-panel,
.story-band,
.story-grid article,
.story-showcase,
.story-cta {
  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);
}

.story-panel {
  padding: clamp(0.85rem, 2vw, 1.25rem);
}

.story-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(201, 154, 73, 0.22);
}

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

.story-panel li {
  border-top: 1px solid rgba(201, 154, 73, 0.18);
  color: var(--muted);
  padding-top: 0.55rem;
}

.story-panel h2 {
  margin: 0.85rem 0 0.45rem;
  color: var(--gold-bright);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.story-panel p {
  color: #eadfc8;
  line-height: 1.7;
}

.story-band,
.story-showcase,
.story-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: center;
  margin-bottom: 0.65rem;
}

.story-band h2,
.story-showcase h2,
.story-cta h2 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.08;
}

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

.story-grid article {
  min-height: 155px;
  padding: 0.9rem;
}

.about-grid article {
  min-height: 165px;
}

.about-founder img {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.28);
  padding: 1rem;
}

.about-showcase .preview-rail img {
  filter: saturate(0.96) contrast(1.04);
}

.roadmap-grid article {
  min-height: 175px;
}

.roadmap-grid span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-family: "TBCinzel", Georgia, serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.story-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.preview-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.preview-rail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(201, 154, 73, 0.22);
}

.roadmap-image-frame img {
  width: min(100%, 430px);
  max-height: 620px;
  margin: 0 auto;
  object-fit: contain;
  border: 1px solid rgba(201, 154, 73, 0.28);
  background: rgba(0, 0, 0, 0.25);
}

.story-cta {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr) auto;
}

@media (max-width: 1180px) {
  .story-hero,
  .story-band,
  .story-showcase,
  .story-cta {
    grid-template-columns: 1fr;
  }

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

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

  .story-hero,
  .story-band,
  .story-grid,
  .story-showcase,
  .story-cta {
    padding: 1rem 0.85rem;
  }

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

  .story-hero > .story-panel {
    display: none;
  }

  .story-copy h1 {
    font-size: 2.15rem;
  }

  .story-copy p,
  .story-band p,
  .story-grid p,
  .story-showcase p,
  .story-cta p {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .story-grid article,
  .about-grid article,
  .roadmap-grid article {
    min-height: auto;
    padding: 0.85rem;
  }

  .story-band h2,
  .story-showcase h2,
  .story-cta h2 {
    font-size: 1.55rem;
  }

  .roadmap-image-frame img {
    max-height: 420px;
  }
}
