body.pc-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.pc-page .about-hero.pc-hero {
  padding: clamp(48px, 7vw, 80px) 20px clamp(32px, 4vw, 44px);
  background:
    radial-gradient(ellipse 95% 75% at 12% 18%, rgba(152, 186, 227, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 65% 55% at 92% 35%, rgba(89, 129, 177, 0.35) 0%, transparent 52%),
    radial-gradient(900px 600px at 12% -10%, rgba(152, 186, 227, 0.22), transparent 70%),
    radial-gradient(900px 600px at 100% 0%, rgba(54, 84, 117, 0.22), transparent 70%),
    rgba(14, 22, 35, 0.95);
  border-bottom: 1px solid rgba(152, 186, 227, 0.12);
}

.pc-page .about-hero__inner.pc-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.pc-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
}

.pc-hero-split__text .about-hero__eyebrow {
  text-align: left;
}

.pc-hero-split__text .hero-page-title {
  margin: 0;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  text-shadow: 0 2px 28px rgba(2, 4, 8, 0.35);
}

.pc-hero-split__text .about-hero__lead {
  text-align: left;
}

.pc-hero-split__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(152, 186, 227, 0.22);
  box-shadow:
    0 0 0 1px rgba(2, 4, 8, 0.2) inset,
    0 12px 40px rgba(2, 4, 8, 0.4);
  aspect-ratio: 3 / 2;
  background: #0a0d12;
}

.pc-hero-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 10, 16, 0.15) 0%,
    transparent 45%,
    rgba(6, 8, 14, 0.25) 100%
  );
  pointer-events: none;
}

.pc-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .pc-hero-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pc-hero-split__text {
    order: 1;
    text-align: center;
  }

  .pc-hero-split__text .about-hero__eyebrow,
  .pc-hero-split__text .about-hero__lead {
    text-align: center;
  }

  .pc-hero-split__media {
    order: 2;
    max-width: min(100%, 520px);
    margin: 0 auto;
    width: 100%;
  }
}

body.pc-page main {
  flex: 1 1 auto;
}

body.pc-page .footer {
  margin-top: auto;
  flex-shrink: 0;
}

.pc-page .about-actions {
  margin-top: 24px;
}

.pc-page .about-panel p a {
  color: #98bae3;
  font-weight: 600;
}

.pc-page .about-panel p a:hover {
  color: #c8dcff;
}

.pc-specs-intro {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.pc-specs-options {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

.pc-specs-list {
  margin: 0;
}

.pc-specs-list__row {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) minmax(0, 1fr);
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(152, 186, 227, 0.12);
}

.pc-specs-list__row:last-child {
  padding-bottom: 0;
}

.pc-specs-list dt {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(152, 186, 227, 0.9);
}

.pc-specs-list dd {
  margin: 0;
  color: #e8eef9;
  line-height: 1.55;
}

.pc-specs-list dd a {
  color: #98bae3;
  font-weight: 600;
  text-decoration: none;
}

.pc-specs-list dd a:hover {
  color: #c8dcff;
  text-decoration: underline;
}

@media (max-width: 520px) {
  .pc-specs-list__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
