.side-brand-sub {
  color: #9fc0d2;
  font-size: 12px;
  letter-spacing: .12em;
}

.energy-hero {
  min-height: 520px;
  background-image:
    linear-gradient(90deg, rgba(0, 7, 15, .96) 0%, rgba(0, 10, 22, .82) 36%, rgba(0, 8, 18, .18) 76%),
    url("img/aurora-prime-power-core-hero-v2.webp");
  background-position: center;
  background-size: cover;
}

.energy-hero .hero-copy {
  align-self: end;
}

.energy-hero .stats {
  background: rgba(2, 14, 27, .9);
}

.power-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr) 32px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.power-flow article {
  border: 1px solid rgba(35, 216, 255, .3);
  border-radius: 16px;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(5, 22, 40, .92), rgba(1, 9, 19, .98));
  box-shadow: 0 0 24px rgba(0, 220, 255, .07);
}

.power-flow article span {
  display: block;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  margin-bottom: 10px;
}

.power-flow article strong {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.08;
}

.power-flow article p {
  color: #cbe4f3;
  font-size: .9rem;
  line-height: 1.45;
  margin: 10px 0 0;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.35rem;
}

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

.energy-card {
  display: grid;
  grid-template-columns: minmax(210px, .9fr) 1.1fr;
  overflow: hidden;
  border: 1px solid rgba(35, 216, 255, .3);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5, 20, 38, .92), rgba(1, 8, 18, .98));
  box-shadow: 0 0 24px rgba(0, 220, 255, .08);
}

.energy-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-right: 1px solid rgba(35, 216, 255, .2);
}

.energy-card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px;
}

.energy-card h3 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
  margin: 0;
}

.energy-card p {
  color: #d3e9f7;
  line-height: 1.5;
  margin: 0;
}

.figure-type {
  align-self: flex-start;
  margin-top: auto;
  color: #9fc6d9;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.priority-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(35, 216, 255, .34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(22, 232, 255, .1), transparent 34%),
    linear-gradient(180deg, rgba(5, 20, 38, .9), rgba(1, 8, 18, .98));
}

.priority-panel h2 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  margin: 10px 0 0;
}

.priority-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #d7ebf7;
  line-height: 1.5;
}

.priority-panel strong {
  color: var(--cyan);
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.evidence-strip span {
  border: 1px solid rgba(112, 203, 255, .24);
  border-radius: 14px;
  padding: 16px;
  color: #cae3f2;
  line-height: 1.45;
  background: rgba(2, 14, 27, .72);
}

.evidence-strip b {
  color: var(--cyan);
}

@media (max-width: 1180px) {
  .power-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .energy-grid,
  .priority-panel,
  .evidence-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .energy-hero {
    min-height: 650px;
    background-position: 62% center;
  }

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

  .energy-card img {
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(35, 216, 255, .2);
  }

  .priority-panel {
    padding: 22px 18px;
  }
}
