.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-darker);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: -6px;
  background-image: url("/assets/images/bolt_chase_map_less_ui.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1.25px);
  transform: scale(1.02);
  z-index: 0;
}

.hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    var(--bg-speckle-pattern),
    linear-gradient(rgba(8, 8, 9, 0.5), rgba(8, 8, 9, 0.5));
  background-size:
    var(--bg-speckle-size),
    cover;
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.hero__copy,
.section-grid > div:first-child,
.note-panel {
  max-width: 680px;
}

.hero__copy {
  position: relative;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(16, 17, 17, 0.74);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

.lede {
  max-width: 58ch;
  margin-top: 1.25rem;
  color: var(--text-secondary);
  font-size: clamp(1.15rem, 2.4vw, 1.38rem);
}

.hero__copy h1,
.hero__copy .lede {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(45, 45, 45, 0.96), rgba(0, 0, 0, 0.72));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(254, 185, 0, 0.08) 49% 51%, transparent 52% 100%),
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(255, 255, 255, 0.045) 23px);
  pointer-events: none;
}

.hero__logo {
  position: relative;
  width: min(58%, 220px);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.hero__panel--image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(16, 17, 17, 0.64);
}

.hero__panel--image::before {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(254, 185, 0, 0.05) 49% 51%, transparent 52% 100%),
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(255, 255, 255, 0.03) 23px);
}

.hero__showcase {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.status-list {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.status-list div,
.feature-card,
.profile-card,
.note-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(16, 17, 17, 0.78);
}

.status-list div {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
}

.status-list dt {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-list dd {
  color: var(--text-primary);
  font-weight: 700;
}

.section-band {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(16, 17, 17, 0.72);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.section-grid p,
.profile-card p,
.note-panel p {
  margin-top: 1rem;
  color: var(--text-secondary);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 1.25rem;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(254, 185, 0, 0.45);
  background: rgba(45, 45, 45, 0.78);
  transform: translateY(-1px);
}

.visual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(254, 185, 0, 0.12), transparent 0 22%),
    linear-gradient(180deg, rgba(45, 45, 45, 0.92), rgba(16, 17, 17, 0.9));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.visual-card--media {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(0.75rem, 2vw, 1rem);
}

.visual-card:hover {
  border-color: rgba(254, 185, 0, 0.45);
  background:
    radial-gradient(circle at 18% 20%, rgba(254, 185, 0, 0.16), transparent 0 22%),
    linear-gradient(180deg, rgba(45, 45, 45, 0.96), rgba(16, 17, 17, 0.94));
  transform: translateY(-1px);
}

.visual-card--media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.visual-card--media figcaption {
  display: grid;
  gap: 0.55rem;
}

.visual-card--media figcaption p {
  margin-top: 0;
}

.visual-card--media figcaption h2,
.visual-card--media figcaption h3 {
  font-size: 1.1rem;
  line-height: 1.1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(1.25rem, 4vw, 2rem);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.profile-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.profile-card img {
  width: 164px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.note-panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

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

  .hero__copy {
    max-width: none;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero__panel--image {
    justify-self: stretch;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    width: min(100%, 220px);
  }
}
