.human-upgrade-view { --upgrade-warm: #ff6c7e; }
.human-upgrade-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 225px;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 5vw, 62px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(63, 111, 211, .33), transparent 36%),
    linear-gradient(135deg, #202733 0%, #2b3342 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(25, 35, 55, .15);
}
.human-upgrade-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -95px;
  bottom: -135px;
  border: 28px solid rgba(255, 108, 126, .24);
  border-radius: 50%;
}
.human-upgrade-hero-copy { position: relative; z-index: 1; }
.human-upgrade-hero .eyebrow { color: #ff8a9a; }
.human-upgrade-hero h1 {
  max-width: 760px;
  margin: 8px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.04em;
}
.human-upgrade-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: #c5cdd9;
  font-size: 15px;
  line-height: 1.75;
}
.human-upgrade-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.human-upgrade-actions .button { text-decoration: none; }
.human-upgrade-source { color: #fff; font-size: 11px; font-weight: 800; }
.human-upgrade-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .065);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .025);
  text-align: center;
}
.human-upgrade-mark span { display: block; color: #fff; font-size: 26px; font-weight: 900; letter-spacing: -.04em; }
.human-upgrade-mark small { display: block; margin-top: 5px; color: #ff8a9a; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.human-upgrade-intro { max-width: 820px; margin: 42px 0 24px; }
.human-upgrade-intro h2 { margin: 5px 0 9px; font-size: clamp(25px, 3vw, 34px); }
.human-upgrade-intro > p:last-child { color: var(--muted); line-height: 1.7; }
.human-upgrade-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.human-upgrade-grid article {
  min-width: 0;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(20, 32, 58, .045);
}
.human-upgrade-grid article > span { color: var(--upgrade-warm); font-size: 10px; font-weight: 900; letter-spacing: .09em; }
.human-upgrade-grid h3 { margin: 20px 0 9px; font-size: 16px; line-height: 1.25; }
.human-upgrade-grid p { color: var(--muted); font-size: 11px; line-height: 1.65; }
.human-upgrade-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 18px;
  padding: 27px 30px;
  border-radius: 14px;
  background: #f0f3f8;
}
.human-upgrade-footer h2 { margin: 5px 0; font-size: 22px; }
.human-upgrade-footer p:last-child { max-width: 760px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.human-upgrade-footer .button { flex: 0 0 auto; text-decoration: none; }

@media (max-width: 1080px) {
  .human-upgrade-hero { grid-template-columns: minmax(0, 1fr) 170px; }
  .human-upgrade-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .human-upgrade-hero { grid-template-columns: 1fr; }
  .human-upgrade-mark { display: none; }
  .human-upgrade-grid { grid-template-columns: 1fr; }
  .human-upgrade-footer { align-items: flex-start; flex-direction: column; }
}
