/*
 * Respawn PCs homepage styles.
 * Loaded only on the front page by functions.php.
 */

/* PERFORMANCE TILES */
.performance-section {
  padding: 86px 0 110px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}

.performance-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 310px 160px;
  gap: 14px;
}

.performance-tile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #15151b;
  border: 1px solid rgba(255,255,255,.09);
  transition: transform .22s ease, border-color .22s ease;
}

.performance-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(139,92,246,.42);
}

.performance-tile-large {
  grid-column: span 1;
  grid-row: span 1;
}

.performance-tile-wide {
  grid-column: span 3;
}

.performance-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.64) saturate(.82) contrast(1.02);
  transform: scale(1.01);
  transition: transform .42s ease, filter .42s ease;
}

.performance-tile:hover img {
  transform: scale(1.055);
  filter: brightness(.74) saturate(.9) contrast(1.04);
}

.performance-tile-small img {
  object-position: center 38%;
}

.performance-tile-large img {
  object-position: center center;
}

.performance-tile .tile-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.18) 42%, rgba(0,0,0,.78)),
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.08) 58%);
}

.performance-tile-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: clamp(26px, 2.2vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.performance-tile-content span {
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 14px;
}

.performance-tile-content h2 {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: clamp(34px, 3.35vw, 58px);
  line-height: .9;
  letter-spacing: -.075em;
}

.performance-tile-small .performance-tile-content h2 {
  font-size: clamp(27px, 2.1vw, 38px);
}

.performance-tile-content p {
  margin: 0 auto;
  max-width: 370px;
  color: rgba(247,247,248,.74);
  font-size: 15px;
  line-height: 1.55;
}

.performance-tile-featured {
  border-color: rgba(139,92,246,.32);
}

.performance-tile-custom {
  background: #8b5cf6;
  border-color: rgba(183,156,255,.46);
}

.performance-tile-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #8b5cf6, #6d28d9 68%, #4c1d95);
}

.performance-tile-custom .performance-tile-content {
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.performance-tile-custom .performance-tile-content span,
.performance-tile-custom .performance-tile-content p {
  color: rgba(255,255,255,.78);
}

.performance-tile-custom .performance-tile-content h2 {
  font-size: clamp(28px, 3vw, 46px);
  white-space: nowrap;
}

.performance-tile-custom .performance-tile-content p {
  margin-top: 0;
  max-width: 380px;
}

.respawn-team-section {
  padding: clamp(56px, 6vw, 94px) 0 clamp(54px, 5vw, 78px);
  background: #080c14 !important;
  scroll-margin-top: 130px;
}

body.home .respawn-team-section {
  background: #080c14 !important;
}

.respawn-team-section > .shell {
  width: min(1640px, calc(100% - 64px));
  max-width: 1640px;
}

.respawn-team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2.55fr) minmax(440px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.respawn-team-panel,
.respawn-team-follow,
.respawn-team-trust-strip {
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 10px;
  background: #111522;
}

.respawn-team-panel {
  min-width: 0;
  padding: 26px;
}

.respawn-team-section .eyebrow {
  margin: 0 0 18px;
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.respawn-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.respawn-team-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 8px;
  background: #0d111b;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.respawn-team-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, .42);
  background: #101624;
}

.respawn-team-photo {
  height: clamp(210px, 16vw, 280px);
  background: #0a0d14;
}

.respawn-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.92) saturate(.98);
}

.respawn-team-info {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.respawn-team-info span {
  display: block;
  color: var(--purple-light);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2px;
}

.respawn-team-info h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 850;
}

.respawn-team-info p {
  margin: 14px 0 0;
  color: rgba(245, 247, 251, .70);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.55;
}

.respawn-team-socials {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.respawn-social-icon,
.respawn-follow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.respawn-social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: #070b12;
}

.respawn-social-icon img,
.respawn-follow-icon img {
  display: block;
  object-fit: contain;
}

.respawn-social-icon img {
  width: 20px;
  height: 20px;
}

.respawn-social-icon:hover,
.respawn-social-icon:focus-visible,
.respawn-follow-icon:hover,
.respawn-follow-icon:focus-visible {
  color: var(--purple-light);
  border-color: rgba(139, 92, 246, .55);
}

.respawn-team-follow {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 3.2vw, 58px);
  background: #111522;
}

.respawn-team-follow h2 {
  max-width: 490px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 2.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 850;
}

.respawn-team-follow p:not(.eyebrow) {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(245, 247, 251, .68);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 560;
}

.respawn-team-follow-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.respawn-follow-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 9px;
  background: #070b12;
}

.respawn-follow-icon img {
  width: 30px;
  height: 30px;
}

.respawn-follow-icon--youtube {
  color: #ff4b4b;
}

.respawn-follow-icon--instagram {
  color: #f472b6;
}

.respawn-follow-icon--tiktok {
  color: #f8fafc;
}

.respawn-team-follow-button {
  width: fit-content;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 30px;
  border: 1px solid rgba(166, 122, 255, .56);
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.respawn-team-follow-button:hover,
.respawn-team-follow-button:focus-visible {
  transform: translateY(-1px);
  background: #9b6cff;
  border-color: rgba(255, 255, 255, .28);
}

.respawn-team-video-wheel {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 10px;
  background: #111522;
}

.respawn-team-video-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, .11);
}

.respawn-team-video-head h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 850;
}

.respawn-team-video-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 0 20px;
  border: 1px solid rgba(166, 122, 255, .56);
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.respawn-team-video-button img {
  width: 24px;
  height: 18px;
  object-fit: contain;
}

.respawn-team-video-button:hover,
.respawn-team-video-button:focus-visible {
  transform: translateY(-1px);
  background: #9b6cff;
  border-color: rgba(255, 255, 255, .28);
}

.respawn-team-video-marquee {
  max-width: 100%;
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: 18px 0;
}

.respawn-team-video-marquee::before,
.respawn-team-video-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 86px;
  z-index: 3;
  pointer-events: none;
}

.respawn-team-video-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #111522, rgba(17, 21, 34, 0));
}

.respawn-team-video-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #111522, rgba(17, 21, 34, 0));
}

.respawn-team-video-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  padding-inline: 18px;
  animation: respawnTeamVideoWheel 34s linear infinite;
  will-change: transform;
}

.respawn-team-video-marquee:hover .respawn-team-video-track {
  animation-play-state: paused;
}

.respawn-team-video-track .social-video-card {
  width: 330px !important;
  flex: 0 0 330px !important;
}

.respawn-team-video-track .social-video-meta {
  min-height: 124px;
}

@keyframes respawnTeamVideoWheel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.respawn-team-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
}

.respawn-team-trust-strip div {
  min-height: 94px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 16px;
  padding: 20px 28px;
}

.respawn-team-trust-strip div + div {
  border-left: 1px solid rgba(148, 163, 184, .11);
}

.respawn-team-trust-strip span {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 1px solid rgba(139, 92, 246, .48);
  border-radius: 9px;
  background: rgba(139, 92, 246, .10);
}

.respawn-team-trust-strip span img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.respawn-team-trust-strip strong {
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
}

.respawn-team-trust-strip small {
  margin-top: 4px;
  color: rgba(245, 247, 251, .62);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .respawn-team-section > .shell {
    width: min(100% - 40px, 1640px);
  }

  .respawn-team-showcase {
    grid-template-columns: 1fr;
  }

  .respawn-team-follow {
    padding: 34px;
  }

  .respawn-team-follow h2 {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .respawn-team-grid,
  .respawn-team-trust-strip {
    grid-template-columns: 1fr;
  }

  .respawn-team-card {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  }

  .respawn-team-photo {
    height: 100%;
    min-height: 260px;
  }

  .respawn-team-trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, .11);
  }

  .respawn-team-video-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .respawn-team-section {
    padding: 44px 0 60px;
  }

  .respawn-team-section > .shell {
    width: min(100% - 28px, 1640px);
  }

  .respawn-team-panel,
  .respawn-team-follow {
    padding: 18px;
  }

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

  .respawn-team-photo {
    height: 240px;
    min-height: 0;
  }

  .respawn-team-info {
    min-height: 0;
    padding: 18px;
  }

  .respawn-team-follow h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .respawn-team-follow p:not(.eyebrow) {
    font-size: 16px;
  }

  .respawn-team-follow-icons {
    gap: 10px;
  }

  .respawn-follow-icon {
    width: 64px;
    height: 64px;
  }

  .respawn-team-follow-button {
    width: 100%;
  }

  .respawn-team-video-head {
    padding: 18px;
  }

  .respawn-team-video-button {
    width: 100%;
  }

  .respawn-team-video-marquee::before,
  .respawn-team-video-marquee::after {
    width: 34px;
  }

  .respawn-team-video-track {
    gap: 12px;
    padding-inline: 14px;
    animation-duration: 28s;
  }

  .respawn-team-video-track .social-video-card {
    width: 278px !important;
    flex-basis: 278px !important;
  }

  .respawn-team-trust-strip div {
    min-height: 82px;
    padding: 18px;
  }
}


/* =========================================================

/* =========================================================
   Respawn PCs About page
========================================================= */

body:has(.respawn-about-page) {
  background: #171922;
}

.respawn-about-page {
  --rp-about-bg: #171922;
  --rp-about-panel: #1f222c;
  --rp-about-panel-deep: #121620;
  --rp-about-text: #f5f7fb;
  --rp-about-muted: rgba(245,247,251,.72);
  --rp-about-soft: rgba(245,247,251,.54);
  --rp-about-line: rgba(255,255,255,.12);
  --rp-about-line-strong: rgba(255,255,255,.18);
  --rp-about-purple: #8b5cf6;
  --rp-about-purple-soft: rgba(139,92,246,.16);
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: clamp(58px, 6vw, 96px) 0 clamp(72px, 7vw, 112px);
  color: var(--rp-about-text);
}

.respawn-about-page *,
.respawn-about-page *::before,
.respawn-about-page *::after {
  box-sizing: border-box;
}

.respawn-about-page img {
  display: block;
  max-width: 100%;
}

.respawn-about-page svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rp-about-eyebrow {
  margin: 0 0 14px;
  color: #a78bfa;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .26em;
  line-height: 1;
  text-transform: uppercase;
}

.rp-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: clamp(34px, 4.5vw, 62px);
  border: 1px solid var(--rp-about-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 28%, rgba(139,92,246,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--rp-about-panel);
  box-shadow: 0 28px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
}

.rp-about-hero__copy {
  max-width: 670px;
}

.rp-about-hero h1,
.rp-about-story h2,
.rp-about-section-heading h2,
.rp-about-closing h2 {
  margin: 0;
  color: var(--rp-about-text);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.055em;
}

.rp-about-hero h1 {
  font-size: clamp(46px, 5.1vw, 76px);
}

.rp-about-lead {
  margin: 24px 0 0;
  color: rgba(245,247,251,.84);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 650;
  line-height: 1.55;
}

.rp-about-text,
.rp-about-story__copy p,
.rp-about-section-heading p,
.rp-about-principle p,
.rp-about-member-card__copy > p,
.rp-about-member-detail p,
.rp-about-process-step p,
.rp-about-closing p {
  color: var(--rp-about-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.rp-about-text {
  margin: 16px 0 0;
}

.rp-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.rp-about-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.rp-about-btn:hover {
  transform: translateY(-1px);
}

.rp-about-btn--primary {
  border: 1px solid rgba(139,92,246,.76);
  background: linear-gradient(135deg, #9b6cff, #7c3aed);
  color: #fff;
  box-shadow: 0 18px 36px rgba(139,92,246,.24);
}

.rp-about-btn--ghost {
  border: 1px solid var(--rp-about-line-strong);
  background: rgba(255,255,255,.035);
  color: var(--rp-about-text);
}

.rp-about-hero__media {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.rp-about-hero__media::before {
  content: "";
  position: absolute;
  inset: auto 8% 6%;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139,92,246,.34), transparent 68%);
  filter: blur(18px);
}

.rp-about-hero__media img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 34px 52px rgba(0,0,0,.38));
}

.rp-about-hero__media--fallback::after {
  content: "";
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(139,92,246,.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 62% 30%, rgba(139,92,246,.42), transparent 12%),
    radial-gradient(circle at 70% 54%, rgba(139,92,246,.28), transparent 16%),
    linear-gradient(145deg, #11141d, #05070b);
}

.rp-about-story,
.rp-about-principles,
.rp-about-team,
.rp-about-process,
.rp-about-closing {
  margin-top: 22px;
}

.rp-about-story {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--rp-about-line);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
}

.rp-about-story h2,
.rp-about-section-heading h2,
.rp-about-closing h2 {
  font-size: clamp(32px, 3vw, 48px);
}

.rp-about-story__copy {
  display: grid;
  gap: 14px;
}

.rp-about-story__copy p {
  margin: 0;
}

.rp-about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--rp-about-line);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
}

.rp-about-principle {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--rp-about-line);
}

.rp-about-principle:last-child {
  border-right: 0;
}

.rp-about-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(183,156,255,.28);
  border-radius: 10px;
  background: var(--rp-about-purple-soft);
  color: #b79cff;
  font-size: 24px;
}

.rp-about-icon--large {
  width: 58px;
  height: 58px;
  font-size: 30px;
}

.rp-about-principle strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.rp-about-principle p {
  margin: 9px 0 0;
  font-size: 14px;
}

.rp-about-team,
.rp-about-process,
.rp-about-closing {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--rp-about-line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.01)),
    rgba(31,34,44,.76);
}

.rp-about-section-heading {
  max-width: 780px;
}

.rp-about-section-heading p {
  max-width: 680px;
  margin: 14px 0 0;
}

.rp-about-section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
  gap: 32px;
  align-items: end;
}

.rp-about-team-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.rp-about-member-card {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  border: 1px solid var(--rp-about-line);
  border-radius: 12px;
  background: var(--rp-about-panel-deep);
  overflow: hidden;
}

.rp-about-member-card__image {
  position: relative;
  min-height: 340px;
  background:
    radial-gradient(circle at 54% 24%, rgba(139,92,246,.24), transparent 36%),
    #11141d;
}

.rp-about-member-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, rgba(18,22,32,.92));
  pointer-events: none;
}

.rp-about-member-card__image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
}

.rp-about-member-card__image--fallback::before {
  content: "";
  position: absolute;
  inset: 64px 34px 0;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 50% 26%, rgba(245,247,251,.25), transparent 13%),
    radial-gradient(circle at 50% 50%, rgba(139,92,246,.30), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
}

.rp-about-member-card__copy {
  padding: clamp(24px, 3vw, 38px);
  align-self: center;
}

.rp-about-member-label {
  margin: 0 0 12px;
  color: #a78bfa;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.rp-about-member-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.045em;
}

.rp-about-member-role {
  margin: 10px 0 18px;
  color: #b79cff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.3;
}

.rp-about-member-card__copy > p {
  max-width: 760px;
  margin: 0;
}

.rp-about-member-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rp-about-line);
}

.rp-about-member-detail strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.rp-about-member-detail p {
  margin: 7px 0 0;
  font-size: 14px;
}

.rp-about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.rp-about-process-step {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--rp-about-line);
  border-radius: 10px;
  background: rgba(18,22,32,.70);
}

.rp-about-process-step span {
  color: #a78bfa;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
}

.rp-about-process-step h3 {
  margin: 40px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.rp-about-process-step p {
  margin: 12px 0 0;
  font-size: 14px;
}

.rp-about-closing {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.rp-about-closing p {
  max-width: 720px;
  margin: 12px 0 0;
}

@media (max-width: 1100px) {
  .respawn-about-page {
    width: min(100% - 32px, 920px);
  }

  .rp-about-hero,
  .rp-about-story,
  .rp-about-section-heading--split,
  .rp-about-closing {
    grid-template-columns: 1fr;
  }

  .rp-about-hero__media {
    min-height: 320px;
  }

  .rp-about-principles,
  .rp-about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rp-about-principle:nth-child(2) {
    border-right: 0;
  }

  .rp-about-principle:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rp-about-line);
  }
}

@media (max-width: 760px) {
  .respawn-about-page {
    width: min(100% - 24px, 560px);
    padding-top: 44px;
  }

  .rp-about-hero,
  .rp-about-story,
  .rp-about-team,
  .rp-about-process,
  .rp-about-closing {
    padding: 24px;
    border-radius: 10px;
  }

  .rp-about-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .rp-about-actions,
  .rp-about-btn {
    width: 100%;
  }

  .rp-about-principles,
  .rp-about-process-grid {
    grid-template-columns: 1fr;
  }

  .rp-about-principle,
  .rp-about-principle:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--rp-about-line);
  }

  .rp-about-principle:last-child {
    border-bottom: 0;
  }

  .rp-about-member-card {
    grid-template-columns: 1fr;
  }

  .rp-about-member-card__image,
  .rp-about-member-card__image img {
    min-height: 320px;
  }

  .rp-about-member-card__image::after {
    background: linear-gradient(180deg, transparent 62%, rgba(18,22,32,.92));
  }

  .rp-about-closing {
    align-items: start;
  }
}

/* About page premium editorial pass */
.respawn-about-page {
  --rp-about-bg: #171922;
  --rp-about-panel: #1c1f28;
  --rp-about-panel-deep: #10141d;
  --rp-about-line: rgba(255,255,255,.105);
  --rp-about-line-strong: rgba(255,255,255,.18);
  width: min(100% - 72px, 1480px);
  padding-top: clamp(72px, 7vw, 124px);
  background:
    radial-gradient(circle at 72% 2%, rgba(139,92,246,.13), transparent 32%),
    radial-gradient(circle at 12% 24%, rgba(139,92,246,.07), transparent 30%);
}

.rp-about-hero {
  min-height: clamp(620px, 68vh, 820px);
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(54px, 7vw, 128px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rp-about-hero__copy {
  max-width: 720px;
}

.rp-about-hero h1 {
  max-width: 760px;
  font-size: clamp(62px, 6.8vw, 118px);
  line-height: .86;
  letter-spacing: -.075em;
}

.rp-about-lead {
  max-width: 660px;
  margin-top: 34px;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.48;
}

.rp-about-text {
  max-width: 620px;
  color: rgba(245,247,251,.64);
}

.rp-about-hero__media {
  min-height: clamp(520px, 58vw, 760px);
}

.rp-about-hero__media::before {
  inset: auto 4% 8%;
  height: 42%;
  background: radial-gradient(circle, rgba(139,92,246,.30), transparent 68%);
  filter: blur(26px);
}

.rp-about-hero__media img {
  width: min(100%, 720px);
  max-height: 720px;
}

.rp-about-actions {
  gap: 14px;
  margin-top: 38px;
}

.rp-about-btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
}

.rp-about-story {
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 120px);
  padding: clamp(56px, 6vw, 92px) 0;
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
}

.rp-about-story h2,
.rp-about-section-heading h2,
.rp-about-closing h2 {
  font-size: clamp(46px, 4.4vw, 78px);
  line-height: .92;
  letter-spacing: -.065em;
}

.rp-about-story__copy {
  gap: 20px;
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 1px solid var(--rp-about-line);
}

.rp-about-story__copy p {
  max-width: 760px;
  font-size: clamp(16px, 1vw, 18px);
}

.rp-about-principles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 0;
  border-width: 0 0 1px;
  background: transparent;
}

.rp-about-principle {
  min-height: 210px;
  padding: clamp(26px, 3vw, 40px);
  background: transparent;
}

.rp-about-principle:hover {
  background: rgba(255,255,255,.018);
}

.rp-about-team,
.rp-about-process,
.rp-about-closing {
  padding: clamp(68px, 7vw, 108px) 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rp-about-section-heading {
  max-width: 940px;
}

.rp-about-section-heading p {
  max-width: 760px;
  font-size: 17px;
}

.rp-about-team-grid {
  gap: clamp(34px, 5vw, 72px);
  margin-top: clamp(44px, 5vw, 72px);
}

.rp-about-member-card {
  grid-template-columns: minmax(360px, .58fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.rp-about-member-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .58fr);
}

.rp-about-member-card:nth-child(even) .rp-about-member-card__image {
  order: 2;
}

.rp-about-member-card:nth-child(even) .rp-about-member-card__copy {
  order: 1;
}

.rp-about-member-card__image {
  min-height: clamp(430px, 34vw, 560px);
  border: 1px solid var(--rp-about-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 54% 24%, rgba(139,92,246,.24), transparent 36%),
    #11141d;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.26);
}

.rp-about-member-card__image::after {
  background:
    linear-gradient(180deg, transparent 58%, rgba(16,20,29,.62)),
    linear-gradient(90deg, rgba(139,92,246,.12), transparent 34%);
}

.rp-about-member-card__image img {
  min-height: clamp(430px, 34vw, 560px);
}

.rp-about-member-card__copy {
  align-self: center;
  padding: 0;
}

.rp-about-member-card h3 {
  font-size: clamp(52px, 5.6vw, 92px);
  line-height: .84;
}

.rp-about-member-role {
  margin-top: 14px;
  margin-bottom: 26px;
  font-size: 15px;
}

.rp-about-member-card__copy > p {
  max-width: 760px;
  font-size: clamp(16px, 1vw, 18px);
}

.rp-about-member-detail {
  max-width: 760px;
  margin-top: 22px;
  padding-top: 22px;
}

.rp-about-member-detail p {
  font-size: 15px;
}

.rp-about-section-heading--split {
  gap: clamp(42px, 7vw, 110px);
}

.rp-about-process-grid {
  gap: 0;
  margin-top: clamp(44px, 5vw, 72px);
  border-top: 1px solid var(--rp-about-line);
  border-bottom: 1px solid var(--rp-about-line);
}

.rp-about-process-step {
  min-height: 260px;
  padding: clamp(28px, 3vw, 42px);
  border: 0;
  border-right: 1px solid var(--rp-about-line);
  border-radius: 0;
  background: transparent;
}

.rp-about-process-step:last-child {
  border-right: 0;
}

.rp-about-process-step h3 {
  margin-top: 54px;
  font-size: clamp(24px, 2vw, 34px);
}

.rp-about-closing {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  border-bottom: 0;
}

.rp-about-closing p {
  font-size: 17px;
}

@media (max-width: 1100px) {
  .respawn-about-page {
    width: min(100% - 36px, 920px);
  }

  .rp-about-hero,
  .rp-about-story,
  .rp-about-section-heading--split,
  .rp-about-closing,
  .rp-about-member-card,
  .rp-about-member-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .rp-about-member-card:nth-child(even) .rp-about-member-card__image,
  .rp-about-member-card:nth-child(even) .rp-about-member-card__copy {
    order: initial;
  }

  .rp-about-story__copy {
    padding-left: 0;
    border-left: 0;
  }

  .rp-about-principles,
  .rp-about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rp-about-process-step:nth-child(2) {
    border-right: 0;
  }

  .rp-about-process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rp-about-line);
  }
}

@media (max-width: 760px) {
  .respawn-about-page {
    width: min(100% - 24px, 560px);
    padding-top: 44px;
  }

  .rp-about-hero,
  .rp-about-story,
  .rp-about-team,
  .rp-about-process,
  .rp-about-closing {
    padding-block: 42px;
  }

  .rp-about-hero h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .rp-about-hero__media,
  .rp-about-member-card__image,
  .rp-about-member-card__image img {
    min-height: 340px;
  }

  .rp-about-principles,
  .rp-about-process-grid {
    grid-template-columns: 1fr;
  }

  .rp-about-principle,
  .rp-about-principle:nth-child(2),
  .rp-about-process-step,
  .rp-about-process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--rp-about-line);
  }

  .rp-about-principle:last-child,
  .rp-about-process-step:last-child {
    border-bottom: 0;
  }

  .rp-about-member-card h3 {
    font-size: clamp(44px, 15vw, 66px);
  }
}

/* About hero calm pass */
.respawn-about-page {
  background: #171922;
}

.rp-about-hero {
  min-height: clamp(520px, 58vh, 680px);
  grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
  gap: clamp(42px, 6vw, 96px);
  padding-block: clamp(58px, 7vw, 96px);
  background: #171922;
}

.rp-about-hero h1 {
  max-width: 620px;
  font-size: clamp(48px, 5vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
}

.rp-about-lead {
  max-width: 610px;
  margin-top: 28px;
  color: rgba(245,247,251,.78);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.55;
  font-weight: 650;
}

.rp-about-text {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(245,247,251,.58);
  font-size: 15px;
  line-height: 1.65;
}

.rp-about-hero__media {
  min-height: clamp(420px, 42vw, 560px);
}

.rp-about-hero__media::before {
  display: none;
}

.rp-about-hero__media img {
  width: min(100%, 560px);
  max-height: 560px;
  filter: drop-shadow(0 28px 44px rgba(0,0,0,.34));
}

.rp-about-eyebrow {
  color: rgba(245,247,251,.58);
}

@media (max-width: 1100px) {
  .rp-about-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .rp-about-hero {
    min-height: 0;
    padding-block: 38px;
  }

  .rp-about-hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .rp-about-hero__media {
    min-height: 300px;
  }
}

/* About hero spacing and team-photo pass */
.respawn-about-page {
  width: min(100% - 72px, 1320px);
  padding-top: clamp(28px, 4vw, 56px);
}

.rp-about-hero {
  min-height: auto;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .82fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  padding-block: clamp(34px, 5vw, 66px);
}

.rp-about-hero h1 {
  max-width: 660px;
  font-size: clamp(48px, 4.9vw, 76px);
  line-height: .94;
}

.rp-about-lead {
  max-width: 660px;
  margin-top: 24px;
}

.rp-about-text {
  max-width: 600px;
}

.rp-about-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.rp-about-hero-proof span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: rgba(245,247,251,.76);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.rp-about-hero__media {
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: #1b1e27;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.rp-about-hero__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.rp-about-actions {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .respawn-about-page {
    width: min(100% - 36px, 920px);
    padding-top: 34px;
  }

  .rp-about-hero {
    grid-template-columns: 1fr;
  }

  .rp-about-hero__media {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .respawn-about-page {
    width: min(100% - 24px, 560px);
    padding-top: 26px;
  }

  .rp-about-hero {
    padding-block: 24px 36px;
  }

  .rp-about-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .rp-about-hero__media {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }
}

/* About hero wider editorial layout */
.respawn-about-page {
  width: min(100% - 64px, 1500px);
}

.rp-about-hero {
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 54px);
}

.rp-about-hero__copy {
  max-width: none;
}

.rp-about-hero__text-grid {
  display: grid;
  grid-template-columns: minmax(500px, .86fr) minmax(360px, .58fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
}

.rp-about-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 5vw, 86px);
  line-height: .9;
}

.rp-about-hero__intro {
  max-width: 560px;
  padding-bottom: 8px;
}

.rp-about-lead {
  margin-top: 0;
  font-size: clamp(17px, 1.1vw, 20px);
}

.rp-about-hero__media {
  width: 100%;
  max-width: none;
  aspect-ratio: 21 / 8;
  margin-top: 10px;
}

.rp-about-hero__media img {
  object-position: center 38%;
}

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

@media (max-width: 1100px) {
  .rp-about-hero__text-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rp-about-hero__media {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 760px) {
  .respawn-about-page {
    width: min(100% - 24px, 560px);
  }

  .rp-about-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .rp-about-hero__media {
    aspect-ratio: 16 / 11;
  }
}

/* About hero copy and photo sizing */
.rp-about-hero__text-grid {
  grid-template-columns: minmax(520px, .92fr) minmax(420px, .62fr);
}

.rp-about-hero h1 {
  max-width: 820px;
  font-size: clamp(50px, 4.5vw, 78px);
}

.rp-about-hero__intro {
  max-width: 640px;
}

.rp-about-text {
  max-width: 640px;
  margin-top: 16px;
}

.rp-about-finishing-line {
  margin: 20px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.4;
}

.rp-about-hero__media {
  width: min(100%, 920px);
  aspect-ratio: 16 / 7;
  justify-self: center;
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .rp-about-hero__text-grid {
    grid-template-columns: 1fr;
  }

  .rp-about-hero__media {
    width: 100%;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 760px) {
  .rp-about-hero h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .rp-about-hero__media {
    aspect-ratio: 16 / 11;
  }
}

/* About hero side-by-side image restore */
.rp-about-hero {
  grid-template-columns: minmax(0, .96fr) minmax(430px, .78fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.rp-about-hero h1 {
  max-width: 780px;
}

.rp-about-lead,
.rp-about-text {
  max-width: 660px;
}

.rp-about-hero__media {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .rp-about-hero {
    grid-template-columns: 1fr;
  }

  .rp-about-hero__media {
    justify-self: start;
    max-width: 720px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .rp-about-hero__media {
    aspect-ratio: 16 / 11;
  }
}

/* About hero final trust layout */
.respawn-about-page {
  width: min(100% - 64px, 1380px);
  padding-top: clamp(34px, 4vw, 64px);
}

.rp-about-hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(44px, 5vw, 74px);
}

.rp-about-hero__copy {
  max-width: 720px;
}

.rp-about-hero__text-grid {
  display: block;
}

.rp-about-hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 4.2vw, 74px);
  line-height: .94;
  letter-spacing: -.055em;
}

.rp-about-lead {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(245,247,251,.82);
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.6;
}

.rp-about-text {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(245,247,251,.64);
  font-size: 15px;
  line-height: 1.65;
}

.rp-about-finishing-line {
  margin-top: 18px;
  color: rgba(245,247,251,.94);
  font-size: 15px;
  font-weight: 950;
}

.rp-about-hero-proof {
  margin-top: 22px;
}

.rp-about-hero-proof span {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.018);
  color: rgba(245,247,251,.74);
}

.rp-about-actions {
  margin-top: 28px;
}

.rp-about-hero__media {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  margin: 0;
  border-radius: 14px;
  box-shadow: 0 26px 64px rgba(0,0,0,.24);
}

.rp-about-hero__media img {
  object-position: center;
}

@media (max-width: 1100px) {
  .respawn-about-page {
    width: min(100% - 36px, 920px);
  }

  .rp-about-hero {
    grid-template-columns: 1fr;
  }

  .rp-about-hero__media {
    justify-self: start;
    max-width: 720px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .respawn-about-page {
    width: min(100% - 24px, 560px);
    padding-top: 26px;
  }

  .rp-about-hero {
    padding-block: 28px 38px;
  }

  .rp-about-hero h1 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .rp-about-hero__media {
    aspect-ratio: 16 / 11;
  }
}

/* About story and principles refined */
.rp-about-story {
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
  padding: clamp(56px, 6vw, 88px) 0;
}

.rp-about-story h2 {
  max-width: 620px;
  font-size: clamp(42px, 4vw, 68px);
  line-height: .94;
}

.rp-about-story__copy {
  padding-left: clamp(28px, 4vw, 56px);
}

.rp-about-story__intro {
  max-width: 760px;
  color: rgba(245,247,251,.76);
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 700;
  line-height: 1.62;
}

.rp-about-story-points {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--rp-about-line);
}

.rp-about-story-points article {
  display: grid;
  grid-template-columns: 42px minmax(180px, .38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--rp-about-line);
}

.rp-about-story-points span {
  color: rgba(245,247,251,.42);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
}

.rp-about-story-points strong {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
}

.rp-about-story-points p {
  margin: 0;
  color: rgba(245,247,251,.64);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.rp-about-principles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}

.rp-about-principle {
  min-height: 0;
  padding: 20px;
  border: 1px solid var(--rp-about-line);
  border-radius: 10px;
  background: rgba(255,255,255,.018);
}

.rp-about-principle:last-child {
  border-right: 1px solid var(--rp-about-line);
}

.rp-about-principle .rp-about-icon {
  width: 34px;
  height: 34px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.025);
  color: rgba(245,247,251,.76);
  font-size: 18px;
}

.rp-about-principle strong {
  margin-top: 16px;
  font-size: 15px;
}

.rp-about-principle p {
  color: rgba(245,247,251,.62);
}

@media (max-width: 1100px) {
  .rp-about-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rp-about-story__copy {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 760px) {
  .rp-about-story-points article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rp-about-principles {
    grid-template-columns: 1fr;
  }
}

/* About team member detail layout */
.rp-about-team-grid {
  gap: clamp(42px, 6vw, 84px);
}

.rp-about-member-card {
  grid-template-columns: minmax(340px, .52fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
}

.rp-about-member-card__image {
  min-height: 520px;
  border-radius: 16px;
}

.rp-about-member-card__image img {
  min-height: 520px;
  object-position: center top;
}

.rp-about-member-card__copy {
  padding-top: 6px;
}

.rp-about-member-label {
  margin-bottom: 10px;
  color: rgba(245,247,251,.58);
}

.rp-about-member-card h3 {
  display: block;
  padding-bottom: 6px;
  overflow: visible;
  font-size: clamp(48px, 4.8vw, 78px);
  line-height: 1;
  letter-spacing: -.055em;
}

.rp-about-member-role {
  margin: 4px 0 22px;
  color: rgba(245,247,251,.78);
}

.rp-about-member-card__copy > p {
  max-width: 850px;
  color: rgba(245,247,251,.72);
  font-size: clamp(15px, .95vw, 17px);
  line-height: 1.65;
}

.rp-about-member-detail {
  max-width: 850px;
  margin-top: 20px;
  padding-top: 20px;
}

.rp-about-member-detail strong {
  color: rgba(245,247,251,.92);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rp-about-member-detail p {
  color: rgba(245,247,251,.66);
  font-size: 14px;
  line-height: 1.62;
}

@media (max-width: 1100px) {
  .rp-about-member-card,
  .rp-about-member-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .rp-about-member-card__image,
  .rp-about-member-card__image img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .rp-about-member-card__image,
  .rp-about-member-card__image img {
    min-height: 340px;
  }

  .rp-about-member-card h3 {
    font-size: clamp(44px, 14vw, 64px);
  }
}

/* About final section polish */
.rp-about-process {
  padding: clamp(58px, 6vw, 88px) 0;
  border-top: 1px solid var(--rp-about-line);
  border-bottom: 1px solid var(--rp-about-line);
}

.rp-about-process .rp-about-section-heading--split {
  grid-template-columns: minmax(0, .86fr) minmax(360px, .55fr);
  align-items: end;
}

.rp-about-process h2 {
  max-width: 720px;
  font-size: clamp(42px, 4vw, 70px);
  line-height: .94;
}

.rp-about-process .rp-about-section-heading--split > p {
  max-width: 520px;
  color: rgba(245,247,251,.68);
  font-size: 15px;
  line-height: 1.65;
}

.rp-about-process-grid {
  gap: 14px;
  margin-top: clamp(34px, 4vw, 54px);
  border: 0;
}

.rp-about-process-step {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--rp-about-line);
  border-radius: 10px;
  background: rgba(255,255,255,.018);
}

.rp-about-process-step:last-child {
  border-right: 1px solid var(--rp-about-line);
}

.rp-about-process-step span {
  color: rgba(245,247,251,.46);
}

.rp-about-process-step h3 {
  margin-top: auto;
  max-width: 260px;
  font-size: clamp(22px, 1.7vw, 30px);
}

.rp-about-process-step p {
  margin-top: 12px;
  color: rgba(245,247,251,.62);
}

.rp-about-closing {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 5vw, 72px) 0 0;
}

.rp-about-closing .rp-about-icon {
  display: none;
}

.rp-about-closing h2 {
  max-width: 880px;
  font-size: clamp(38px, 3.6vw, 62px);
  line-height: .96;
}

.rp-about-closing p {
  max-width: 760px;
  color: rgba(245,247,251,.66);
}

@media (max-width: 1100px) {
  .rp-about-process .rp-about-section-heading--split,
  .rp-about-closing {
    grid-template-columns: 1fr;
  }

  .rp-about-process-grid {
    grid-template-columns: 1fr;
  }

  .rp-about-process-step,
  .rp-about-process-step:last-child {
    min-height: 0;
    border: 1px solid var(--rp-about-line);
  }

  .rp-about-process-step h3 {
    margin-top: 34px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body > main {
  flex: 1 0 auto;
}

body > .site-footer {
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(13,13,16,.84);
  backdrop-filter: blur(18px);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions,
.hero-actions-main {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* BUTTONS */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 18px 46px rgba(139,92,246,.23);
}

.btn-primary:hover {
  background: #7c3aed;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,.045);
  border-color: var(--line);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255,255,255,.075);
}

/* HERO */
.hero {
  min-height: calc(100vh - 72px);
  padding: 42px 0 56px;
  background: var(--bg);
  display: flex;
  align-items: center;
}

.hero-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(46px, 5vw, 92px);
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(58px, 7vw, 100px);
  line-height: .84;
  letter-spacing: -.095em;
}

.hero-kicker {
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 575px;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.price-label {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 3px;
}

.price {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -.055em;
  line-height: 1;
}

.finance-box {
  position: relative;
  align-self: stretch;
  min-width: 154px;
  padding: 14px 17px;
  border-radius: 18px;
  border: 1px solid rgba(167,139,250,.36);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.finance-box::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: rgba(183,156,255,.42);
}

.finance-box span {
  display: block;
  color: var(--soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.finance-box strong {
  display: block;
  color: #fff;
  font-size: 17px;
  letter-spacing: -.035em;
  line-height: 1;
}

.hero-actions-main {
  margin-top: 28px;
}

/* SHOP GRID */
.shop-grid-section {
  padding: 32px 0 96px;
  background: #0d0d10;
}

.shop-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 18px;
}

.shop-tile {
  position: relative;
  overflow: hidden;
  background: #0b0b0d;
  min-height: 220px;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.06);
}

.shop-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
  filter: brightness(.78) saturate(.9);
}

.shop-tile:hover img {
  transform: scale(1.045);
  filter: brightness(.9) saturate(1);
}

.tile-large {
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.tile-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.56), transparent 46%),
    linear-gradient(90deg, rgba(0,0,0,.36), transparent 58%);
}

.tile-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tile-content span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 16px;
}

.tile-content h3 {
  max-width: 520px;
  font-size: clamp(26px, 3.1vw, 48px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.tile-content p {
  margin-top: auto;
  max-width: 360px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.55;
}

.config-lines {
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(255,255,255,.36) 44.2% 44.8%, transparent 45%),
    linear-gradient(160deg, transparent 0 58%, rgba(255,255,255,.22) 58.2% 58.8%, transparent 59%),
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(255,255,255,.12) 91px, transparent 92px);
}

/* QUALITY */
.quality-section {
  padding: 96px 0 120px;
  background: #060607;
}

.quality-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.quality-grid h2 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .9;
  letter-spacing: -.08em;
}

.quality-cards {
  display: grid;
  gap: 14px;
}

.quality-cards article {
  padding: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.035);
}

.quality-cards span {
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 950;
}

.quality-cards h3 {
  margin-top: 24px;
  font-size: 22px;
  letter-spacing: -.04em;
}

.quality-cards p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

/* MOBILE */
@media (max-width: 1050px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tile-large {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .brand-logo {
    height: 36px;
    max-width: 170px;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(56px, 18vw, 82px);
  }

  .hero-kicker {
    font-size: 17px;
  }

  .hero-actions-main {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .shop-tile,
  .tile-large,
  .tile-wide {
    grid-column: span 1;
    grid-row: span 1;
    height: 320px;
  }

  .tile-content {
    padding: 24px;
  }

}


@media (max-width: 1050px) {
  .performance-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 160px;
  }

  .performance-tile-large {
    grid-column: span 2;
  }

  .performance-tile-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .performance-section {
    padding: 42px 0 64px;
  }

  .performance-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .performance-tile,
  .performance-tile-large,
  .performance-tile-wide {
    grid-column: span 1;
    min-height: 260px;
  }

  .performance-tile-custom .performance-tile-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .performance-tile-custom .performance-tile-content p {
    margin-top: auto;
}}

/* =========================================================
   HOMEPAGE SECTION RESTORE PATCH
   Fixes: Featured PCs, social carousel, footer on homepage,
   and Custom PCs strip alignment/colour.
========================================================= */

/* neutral dark grey, not blue */
:root {
  --bg: #0d0d10;
  --surface: #111116;
  --surface-2: #15151b;
  --purple: #8b5cf6;
  --purple-light: #b79cff;
}

/* READY TO SHIP / FEATURED PC CARDS */
.featured-builds-section {
  padding: 34px 0 104px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}

.featured-builds-head {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-bottom: 28px;
}

.featured-builds-head h2 {
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 600;
}

.featured-builds-head > p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.build-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.build-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: var(--surface);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.build-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,.42);
  background: rgba(255,255,255,.045);
}

.build-card-featured {
  border-color: rgba(183,156,255,.34);
  box-shadow: 0 0 0 1px rgba(139,92,246,.12), 0 22px 70px rgba(139,92,246,.12);
}

.build-card-banner {
  position: relative;
  min-height: 82px;
  padding: 19px 22px;
  border-bottom: 1px solid rgba(255,255,255,.075);
  background: linear-gradient(90deg, rgba(139,92,246,.28), rgba(139,92,246,.04)), var(--surface-2);
}

.build-card-banner span {
  display: block;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 950;
  margin-bottom: 8px;
}

.build-card-banner strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.045em;
}

.build-card-banner em {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.8);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.build-card-featured .build-card-banner em {
  background: rgba(139,92,246,.26);
  color: #fff;
  border-color: rgba(183,156,255,.34);
}

.build-card-media {
  position: relative;
  height: 370px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(139,92,246,.18), transparent 38%),
    #151515;
}

.build-card-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,16,.02), rgba(13,13,16,.2) 62%, rgba(13,13,16,.58));
}

.build-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(.9) contrast(1.02);
  transition: transform .34s ease, filter .34s ease;
}

.build-card:hover .build-card-media > img {
  transform: scale(1.035);
  filter: brightness(.5) saturate(.82) contrast(1.05);
}

.build-fps-overlay {
  position: absolute;
  z-index: 4;
  inset: auto 16px 16px 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .26s ease, transform .26s ease;
  pointer-events: none;
}

.build-card:hover .build-fps-overlay {
  opacity: 1;
  transform: translateY(0);
}

.build-fps-overlay .fps-head {
  margin-bottom: 10px;
}

.build-fps-overlay .fps-head strong {
  font-size: 20px;
}

.build-fps-overlay .fps-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.build-fps-overlay .fps-card {
  min-height: 88px;
  border-radius: 14px;
}

.build-fps-overlay .fps-card strong {
  font-size: 17px;
}

.build-fps-overlay p {
  margin-top: 10px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.build-hint {
  z-index: 5;
}

.build-card:hover .build-hint {
  opacity: 0;
  transform: translateY(8px);
}

.build-card-body {
  padding: 24px;
}

.build-card-fit {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.build-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.build-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: rgba(247,247,248,.72);
  font-size: 11px;
  font-weight: 850;
}

.build-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.075);
}

.build-spec-grid div {
  padding: 14px;
  background: var(--surface);
}

.build-spec-grid span {
  display: block;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  font-weight: 950;
  margin-bottom: 6px;
}

.build-spec-grid strong {
  font-size: 13px;
  line-height: 1.35;
}

.build-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-top: 24px;
}

.build-card-bottom span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 4px;
}

.build-card-bottom strong {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.06em;
}

.build-card-bottom p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-align: right;
}

.build-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

/* CUSTOM PC STRIP */
.performance-tile-custom {
  background: #9b6dff !important;
  border-color: rgba(205,188,255,.46) !important;
}

.performance-tile-custom::before {
  background:
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #a978ff 0%, #925cf7 55%, #7c3aed 100%) !important;
}

.performance-tile-custom .performance-tile-content {
  height: 100%;
  width: 100%;
  padding: clamp(26px, 2.2vw, 42px);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 10px !important;
}

.performance-tile-custom .performance-tile-content span,
.performance-tile-custom .performance-tile-content h2,
.performance-tile-custom .performance-tile-content p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.performance-tile-custom .performance-tile-content span {
  margin-bottom: 0 !important;
  color: rgba(255,255,255,.82) !important;
}

.performance-tile-custom .performance-tile-content h2 {
  max-width: 760px !important;
  white-space: normal !important;
}

.performance-tile-custom .performance-tile-content p {
  margin-top: 0 !important;
  max-width: 620px !important;
  color: rgba(255,255,255,.82) !important;
}

/* EXPERT CTA */
.expert-section {
  padding: 26px 0 96px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}

.expert-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(34px, 4.4vw, 64px) 0;
  border-bottom: 1px solid var(--line-soft);
}

.expert-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 600;
}

.expert-copy p:last-child {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.expert-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

/* SOCIAL MEDIA CAROUSEL */
.social-section {
  padding: clamp(48px, 5vw, 78px) 0 clamp(70px, 6vw, 104px);
  background: #080c14 !important;
  border-top: 0;
}

body.home .social-section {
  background: #080c14 !important;
}

.social-section > .shell {
  width: min(1640px, calc(100% - 64px));
  max-width: 1640px;
}

.social-showcase {
  display: grid;
  grid-template-columns: minmax(340px, .84fr) minmax(0, 1.56fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 10px;
  background: #111522;
}

.social-top {
  display: flex;
  min-width: 0;
  min-height: 100%;
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid rgba(148, 163, 184, .12);
  border-radius: 8px;
  background: #0d111b;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 0;
}

.social-heading-block h2 {
  max-width: 520px;
  font-size: clamp(40px, 4vw, 66px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 850;
}

.social-heading-block p:last-of-type {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(245, 247, 251, .70);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.6;
}

.social-channel-link {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-inline: 24px;
}

.social-channel-link img {
  width: 24px;
  height: 18px;
  object-fit: contain;
}

.social-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
}

.social-marquee::before,
.social-marquee::after {
  content: none;
}

.social-marquee::before {
  left: 0;
  background: none;
}

.social-marquee::after {
  right: 0;
  background: none;
}

.social-track {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  width: 100%;
  animation: none;
}

.social-marquee:hover .social-track {
  animation-play-state: running;
}

.social-video-card {
  width: 100% !important;
  min-width: 0;
  flex: initial !important;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 8px;
  background: #0d111b;
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.social-video-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, .42);
  background: #101624;
}

.social-video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #080c14;
}

.social-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86) saturate(1.04);
  transition: transform .22s ease, filter .22s ease;
}

.social-video-card:hover .social-video-thumb img {
  transform: scale(1.025);
  filter: brightness(.92) saturate(1.08);
}

.social-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 27, .02), rgba(13, 17, 27, .14) 55%, rgba(13, 17, 27, .62));
}

.social-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(139, 92, 246, .88);
  border: 1px solid rgba(255, 255, 255, .18);
}

.social-play::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 13px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #fff;
}

.social-video-meta {
  min-height: 132px;
  padding: 18px;
}

.social-video-meta span {
  display: block;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 950;
  margin-bottom: 10px;
}

.social-video-meta h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -.03em;
  font-weight: 820;
}

@keyframes socialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (prefers-reduced-motion: reduce) {
  .social-track,
  .respawn-team-video-track {
    animation: none;
  }
}

/* FOOTER RESTORE */
.site-footer {
  display: block !important;
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: 72px 0 28px;
  margin-top: 0;
  color: var(--text);
}

.site-footer .footer-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
}

.site-footer .footer-brand {
  max-width: 460px;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

.site-footer .footer-logo img {
  display: block !important;
  height: 42px !important;
  width: auto !important;
  max-width: 210px !important;
  object-fit: contain !important;
}

.site-footer .footer-brand p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 430px;
  margin: 0;
}

.site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.site-footer .footer-links h3 {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: 1;
}

.site-footer .footer-links a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.site-footer .footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.site-footer .footer-bottom p {
  margin: 0;
  color: var(--soft);
}

@media (max-width: 1050px) {
  .featured-builds-head,
  .build-card-grid,
  .expert-card {
    grid-template-columns: 1fr;
  }

  .expert-actions {
    justify-content: flex-start;
  }

  .social-showcase {
    grid-template-columns: 1fr;
  }

  .social-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .featured-builds-section {
    padding: 26px 0 74px;
  }

  .build-card-media {
    height: auto;
  }

  .build-card-media > img {
    height: 320px;
  }

  .build-fps-overlay {
    position: static;
    opacity: 1;
    transform: none;
    padding: 0 14px 14px;
    pointer-events: auto;
  }

  .build-fps-overlay .fps-grid,
  .build-card-actions,
  .build-spec-grid {
    grid-template-columns: 1fr;
  }

  .build-hint {
    display: none;
  }

  .expert-section {
    padding: 18px 0 66px;
  }

  .expert-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .social-section {
    padding: 46px 0 74px;
  }

  .social-section > .shell {
    width: min(100% - 28px, 1640px);
  }

  .social-showcase {
    padding: 14px;
  }

  .social-top {
    padding: 22px;
  }

  .social-video-card {
    width: 100% !important;
    flex-basis: auto !important;
  }

  .social-track {
    grid-template-columns: 1fr;
  }

  .social-video-thumb {
    aspect-ratio: 16 / 9;
  }

  .social-channel-link {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    padding: 54px 0 24px;
  }

  .site-footer .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 42px;
  }
}


/* =========================================================
   READY TO SHIP FINAL OVERRIDE
   Goal: match the larger screenshot mockup without changing the site colour scheme.
   This is intentionally loaded last.
========================================================= */

.featured-builds-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 104px !important;
  background:
    radial-gradient(circle at 50% 36%, rgba(139,92,246,.10), transparent 34%),
    var(--bg) !important;
  border-top: 1px solid var(--line-soft) !important;
  border-bottom: 1px solid var(--line-soft) !important;
}

.featured-builds-section::before {
  content: none !important;
}

/* Make this section wide like the generated mockup, not tiny/narrow */
.featured-builds-section > .shell {
  width: min(1760px, calc(100% - 72px)) !important;
  max-width: 1760px !important;
}

.featured-builds-head {
  display: grid !important;
  grid-template-columns: 1.05fr .95fr !important;
  gap: clamp(42px, 8vw, 170px) !important;
  align-items: end !important;
  margin-bottom: 36px !important;
}

.featured-builds-head .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: var(--purple-light) !important;
  letter-spacing: .22em !important;
}

.featured-builds-head .eyebrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--purple-light);
  box-shadow: 0 0 18px rgba(183,156,255,.62);
}

.featured-builds-head h2 {
  max-width: 760px !important;
  margin-top: 12px !important;
  color: #fff !important;
  font-size: clamp(64px, 6.15vw, 116px) !important;
  line-height: .88 !important;
  letter-spacing: -.108em !important;
  font-weight: 500 !important;
}

.featured-builds-head > p {
  justify-self: end !important;
  max-width: 610px !important;
  margin: 0 0 20px !important;
  color: var(--muted) !important;
  font-size: clamp(17px, 1.15vw, 22px) !important;
  line-height: 1.68 !important;
}

/* Cards: large, elegant, screenshot style */
.build-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
}

.build-card {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  min-width: 0 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.014)),
    var(--surface) !important;
  box-shadow:
    0 30px 86px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
  transform: none !important;
}

.build-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(183,156,255,.38) !important;
  background:
    linear-gradient(180deg, rgba(139,92,246,.055), rgba(255,255,255,.012)),
    var(--surface) !important;
  box-shadow:
    0 36px 96px rgba(0,0,0,.36),
    0 0 0 1px rgba(139,92,246,.09),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.build-card-featured {
  border-color: rgba(183,156,255,.52) !important;
  box-shadow:
    0 34px 100px rgba(139,92,246,.14),
    0 0 0 1px rgba(139,92,246,.20),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.build-card-banner {
  position: relative !important;
  min-height: 116px !important;
  padding: 30px 74px 20px 28px !important;
  border-bottom: 0 !important;
  background:
    linear-gradient(180deg, rgba(139,92,246,.09), rgba(139,92,246,0)),
    transparent !important;
}

.build-card-banner::after {
  content: "→" !important;
  position: absolute !important;
  right: 24px !important;
  top: 25px !important;
  width: 48px !important;
  height: 48px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 999px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 28px !important;
  line-height: 1 !important;
  background: rgba(255,255,255,.025) !important;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.build-card:hover .build-card-banner::after {
  transform: translateX(3px);
  border-color: rgba(183,156,255,.5) !important;
  color: #fff !important;
}

.build-card-banner span {
  display: block !important;
  color: var(--purple-light) !important;
  letter-spacing: .22em !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
}

.build-card-banner strong {
  display: block !important;
  color: #fff !important;
  font-size: clamp(31px, 2.15vw, 42px) !important;
  line-height: 1 !important;
  letter-spacing: -.062em !important;
}

.build-card-banner em {
  position: absolute !important;
  right: 20px !important;
  top: 142px !important;
  z-index: 7 !important;
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(183,156,255,.24) !important;
  border-radius: 999px !important;
  background: rgba(18,18,25,.72) !important;
  color: rgba(255,255,255,.88) !important;
  font-style: normal !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  backdrop-filter: blur(12px) !important;
}

.build-card-featured .build-card-banner em::before {
  content: "★";
  color: var(--purple-light);
}

/* Bigger media area like screenshot 2 */
.build-card-media {
  position: relative !important;
  height: 385px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 50% 70%, rgba(139,92,246,.20), transparent 44%),
    #151515 !important;
}

.build-card-media::before {
  content: "" !important;
  position: absolute !important;
  inset: -1px !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(13,13,16,0) 35%, rgba(13,13,16,.70) 100%),
    linear-gradient(90deg, rgba(139,92,246,.08), transparent 42%) !important;
}

.build-card-media > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(.78) saturate(.92) contrast(1.04) !important;
  transform: scale(1.01) !important;
  transition: transform .34s ease, filter .34s ease !important;
}

.build-card:hover .build-card-media > img {
  transform: scale(1.045) !important;
  filter: brightness(.52) saturate(.82) contrast(1.06) !important;
}

.image-hint.build-hint {
  right: 20px !important;
  bottom: 20px !important;
  z-index: 7 !important;
}

.image-hint.build-hint span {
  min-height: 40px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: rgba(10,10,13,.72) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  color: #fff !important;
  font-weight: 950 !important;
  backdrop-filter: blur(12px) !important;
}

.build-fps-overlay {
  position: absolute !important;
  z-index: 6 !important;
  inset: auto 18px 18px 18px !important;
  opacity: 0 !important;
  transform: translateY(16px) !important;
  padding: 15px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 16px !important;
  background: rgba(15,15,20,.72) !important;
  backdrop-filter: blur(18px) !important;
  pointer-events: none !important;
  transition: opacity .26s ease, transform .26s ease !important;
}

.build-card:hover .build-fps-overlay {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.build-card:hover .build-hint {
  opacity: 0 !important;
  transform: translateY(8px) !important;
}

.build-card-body {
  padding: 26px 28px 28px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)),
    rgba(17,17,22,.96) !important;
}

.build-card-fit {
  min-height: 54px !important;
  color: rgba(247,247,248,.78) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.build-trust-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

.build-trust-row span {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.035) !important;
  color: rgba(247,247,248,.82) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.build-trust-row span::before {
  content: "✦";
  color: var(--purple-light);
  margin-right: 8px;
  font-size: 12px;
}

.build-spec-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 14px !important;
  margin-top: 24px !important;
  background: rgba(255,255,255,.075) !important;
}

.build-spec-grid div {
  min-height: 82px !important;
  padding: 18px 17px !important;
  background: rgba(255,255,255,.018) !important;
}

.build-spec-grid span {
  color: var(--purple-light) !important;
  letter-spacing: .18em !important;
  font-size: 10px !important;
  margin-bottom: 8px !important;
}

.build-spec-grid strong {
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.build-card-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: end !important;
  gap: 16px !important;
  margin-top: 28px !important;
}

.build-card-bottom span {
  display: block !important;
  color: var(--soft) !important;
  font-size: 13px !important;
  margin-bottom: 5px !important;
}

.build-card-bottom strong {
  display: block !important;
  color: #fff !important;
  font-size: clamp(40px, 3vw, 54px) !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  letter-spacing: -.078em !important;
}

.build-card-bottom p {
  color: rgba(247,247,248,.72) !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  text-align: right !important;
}

.build-card-actions {
  display: grid !important;
  grid-template-columns: 1.2fr .95fr !important;
  gap: 14px !important;
  margin-top: 24px !important;
}

.build-card-actions .btn {
  min-height: 52px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
}

.build-card-actions .btn-primary {
  background: linear-gradient(135deg, #a978ff, var(--purple)) !important;
  box-shadow: 0 18px 46px rgba(139,92,246,.26) !important;
}

.build-card-actions .btn-primary::after {
  content: "▱";
  margin-left: 10px;
  opacity: .8;
}

.build-card-actions .btn-ghost {
  background: rgba(255,255,255,.035) !important;
  border-color: rgba(255,255,255,.16) !important;
}

.build-card-actions .btn-ghost::after {
  content: "☷";
  margin-left: 10px;
  color: rgba(255,255,255,.72);
}

/* Bottom assurance row, matching screenshot 2 */
.build-assurance-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 5vw, 86px) !important;
  width: min(980px, 100%) !important;
  margin: 52px auto 0 !important;
  padding-top: 30px !important;
  border-top: 1px solid rgba(255,255,255,.075) !important;
}

.build-assurance-item {
  display: grid !important;
  grid-template-columns: 48px 1fr !important;
  gap: 16px !important;
  align-items: center !important;
  color: rgba(247,247,248,.70) !important;
}

.build-assurance-icon {
  width: 48px !important;
  height: 48px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(183,156,255,.22) !important;
  border-radius: 999px !important;
  color: var(--purple-light) !important;
  background: rgba(139,92,246,.07) !important;
  font-size: 22px !important;
}

.build-assurance-item strong {
  display: block !important;
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
}

.build-assurance-item p {
  margin-top: 3px !important;
  color: var(--muted) !important;
  font-size: 15px !important;
}

/* Keep the rest of the page colour scheme exactly on-brand */
.performance-tile-custom {
  background: #9b6dff !important;
  border-color: rgba(205,188,255,.46) !important;
}

.performance-tile-custom::before {
  background:
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #a978ff 0%, #925cf7 55%, #7c3aed 100%) !important;
}

.performance-tile-custom .performance-tile-content {
  height: 100%;
  width: 100%;
  padding: clamp(26px, 2.2vw, 42px);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 10px !important;
}

.performance-tile-custom .performance-tile-content span,
.performance-tile-custom .performance-tile-content h2,
.performance-tile-custom .performance-tile-content p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.performance-tile-custom .performance-tile-content span {
  margin-bottom: 0 !important;
  color: rgba(255,255,255,.82) !important;
}

.performance-tile-custom .performance-tile-content h2 {
  max-width: 760px !important;
  white-space: normal !important;
}

.performance-tile-custom .performance-tile-content p {
  margin-top: 0 !important;
  max-width: 620px !important;
  color: rgba(255,255,255,.82) !important;
}

@media (max-width: 1280px) {
  .featured-builds-section > .shell {
    width: min(1180px, calc(100% - 42px)) !important;
  }

  .build-card-grid {
    gap: 18px !important;
  }

  .build-card-media {
    height: 315px !important;
  }

  .featured-builds-head h2 {
    font-size: clamp(58px, 6.4vw, 88px) !important;
  }
}

@media (max-width: 1050px) {
  .featured-builds-head,
  .build-card-grid,
  .build-assurance-row {
    grid-template-columns: 1fr !important;
  }

  .featured-builds-head > p {
    justify-self: start !important;
  }

  .build-card {
    max-width: 760px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 700px) {
  .featured-builds-section {
    padding: 62px 0 76px !important;
  }

  .featured-builds-section > .shell {
    width: min(100% - 28px, 560px) !important;
  }

  .featured-builds-head h2 {
    font-size: clamp(46px, 13vw, 68px) !important;
  }

  .build-card-media {
    height: 300px !important;
  }

  .build-card-actions,
  .build-spec-grid {
    grid-template-columns: 1fr !important;
  }

  .build-card-bottom {
    display: block !important;
  }

  .build-card-bottom p {
    text-align: left !important;
    margin-top: 8px !important;
  }
}


/* =========================================================
   READY TO SHIP RESPONSIVE FINAL
   Compact premium layout for 1920x1080, 4K ultrawide, tablet and mobile.
   Keeps existing Respawn colours.
========================================================= */

.featured-builds-section {
  padding: clamp(64px, 6vw, 88px) 0 clamp(72px, 7vw, 96px) !important;
  background:
    radial-gradient(circle at 52% 38%, rgba(139,92,246,.075), transparent 34%),
    var(--bg) !important;
}

/* Keep it premium but stop it becoming monster-wide on ultrawide */
.featured-builds-section > .shell {
  width: min(1440px, calc(100% - 56px)) !important;
  max-width: 1440px !important;
}

/* Match the mockup: headline left, copy right, balanced */
.featured-builds-head {
  display: grid !important;
  grid-template-columns: minmax(0, .98fr) minmax(300px, .72fr) !important;
  gap: clamp(34px, 7vw, 110px) !important;
  align-items: end !important;
  margin-bottom: 28px !important;
}

.featured-builds-head h2 {
  max-width: 660px !important;
  font-size: clamp(54px, 5.1vw, 82px) !important;
  line-height: .88 !important;
  letter-spacing: -.102em !important;
  font-weight: 520 !important;
}

.featured-builds-head > p {
  justify-self: end !important;
  max-width: 500px !important;
  margin: 0 0 15px !important;
  color: var(--muted) !important;
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.62 !important;
}

/* 3 cards in one clean row at desktop, but controlled size */
.build-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}

.build-card {
  border-radius: 16px !important;
  border-color: rgba(255,255,255,.105) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.012)),
    var(--surface) !important;
  box-shadow:
    0 22px 64px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.build-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 28px 76px rgba(0,0,0,.34),
    0 0 0 1px rgba(139,92,246,.08),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.build-card-featured {
  border-color: rgba(183,156,255,.43) !important;
  box-shadow:
    0 26px 78px rgba(139,92,246,.10),
    0 0 0 1px rgba(139,92,246,.15),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

/* Smaller header area like mockup */
.build-card-banner {
  min-height: 82px !important;
  padding: 20px 58px 15px 22px !important;
}

.build-card-banner::after {
  right: 18px !important;
  top: 20px !important;
  width: 36px !important;
  height: 36px !important;
  font-size: 22px !important;
}

.build-card-banner span {
  font-size: 10px !important;
  letter-spacing: .2em !important;
  margin-bottom: 8px !important;
}

.build-card-banner strong {
  font-size: clamp(24px, 1.55vw, 30px) !important;
  line-height: 1 !important;
}

/* Badge should sit neatly over image, not huge */
.build-card-banner em {
  top: 108px !important;
  right: 16px !important;
  min-height: 28px !important;
  padding: 0 11px !important;
  font-size: 9px !important;
}

/* Important: stop images/cards being too tall */
.build-card-media {
  height: clamp(235px, 17.2vw, 290px) !important;
  background:
    radial-gradient(circle at 50% 72%, rgba(139,92,246,.18), transparent 43%),
    #151515 !important;
}

.build-card-media > img {
  object-fit: cover !important;
  object-position: center center !important;
}

.build-card-body {
  padding: 18px 22px 22px !important;
}

/* Text/content compact, still premium */
.build-card-fit {
  min-height: 42px !important;
  font-size: 14px !important;
  line-height: 1.52 !important;
}

.build-trust-row {
  gap: 8px !important;
  margin-top: 13px !important;
}

.build-trust-row span {
  min-height: 31px !important;
  padding: 0 11px !important;
  font-size: 11px !important;
}

/* Specs grid compact and cleaner */
.build-spec-grid {
  margin-top: 18px !important;
  border-radius: 12px !important;
}

.build-spec-grid div {
  min-height: 64px !important;
  padding: 13px 14px !important;
}

.build-spec-grid span {
  font-size: 9px !important;
  letter-spacing: .16em !important;
  margin-bottom: 6px !important;
}

.build-spec-grid strong {
  font-size: 13px !important;
  line-height: 1.32 !important;
}

/* Pricing more like mockup but not massive */
.build-card-bottom {
  margin-top: 20px !important;
}

.build-card-bottom span {
  font-size: 11px !important;
}

.build-card-bottom strong {
  font-size: clamp(30px, 2.35vw, 40px) !important;
  letter-spacing: -.07em !important;
}

.build-card-bottom p {
  font-size: 13px !important;
}

/* Buttons smaller, cleaner */
.build-card-actions {
  gap: 10px !important;
  margin-top: 18px !important;
  grid-template-columns: 1.15fr .95fr !important;
}

.build-card-actions .btn {
  min-height: 44px !important;
  font-size: 12px !important;
  padding: 0 15px !important;
}

/* FPS hover fits within compact image */
.build-fps-overlay {
  inset: auto 13px 13px 13px !important;
  padding: 12px !important;
  border-radius: 14px !important;
}

.build-fps-overlay .fps-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 7px !important;
}

.build-fps-overlay .fps-card {
  min-height: 74px !important;
  border-radius: 12px !important;
}

.build-fps-overlay .fps-card strong {
  font-size: 14px !important;
}

.build-fps-overlay .fps-card span {
  font-size: 10px !important;
}

.image-hint.build-hint {
  right: 15px !important;
  bottom: 15px !important;
}

.image-hint.build-hint span {
  min-height: 34px !important;
  padding: 0 13px !important;
  font-size: 11px !important;
}

/* Assurance row should not push the section too tall */
.build-assurance-row {
  width: min(860px, 100%) !important;
  margin: 34px auto 0 !important;
  padding-top: 24px !important;
  gap: clamp(18px, 4vw, 58px) !important;
}

.build-assurance-item {
  grid-template-columns: 38px 1fr !important;
  gap: 13px !important;
}

.build-assurance-icon {
  width: 38px !important;
  height: 38px !important;
  font-size: 18px !important;
}

.build-assurance-item strong {
  font-size: 16px !important;
}

.build-assurance-item p {
  font-size: 13px !important;
}

/* 4K / ultrawide: keep section centered and readable, do not stretch forever */
@media (min-width: 1800px) {
  .featured-builds-section > .shell {
    width: min(1480px, calc(100% - 96px)) !important;
    max-width: 1480px !important;
  }

  .build-card-media {
    height: 300px !important;
  }
}

/* 1920x1080 friendly: full section feels balanced, cards not skyscrapers */
@media (min-width: 1200px) and (max-width: 1700px) {
  .featured-builds-section > .shell {
    width: min(1360px, calc(100% - 52px)) !important;
  }

  .featured-builds-head h2 {
    font-size: clamp(58px, 4.8vw, 76px) !important;
  }

  .build-card-media {
    height: 255px !important;
  }

  .build-card-banner {
    min-height: 78px !important;
  }

  .build-card-body {
    padding: 17px 20px 20px !important;
  }
}

/* Tablet: 2 columns */
@media (max-width: 1100px) {
  .featured-builds-section > .shell {
    width: min(940px, calc(100% - 38px)) !important;
  }

  .featured-builds-head {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .featured-builds-head > p {
    justify-self: start !important;
    max-width: 680px !important;
  }

  .build-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .build-card {
    max-width: none !important;
    margin: 0 !important;
    display: block !important;
  }

  .build-card-media {
    height: 260px !important;
    min-height: 0 !important;
  }

  .build-assurance-row {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}

/* Mobile: 1 column, no hover-only hidden info */
@media (max-width: 760px) {
  .featured-builds-section {
    padding: 56px 0 70px !important;
  }

  .featured-builds-section > .shell {
    width: min(100% - 28px, 520px) !important;
  }

  .featured-builds-head h2 {
    font-size: clamp(44px, 13vw, 62px) !important;
  }

  .build-card-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .build-card-banner {
    min-height: 78px !important;
    padding: 19px 56px 14px 20px !important;
  }

  .build-card-banner em {
    top: 104px !important;
  }

  .build-card-media {
    height: 250px !important;
  }

  .build-fps-overlay {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin: 12px;
  }

  .build-fps-overlay .fps-grid,
  .build-card-actions,
  .build-spec-grid,
  .build-assurance-row {
    grid-template-columns: 1fr !important;
  }

  .build-hint {
    display: none !important;
  }

  .build-card-bottom {
    display: block !important;
  }

  .build-card-bottom p {
    text-align: left !important;
    margin-top: 8px !important;
  }
}


/* =========================================================
   READY TO SHIP COMPACT EQUAL CARD FIX
   Fix: cards were too tall/wide and different heights.
   Loaded last so it wins.
========================================================= */

.featured-builds-section {
  padding: 64px 0 78px !important;
}

.featured-builds-section > .shell {
  width: min(1240px, calc(100% - 48px)) !important;
  max-width: 1240px !important;
}

.featured-builds-head {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr) !important;
  gap: clamp(28px, 6vw, 86px) !important;
  margin-bottom: 24px !important;
}

.featured-builds-head h2 {
  max-width: 600px !important;
  font-size: clamp(48px, 4.3vw, 70px) !important;
  line-height: .88 !important;
}

.featured-builds-head > p {
  max-width: 460px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

/* Equal compact grid */
.build-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.build-card {
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 52px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.build-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

/* Smaller top title bar */
.build-card-banner {
  flex: 0 0 auto !important;
  min-height: 66px !important;
  padding: 15px 50px 12px 18px !important;
}

.build-card-banner::after {
  right: 16px !important;
  top: 17px !important;
  width: 30px !important;
  height: 30px !important;
  font-size: 18px !important;
}

.build-card-banner span {
  font-size: 9px !important;
  letter-spacing: .18em !important;
  margin-bottom: 6px !important;
}

.build-card-banner strong {
  font-size: clamp(21px, 1.45vw, 26px) !important;
  letter-spacing: -.055em !important;
}

/* Do not let badges push/crop weirdly */
.build-card-banner em {
  top: 92px !important;
  right: 14px !important;
  min-height: 25px !important;
  padding: 0 9px !important;
  font-size: 8px !important;
}

/* Same image height for all three */
.build-card-media {
  flex: 0 0 auto !important;
  height: 205px !important;
  min-height: 205px !important;
  max-height: 205px !important;
}

.build-card-media > img {
  width: 100% !important;
  height: 205px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Body uses grid/flex to keep all cards same size */
.build-card-body {
  flex: 1 1 auto !important;
  display: grid !important;
  grid-template-rows: 44px 34px 118px auto 44px !important;
  gap: 12px !important;
  padding: 17px 18px 18px !important;
}

.build-card-fit {
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.build-trust-row {
  align-content: start !important;
  gap: 7px !important;
  margin: 0 !important;
}

.build-trust-row span {
  min-height: 27px !important;
  padding: 0 9px !important;
  font-size: 10px !important;
}

/* Specs are same size and text cannot grow card */
.build-spec-grid {
  margin: 0 !important;
  height: 118px !important;
  min-height: 118px !important;
  border-radius: 10px !important;
}

.build-spec-grid div {
  min-height: 0 !important;
  height: 58px !important;
  padding: 10px 11px !important;
  overflow: hidden !important;
}

.build-spec-grid span {
  font-size: 8px !important;
  letter-spacing: .15em !important;
  margin-bottom: 5px !important;
}

.build-spec-grid strong {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

/* Price row consistent */
.build-card-bottom {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: end !important;
  gap: 10px !important;
  margin: 0 !important;
}

.build-card-bottom span {
  font-size: 10px !important;
  margin-bottom: 3px !important;
}

.build-card-bottom strong {
  font-size: clamp(28px, 2vw, 34px) !important;
  letter-spacing: -.07em !important;
}

.build-card-bottom p {
  font-size: 11px !important;
  white-space: nowrap !important;
}

/* Buttons equal and smaller */
.build-card-actions {
  display: grid !important;
  grid-template-columns: 1.1fr .9fr !important;
  gap: 9px !important;
  margin: 0 !important;
  align-self: end !important;
}

.build-card-actions .btn {
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 12px !important;
  font-size: 11px !important;
}

/* Hover overlay also compact */
.build-fps-overlay {
  inset: auto 10px 10px 10px !important;
  padding: 10px !important;
  border-radius: 12px !important;
}

.build-fps-overlay .fps-grid {
  gap: 6px !important;
}

.build-fps-overlay .fps-card {
  min-height: 62px !important;
}

.build-fps-overlay .fps-card strong {
  font-size: 12px !important;
}

.build-fps-overlay .fps-card span {
  font-size: 9px !important;
}

.image-hint.build-hint {
  right: 12px !important;
  bottom: 12px !important;
}

.image-hint.build-hint span {
  min-height: 30px !important;
  padding: 0 11px !important;
  font-size: 10px !important;
}

/* Assurance row compact */
.build-assurance-row {
  width: min(780px, 100%) !important;
  margin: 30px auto 0 !important;
  padding-top: 22px !important;
  gap: 28px !important;
}

.build-assurance-item {
  grid-template-columns: 34px 1fr !important;
  gap: 11px !important;
}

.build-assurance-icon {
  width: 34px !important;
  height: 34px !important;
  font-size: 16px !important;
}

.build-assurance-item strong {
  font-size: 15px !important;
}

.build-assurance-item p {
  font-size: 12px !important;
}

/* 1920x1080: this is the target */
@media (min-width: 1200px) and (max-width: 1920px) {
  .featured-builds-section > .shell {
    width: min(1200px, calc(100% - 48px)) !important;
  }

  .build-card-media,
  .build-card-media > img {
    height: 195px !important;
    min-height: 195px !important;
    max-height: 195px !important;
  }

  .build-card-body {
    grid-template-rows: 42px 32px 112px auto 40px !important;
    padding: 16px 17px 17px !important;
  }

  .build-spec-grid {
    height: 112px !important;
    min-height: 112px !important;
  }

  .build-spec-grid div {
    height: 55px !important;
  }
}

/* 4K / ultrawide: do not stretch cards across the moon */
@media (min-width: 1921px) {
  .featured-builds-section > .shell {
    width: 1280px !important;
    max-width: 1280px !important;
  }

  .build-card-media,
  .build-card-media > img {
    height: 215px !important;
  }
}

/* Tablet: 2 columns, equal */
@media (max-width: 1050px) {
  .featured-builds-section > .shell {
    width: min(900px, calc(100% - 36px)) !important;
  }

  .featured-builds-head {
    grid-template-columns: 1fr !important;
  }

  .featured-builds-head > p {
    justify-self: start !important;
  }

  .build-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile: stacked and readable */
@media (max-width: 720px) {
  .featured-builds-section {
    padding: 52px 0 64px !important;
  }

  .featured-builds-section > .shell {
    width: min(100% - 28px, 520px) !important;
  }

  .featured-builds-head h2 {
    font-size: clamp(42px, 12vw, 58px) !important;
  }

  .build-card-grid {
    grid-template-columns: 1fr !important;
  }

  .build-card-media,
  .build-card-media > img {
    height: 225px !important;
    min-height: 225px !important;
    max-height: 225px !important;
  }

  .build-card-body {
    display: block !important;
    padding: 17px !important;
  }

  .build-card-fit,
  .build-trust-row,
  .build-spec-grid,
  .build-card-bottom,
  .build-card-actions {
    margin-top: 14px !important;
  }

  .build-card-fit {
    height: auto !important;
    overflow: visible !important;
  }

  .build-spec-grid {
    height: auto !important;
    min-height: 0 !important;
  }

  .build-spec-grid div {
    height: auto !important;
    min-height: 54px !important;
  }

  .build-card-bottom {
    display: block !important;
  }

  .build-card-bottom p {
    margin-top: 6px !important;
    text-align: left !important;
  }

  .build-card-actions {
    grid-template-columns: 1fr !important;
  }

  .build-fps-overlay {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 10px !important;
    pointer-events: auto !important;
  }

  .build-fps-overlay .fps-grid,
  .build-assurance-row {
    grid-template-columns: 1fr !important;
  }

  .build-hint {
    display: none !important;
  }
}

/* =========================================================
   Homepage featured builds final polish
   Loaded after older homepage card attempts so this section is predictable.
========================================================= */

.featured-builds-section {
  padding: clamp(72px, 7vw, 104px) 0 clamp(82px, 8vw, 112px) !important;
  background: #171922 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}

.featured-builds-section > .shell {
  width: min(1240px, calc(100% - 56px)) !important;
  max-width: 1240px !important;
}

.featured-builds-head {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 14px !important;
  margin: 0 auto 36px !important;
  text-align: center !important;
}

.featured-builds-head h2 {
  max-width: 780px !important;
  margin: 0 auto !important;
  font-size: clamp(42px, 4.1vw, 66px) !important;
  line-height: .96 !important;
  letter-spacing: -.065em !important;
  font-weight: 720 !important;
}

.featured-builds-head > p {
  justify-self: center !important;
  max-width: 650px !important;
  margin: 0 auto !important;
  color: rgba(245,247,251,.72) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.build-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.build-card {
  height: 100% !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 14px !important;
  background: #20232d !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.build-card-featured {
  border-color: rgba(139,92,246,.38) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.28), 0 0 0 1px rgba(139,92,246,.12), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.build-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 24px 66px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.045) !important;
}

.build-card-shell {
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.build-card-media {
  position: relative !important;
  flex: 0 0 auto !important;
  height: 190px !important;
  min-height: 190px !important;
  max-height: 190px !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  background: #0f1117 !important;
}

.build-card-media::before {
  background: linear-gradient(180deg, rgba(15,17,23,.08), rgba(15,17,23,.12) 42%, rgba(15,17,23,.48)) !important;
}

.build-card-media > img {
  width: 100% !important;
  height: 190px !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: brightness(.72) saturate(.9) contrast(1.04) !important;
}

.build-card:hover .build-card-media > img {
  transform: scale(1.035) !important;
  filter: brightness(.78) saturate(.94) contrast(1.04) !important;
}

.build-card-tag {
  position: absolute !important;
  z-index: 5 !important;
  top: 14px !important;
  left: 14px !important;
  min-height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 11px !important;
  border: 1px solid rgba(183,156,255,.26) !important;
  border-radius: 999px !important;
  background: rgba(15,17,23,.72) !important;
  color: #d8cbff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  backdrop-filter: blur(10px) !important;
}

.build-card-heart {
  display: none !important;
}

.build-card-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 17px !important;
  padding: 22px !important;
  background: #20232d !important;
}

.build-card-title-row {
  min-height: 76px !important;
}

.build-card-title-row h3 {
  margin: 0 !important;
  color: #f5f7fb !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}

.build-card-title-row p {
  margin: 7px 0 0 !important;
  color: rgba(245,247,251,.74) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.build-spec-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.08) !important;
}

.build-spec-grid div {
  min-height: 66px !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 12px 13px !important;
  overflow: hidden !important;
  background: rgba(15,17,23,.36) !important;
}

.build-spec-grid span {
  order: -1 !important;
  margin: 0 0 6px !important;
  color: #a78bfa !important;
  font-size: 9px !important;
  font-weight: 950 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.build-spec-grid strong {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  color: #f5f7fb !important;
  font-size: 13px !important;
  line-height: 1.28 !important;
}

.build-card-bottom {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin: 3px 0 0 !important;
}

.build-card-bottom span {
  display: block !important;
  margin: 0 0 4px !important;
  color: rgba(245,247,251,.58) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.build-card-bottom strong {
  color: #fff !important;
  font-size: clamp(31px, 2.2vw, 38px) !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}

.build-card-bottom p {
  min-height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  margin: 0 0 2px !important;
  padding: 0 10px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 999px !important;
  background: rgba(15,17,23,.34) !important;
  color: rgba(245,247,251,.72) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
}

.build-card-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  margin: 0 !important;
}

.build-card-actions .btn {
  width: 100% !important;
  min-height: 46px !important;
  height: 46px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
}

.build-card-actions .btn-primary::after {
  content: none !important;
}

.build-card-perks {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 !important;
}

.build-card-perks span {
  min-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 8px !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 8px !important;
  background: rgba(15,17,23,.26) !important;
  color: rgba(245,247,251,.70) !important;
  font-size: 11px !important;
  font-weight: 820 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.build-assurance-row {
  width: min(920px, 100%) !important;
  margin: 38px auto 0 !important;
  padding-top: 26px !important;
  border-top: 1px solid rgba(255,255,255,.075) !important;
  gap: clamp(18px, 4vw, 52px) !important;
}

.build-assurance-item {
  grid-template-columns: 38px 1fr !important;
  gap: 12px !important;
  align-items: center !important;
}

.build-assurance-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: rgba(139,92,246,.09) !important;
  border-color: rgba(183,156,255,.22) !important;
  color: #a78bfa !important;
  font-size: 16px !important;
}

.build-assurance-item strong {
  font-size: 16px !important;
}

.build-assurance-item p {
  margin-top: 3px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

@media (max-width: 1050px) {
  .featured-builds-section > .shell {
    width: min(900px, calc(100% - 36px)) !important;
  }

  .build-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .featured-builds-section {
    padding: 58px 0 70px !important;
  }

  .featured-builds-section > .shell {
    width: min(100% - 28px, 520px) !important;
  }

  .featured-builds-head h2 {
    font-size: clamp(40px, 12vw, 56px) !important;
  }

  .build-card-grid,
  .build-assurance-row {
    grid-template-columns: 1fr !important;
  }

  .build-card-media,
  .build-card-media > img {
    height: 218px !important;
    min-height: 218px !important;
    max-height: 218px !important;
  }

  .build-card-title-row {
    min-height: 0 !important;
  }

  .build-card-bottom {
    display: grid !important;
    gap: 10px !important;
  }

  .build-card-bottom p {
    justify-self: start !important;
  }

  .build-card-perks {
    grid-template-columns: 1fr !important;
  }
}

/* Featured build cards - reference recreation */
.featured-builds-section .build-card-grid {
  gap: 22px !important;
}

.featured-builds-section .build-card {
  overflow: hidden !important;
  border: 1px solid rgba(180,190,210,.28) !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, rgba(29,35,48,.96), rgba(18,24,36,.98)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 18px 52px rgba(0,0,0,.22) !important;
  transform: none !important;
}

.featured-builds-section .build-card-featured {
  border-color: rgba(180,190,210,.28) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 18px 52px rgba(0,0,0,.22) !important;
}

.featured-builds-section .build-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 22px 60px rgba(0,0,0,.32) !important;
}

.featured-builds-section .build-card-shell {
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.featured-builds-section .build-card-media {
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
  overflow: hidden !important;
  border-bottom: 0 !important;
  background: #121722 !important;
}

.featured-builds-section .build-card-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(3,7,18,.02) 0%, rgba(3,7,18,.08) 48%, rgba(13,17,26,.46) 100%) !important;
}

.featured-builds-section .build-card-media > img {
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: brightness(.82) saturate(1.02) contrast(1.04) !important;
  transition: transform .2s ease, filter .2s ease !important;
}

.featured-builds-section .build-card:hover .build-card-media > img {
  transform: scale(1.025) !important;
  filter: brightness(.90) saturate(1.05) contrast(1.04) !important;
}

.featured-builds-section .build-card-tag {
  top: 22px !important;
  left: 22px !important;
  z-index: 4 !important;
  min-height: 32px !important;
  padding: 0 13px !important;
  border: 1px solid rgba(196,181,253,.58) !important;
  border-radius: 9px !important;
  background: rgba(17,24,39,.82) !important;
  color: #f5f3ff !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  box-shadow: 0 0 0 3px rgba(139,92,246,.10) !important;
}

.featured-builds-section .build-card-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 24px 26px 22px !important;
  background: linear-gradient(180deg, rgba(19,24,35,.96), rgba(11,15,23,.98)) !important;
}

.featured-builds-section .build-card-title-row {
  min-height: 72px !important;
  margin: 0 !important;
}

.featured-builds-section .build-card-title-row h3 {
  margin: 0 !important;
  color: #f5f7fb !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  font-weight: 850 !important;
}

.featured-builds-section .build-card-title-row p {
  margin: 9px 0 0 !important;
  color: rgba(245,247,251,.68) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.featured-builds-section .build-spec-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 17px 0 16px !important;
  border: solid rgba(255,255,255,.10) !important;
  border-width: 1px 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.featured-builds-section .build-spec-grid div {
  min-height: 28px !important;
  display: grid !important;
  grid-template-columns: 20px 92px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 11px !important;
  padding: 0 !important;
  background: transparent !important;
}

.featured-builds-section .build-spec-grid div + div {
  margin-top: 9px !important;
}

.featured-builds-section .build-spec-grid .build-spec-icon {
  order: 0 !important;
  width: 18px !important;
  height: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.featured-builds-section .build-spec-grid .build-spec-icon img {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  filter: invert(67%) sepia(34%) saturate(2288%) hue-rotate(218deg) brightness(103%) contrast(101%) !important;
}

.featured-builds-section .build-spec-grid span:not(.build-spec-icon) {
  order: 0 !important;
  margin: 0 !important;
  color: #c4b5fd !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.featured-builds-section .build-spec-grid strong {
  display: block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  color: rgba(245,247,251,.88) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 760 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.featured-builds-section .build-card-bottom {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 18px 0 16px !important;
}

.featured-builds-section .build-card-bottom span {
  margin: 0 0 5px !important;
  color: rgba(245,247,251,.66) !important;
  font-size: 13px !important;
  font-weight: 620 !important;
}

.featured-builds-section .build-card-bottom strong {
  color: #f8fafc !important;
  font-size: clamp(34px, 2.4vw, 41px) !important;
  line-height: .94 !important;
  letter-spacing: 0 !important;
  font-weight: 840 !important;
}

.featured-builds-section .build-card-bottom p {
  min-height: auto !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(245,247,251,.66) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  white-space: nowrap !important;
}

.featured-builds-section .build-card-actions {
  display: block !important;
  margin: 0 0 18px !important;
}

.featured-builds-section .build-card-actions .btn {
  width: 100% !important;
  min-height: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: linear-gradient(180deg, #8b5cf6, #6d28d9) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
}

.featured-builds-section .build-card-actions .btn span:last-child {
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #fff !important;
  font-size: 25px !important;
  line-height: 1 !important;
  font-weight: 300 !important;
  pointer-events: none !important;
}

.featured-builds-section .build-card-perks {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 !important;
}

.featured-builds-section .build-card-perks span {
  min-height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 0 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(245,247,251,.62) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.featured-builds-section .build-card-perks span:last-child {
  border-right: 0 !important;
}

.featured-builds-section .build-card-perks span::before {
  content: "" !important;
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  opacity: .9 !important;
  background: currentColor !important;
  -webkit-mask: var(--perk-icon) center / contain no-repeat !important;
  mask: var(--perk-icon) center / contain no-repeat !important;
}

.featured-builds-section .build-perk-delivery {
  --perk-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3 7h11v9H3zM14 10h4l3 3v3h-7zM7 18.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4zM18 18.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4z'/%3E%3C/svg%3E") !important;
}

.featured-builds-section .build-perk-finance {
  --perk-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='12' r='2.5' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M12 4v3M12 17v3M4 12h3M17 12h3' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

.featured-builds-section .build-perk-uk {
  --perk-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v18M3 12h18M5 5l14 14M19 5 5 19' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

@media (max-width: 720px) {
  .featured-builds-section .build-card-media,
  .featured-builds-section .build-card-media > img {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }

  .featured-builds-section .build-card-body {
    padding: 22px !important;
  }

  .featured-builds-section .build-spec-grid div {
    grid-template-columns: 20px 78px minmax(0, 1fr) !important;
  }

  .featured-builds-section .build-card-bottom {
    grid-template-columns: 1fr !important;
  }

  .featured-builds-section .build-card-bottom p {
    justify-self: start !important;
  }

  .featured-builds-section .build-card-perks {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .featured-builds-section .build-card-perks span {
    justify-content: flex-start !important;
    border-right: 0 !important;
    padding: 0 !important;
  }
}

/* Homepage featured builds: reference section recreation */
body.home .featured-builds-section {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(58px, 5vw, 74px) 0 clamp(64px, 6vw, 88px) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, .20), transparent 28rem),
    linear-gradient(180deg, #0c111b 0%, #0b1019 46%, #080c14 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, .08) !important;
}

body.home .featured-builds-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(139, 92, 246, .08), transparent 22%, transparent 78%, rgba(139, 92, 246, .06)),
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 30%) !important;
}

body.home .featured-builds-section > .shell {
  position: relative !important;
  z-index: 1 !important;
  width: min(1280px, calc(100% - 48px)) !important;
  max-width: 1280px !important;
}

body.home .featured-builds-head {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin: 0 0 24px !important;
}

body.home .featured-builds-head .eyebrow {
  margin: 0 0 8px !important;
  color: #b78cff !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}

body.home .featured-builds-head h2 {
  max-width: none !important;
  margin: 0 !important;
  color: #f8fafc !important;
  font-size: clamp(32px, 3vw, 42px) !important;
  font-weight: 840 !important;
  line-height: 1.03 !important;
  letter-spacing: -.045em !important;
}

body.home .featured-builds-view-all {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(167, 139, 250, .32) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .035) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04) !important;
}

body.home .featured-builds-view-all:hover,
body.home .featured-builds-view-all:focus-visible {
  border-color: rgba(190, 166, 255, .58) !important;
  background: rgba(139, 92, 246, .14) !important;
}

body.home .featured-builds-section .build-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  margin: 0 !important;
}

body.home .featured-builds-section .build-card {
  min-width: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 9px !important;
  background: linear-gradient(180deg, rgba(18, 25, 38, .96), rgba(10, 15, 25, .98)) !important;
  box-shadow: none !important;
}

body.home .featured-builds-section .build-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(167, 139, 250, .36) !important;
}

body.home .featured-builds-section .build-card-shell {
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  background: transparent !important;
}

body.home .featured-builds-section .build-card-media,
body.home .featured-builds-section .build-card-media > img {
  height: 168px !important;
  min-height: 168px !important;
  max-height: 168px !important;
}

body.home .featured-builds-section .build-card-media {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  border: 0 !important;
  background: #111827 !important;
}

body.home .featured-builds-section .build-card-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(4, 7, 13, .06), rgba(7, 10, 18, .42)) !important;
}

body.home .featured-builds-section .build-card-media > img {
  width: 100% !important;
  min-width: 0 !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: brightness(.82) saturate(1.02) contrast(1.04) !important;
  opacity: 1 !important;
  transition: transform 220ms ease, filter 220ms ease !important;
}

body.home .featured-builds-section .build-card:hover .build-card-media > img {
  transform: scale(1.025) !important;
  filter: brightness(.92) saturate(1.06) contrast(1.04) !important;
}

body.home .featured-builds-section .build-card-tag {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 4 !important;
  min-height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 12px !important;
  border: 1px solid rgba(167, 139, 250, .48) !important;
  border-radius: 6px !important;
  background: rgba(8, 12, 22, .82) !important;
  color: #f8f5ff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

body.home .featured-builds-section .build-card-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 18px 20px 17px !important;
  background: linear-gradient(180deg, rgba(13, 19, 31, .98), rgba(8, 13, 22, .98)) !important;
}

body.home .featured-builds-section .build-card-title-row {
  min-height: 78px !important;
  margin: 0 !important;
}

body.home .featured-builds-section .build-card-title-row h3 {
  margin: 0 !important;
  color: #f8fafc !important;
  font-size: 22px !important;
  font-weight: 840 !important;
  line-height: 1.1 !important;
  letter-spacing: -.02em !important;
}

body.home .featured-builds-section .build-card-title-row p {
  margin: 8px 0 0 !important;
  color: rgba(248, 250, 252, .66) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

body.home .featured-builds-section .build-spec-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 4px 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.home .featured-builds-section .build-spec-grid div {
  min-height: 21px !important;
  display: grid !important;
  grid-template-columns: 18px 78px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 0 !important;
}

body.home .featured-builds-section .build-spec-grid .build-spec-icon,
body.home .featured-builds-section .build-spec-grid .build-spec-icon img {
  width: 14px !important;
  height: 14px !important;
}

body.home .featured-builds-section .build-spec-grid .build-spec-icon img {
  display: block !important;
  filter: invert(58%) sepia(74%) saturate(1037%) hue-rotate(222deg) brightness(103%) contrast(101%) !important;
}

body.home .featured-builds-section .build-spec-grid span:not(.build-spec-icon) {
  color: #c4b5fd !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.home .featured-builds-section .build-spec-grid strong {
  min-width: 0 !important;
  overflow: hidden !important;
  color: rgba(248, 250, 252, .88) !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  line-height: 1.25 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.home .featured-builds-section .build-card-bottom {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 14px !important;
  margin: auto 0 0 !important;
  padding: 0 !important;
}

body.home .featured-builds-section .build-card-bottom span {
  display: block !important;
  margin: 0 0 3px !important;
  color: rgba(248, 250, 252, .64) !important;
  font-size: 12px !important;
  font-weight: 680 !important;
}

body.home .featured-builds-section .build-card-bottom strong {
  color: #fff !important;
  font-size: clamp(27px, 2.1vw, 34px) !important;
  line-height: .96 !important;
  font-weight: 820 !important;
  letter-spacing: -.03em !important;
}

body.home .featured-builds-section .build-card-bottom p {
  margin: 0 0 4px !important;
  color: rgba(248, 250, 252, .62) !important;
  font-size: 12px !important;
  font-weight: 680 !important;
  white-space: nowrap !important;
}

body.home .featured-builds-section .build-card-actions {
  margin: 0 !important;
}

body.home .featured-builds-section .build-card-actions .btn {
  width: auto !important;
  min-height: 42px !important;
  height: 42px !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: linear-gradient(180deg, #8b5cf6, #6d28d9) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  box-shadow: none !important;
}

body.home .featured-builds-section .build-card-actions .btn span:last-child {
  position: static !important;
  transform: none !important;
  margin-left: 7px !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

body.home .featured-builds-section .build-card-perks {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

body.home .featured-builds-section .build-card-perks span {
  min-width: 0 !important;
  max-width: 100% !important;
  display: inline-flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0 !important;
  color: rgba(248, 250, 252, .62) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}

body.home .build-assurance-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 22px 0 !important;
  border: 1px solid rgba(255, 255, 255, .10) !important;
  border-radius: 10px !important;
  background: rgba(9, 14, 24, .72) !important;
}

body.home .build-assurance-item {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 0 26px !important;
  border-right: 1px solid rgba(255, 255, 255, .08) !important;
  background: transparent !important;
}

body.home .build-assurance-item:last-child {
  border-right: 0 !important;
}

body.home .build-assurance-icon {
  width: 54px !important;
  height: 54px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: rgba(139, 92, 246, .10) !important;
  color: #a855f7 !important;
  box-shadow: none !important;
}

body.home .build-assurance-icon svg {
  width: 31px !important;
  height: 31px !important;
}

body.home .build-assurance-item strong {
  display: block !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 820 !important;
  line-height: 1.22 !important;
}

body.home .build-assurance-item p {
  margin: 7px 0 0 !important;
  color: rgba(248, 250, 252, .62) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

@media (max-width: 1180px) {
  body.home .featured-builds-section .build-card-grid,
  body.home .build-assurance-row {
    grid-template-columns: 1fr 1fr !important;
  }

    body.home .build-assurance-item:nth-child(2) {
    border-right: 0 !important;
  }

  body.home .build-assurance-item:nth-child(-n+2) {
    padding-bottom: 22px !important;
  }
}

@media (max-width: 760px) {
  body.home .featured-builds-section {
    padding: 44px 0 58px !important;
  }

  body.home .featured-builds-section > .shell {
    width: min(100% - 28px, 1280px) !important;
  }

  body.home .featured-builds-head {
    display: grid !important;
    gap: 18px !important;
  }

  body.home .featured-builds-view-all {
    width: 100% !important;
  }

  body.home .featured-builds-section .build-card-grid,
  body.home .build-assurance-row {
    grid-template-columns: 1fr !important;
  }

  body.home .featured-builds-section .build-card-media,
  body.home .featured-builds-section .build-card-media > img {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
  }

  body.home .featured-builds-section .build-card-bottom {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.home .featured-builds-section .build-card-actions .btn {
    width: 100% !important;
  }

  body.home .featured-builds-section .build-card-perks {
    grid-template-columns: 1fr !important;
  }

    body.home .build-assurance-row {
    padding: 0 !important;
  }

  body.home .build-assurance-item {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    padding: 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }

  body.home .build-assurance-item:last-child {
    border-bottom: 0 !important;
  }
}

/* Homepage hero: immersive full-background banner */
body.home .hero {
  min-height: clamp(700px, 76vh, 800px) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  overflow: hidden !important;
  isolation: isolate !important;
  border: 0 !important;
  background-color: #05070f !important;
}

body.home .hero::before,
body.home .hero::after {
  content: none !important;
}

body.home .hero-shell {
  min-height: inherit !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
}

body.home .hero-copy {
  width: min(550px, 100%) !important;
  max-width: 550px !important;
  padding: clamp(54px, 8vw, 96px) 0 !important;
}

body.home .hero .eyebrow {
  margin: 0 0 18px !important;
  color: #b78cff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: .17em !important;
  text-transform: uppercase !important;
}

body.home .hero h1 {
  max-width: 550px !important;
  margin: 0 !important;
  color: #f8f7ff !important;
  font-size: clamp(58px, 5.3vw, 84px) !important;
  font-weight: 850 !important;
  line-height: .95 !important;
  letter-spacing: -.055em !important;
}

body.home .hero h1 span {
  display: block !important;
  color: #8b5cf6 !important;
}

body.home .hero-kicker {
  max-width: 520px !important;
  margin: 24px 0 0 !important;
  color: rgba(248, 247, 255, .82) !important;
  font-size: clamp(17px, 1.15vw, 20px) !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
}

body.home .hero-actions-main {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 34px !important;
}

body.home .hero .btn {
  min-height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 0 28px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.home .hero .btn svg {
  width: 19px !important;
  height: 19px !important;
  flex: 0 0 19px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.home .hero .btn-primary {
  border-color: rgba(166, 122, 255, .56) !important;
  background: linear-gradient(135deg, #9a5cff 0%, #6d28d9 100%) !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.home .hero .btn-ghost {
  border-color: rgba(166, 122, 255, .42) !important;
  background: rgba(7, 9, 16, .46) !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.home .hero .btn-primary:hover,
body.home .hero .btn-primary:focus-visible,
body.home .hero .btn-ghost:hover,
body.home .hero .btn-ghost:focus-visible {
  transform: translateY(-1px) !important;
}

body.home .hero .conversion-strip {
  width: min(760px, 72vw) !important;
  max-width: 760px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 68px !important;
  color: rgba(248, 247, 255, .84) !important;
}

body.home .hero .conversion-strip span {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  column-gap: 10px !important;
  row-gap: 2px !important;
  align-items: start !important;
}

body.home .hero .conversion-strip svg {
  grid-row: 1 / span 2 !important;
  width: 23px !important;
  height: 23px !important;
  fill: none !important;
  stroke: #a974ff !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.home .hero .conversion-strip strong,
body.home .hero .conversion-strip small {
  display: block !important;
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
}

body.home .hero .conversion-strip strong {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 880 !important;
  line-height: 1.2 !important;
}

body.home .hero .conversion-strip small {
  color: rgba(248, 247, 255, .64) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
}

@media (max-width: 1100px) {
  body.home .hero {
    min-height: 680px !important;
    background-position: center center !important;
  }

  body.home .hero .conversion-strip {
    width: min(620px, 82vw) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 46px !important;
  }
}

@media (max-width: 760px) {
  body.home .hero {
    min-height: 720px !important;
    background-color: #05070f !important;
  }

  body.home .hero-copy {
    padding: 44px 0 !important;
  }

  body.home .hero h1 {
    font-size: clamp(44px, 13.5vw, 66px) !important;
    line-height: .98 !important;
  }

  body.home .hero-kicker {
    max-width: 100% !important;
    font-size: 16px !important;
  }

  body.home .hero-actions-main {
    flex-direction: column !important;
    align-items: stretch !important;
    margin-top: 28px !important;
  }

  body.home .hero .btn {
    width: 100% !important;
    min-height: 52px !important;
  }

  body.home .hero .conversion-strip {
    width: 100% !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 12px !important;
    margin-top: 34px !important;
  }
}

@media (max-width: 420px) {
  body.home .hero {
    min-height: 760px !important;
  }

  body.home .hero .conversion-strip {
    grid-template-columns: 1fr !important;
  }
}

/* Homepage hero image layer. Use a 3840x1600+ WebP/JPG for sharp ultrawide rendering. */
body.home .hero {
  --rp-home-hero-image: url("../images/home/pc-background.webp");
  background-color: #05070f !important;
  background-image: var(--rp-home-hero-image) !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

body.home .hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 15, .88) 0%,
      rgba(5, 7, 15, .70) 45%,
      rgba(5, 7, 15, .25) 100%
    ) !important;
}

body.home .hero::after {
  content: none !important;
}

@media (min-width: 2000px) {
  body.home .hero {
    background-size: 88% auto !important;
    background-position: center right !important;
  }
}

@media (min-width: 2200px) {
  body.home .hero {
    background-size: 82% auto !important;
  }
}

@media (max-width: 760px) {
  body.home .hero {
    background-image: var(--rp-home-hero-image) !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
  }

  body.home .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 15, .90) 0%,
        rgba(5, 7, 15, .76) 55%,
        rgba(5, 7, 15, .42) 100%
      ) !important;
  }
}

/* Homepage hero-to-builds flow bridge */
body.home .hero {
  position: relative !important;
}

body.home .hero-shell {
  position: relative !important;
  z-index: 2 !important;
}

body.home .hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
  height: clamp(170px, 20vh, 260px) !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 15, 0) 0%,
      rgba(7, 10, 18, .44) 46%,
      rgba(10, 15, 25, .98) 100%
    ) !important;
}

body.home .featured-builds-section {
  margin-top: -24px !important;
  padding: clamp(38px, 3.6vw, 52px) 0 clamp(64px, 6vw, 88px) !important;
  border-top: 0 !important;
  background: linear-gradient(180deg, #0a0f19 0%, #090e17 44%, #080c14 100%) !important;
}

body.home .featured-builds-section::before {
  background: linear-gradient(180deg, rgba(10, 15, 25, .24) 0%, rgba(10, 15, 25, 0) 28%) !important;
}

body.home .featured-builds-head {
  align-items: end !important;
  margin-bottom: 18px !important;
}

body.home .featured-builds-title-block {
  text-align: left !important;
}

body.home .featured-builds-head .eyebrow,
body.home .featured-builds-head h2 {
  text-align: left !important;
}

body.home .featured-builds-head .eyebrow {
  margin-bottom: 9px !important;
}

body.home .featured-builds-head h2 {
  font-size: clamp(31px, 2.65vw, 40px) !important;
}

body.home .featured-builds-section .build-card {
  background: linear-gradient(180deg, rgba(18, 24, 37, .92), rgba(9, 14, 24, .96)) !important;
}

body.home .featured-builds-section .build-card-body {
  background: linear-gradient(180deg, rgba(11, 17, 29, .96), rgba(7, 12, 21, .98)) !important;
}

body.home .featured-builds-head {
  display: block !important;
  margin: 0 0 22px !important;
  text-align: center !important;
}

body.home .featured-builds-title-block,
body.home .featured-builds-head h2 {
  text-align: center !important;
}

body.home .featured-builds-head h2 {
  max-width: 820px !important;
  margin: 0 auto !important;
}

body.home .featured-builds-footer {
  display: flex !important;
  justify-content: center !important;
  margin: 22px 0 18px !important;
}

body.home .featured-builds-footer .featured-builds-view-all {
  min-width: 180px !important;
}

body.home .performance-section {
  padding: clamp(72px, 6vw, 96px) 0 clamp(86px, 7vw, 116px) !important;
  border-top: 0 !important;
  background: linear-gradient(180deg, #080c14 0%, #0a0f19 42%, #080c14 100%) !important;
}

body.home .performance-showcase {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: minmax(285px, 1fr) 160px !important;
  gap: 20px !important;
}

body.home .performance-tile {
  min-width: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 9px !important;
  background: linear-gradient(180deg, rgba(18, 24, 37, .92), rgba(9, 14, 24, .96)) !important;
  box-shadow: none !important;
  transform: none !important;
}

body.home .performance-tile:hover,
body.home .performance-tile:focus-visible {
  transform: translateY(-2px) !important;
  border-color: rgba(167, 139, 250, .42) !important;
}

body.home .performance-tile img {
  filter: brightness(.72) saturate(.96) contrast(1.04) !important;
  transform: scale(1.01) !important;
}

body.home .performance-tile:hover img,
body.home .performance-tile:focus-visible img {
  filter: brightness(.82) saturate(1.02) contrast(1.05) !important;
  transform: scale(1.035) !important;
}

body.home .performance-tile .tile-shade {
  background:
    linear-gradient(180deg, rgba(4, 7, 13, .42), rgba(4, 7, 13, .22) 42%, rgba(4, 7, 13, .78)),
    linear-gradient(90deg, rgba(4, 7, 13, .58), rgba(4, 7, 13, .18) 62%) !important;
}

body.home .performance-tile-content {
  padding: clamp(24px, 2vw, 34px) !important;
  gap: 14px !important;
}

body.home .performance-tile-content h2 {
  max-width: 520px !important;
  color: #fff !important;
  font-size: clamp(34px, 3vw, 52px) !important;
  line-height: .95 !important;
  letter-spacing: -.055em !important;
}

body.home .performance-tile-small .performance-tile-content h2 {
  font-size: clamp(30px, 2.4vw, 42px) !important;
}

body.home .performance-tile-content p {
  max-width: 430px !important;
  color: rgba(248, 250, 252, .78) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

body.home .performance-tile-cta {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 4px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(167, 139, 250, .36) !important;
  border-radius: 7px !important;
  background: rgba(8, 13, 23, .56) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.home .performance-tile-cta span {
  margin: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.home .performance-tile:hover .performance-tile-cta,
body.home .performance-tile:focus-visible .performance-tile-cta {
  border-color: rgba(255, 255, 255, .24) !important;
  background: #8b5cf6 !important;
}

body.home .performance-tile-custom {
  min-height: 160px !important;
  border-color: rgba(167, 139, 250, .44) !important;
  background: #6d28d9 !important;
}

body.home .performance-tile-custom::before {
  content: none !important;
}

body.home .performance-tile-custom .performance-tile-content {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 24px !important;
  padding: 28px 34px !important;
  text-align: left !important;
}

body.home .performance-tile-custom .performance-tile-content h2,
body.home .performance-tile-custom .performance-tile-content p {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

body.home .performance-tile-custom .performance-tile-content h2 {
  grid-column: 1 !important;
  grid-row: 1 !important;
  font-size: clamp(30px, 2.6vw, 42px) !important;
}

body.home .performance-tile-custom .performance-tile-content p {
  grid-column: 1 !important;
  grid-row: 2 !important;
  max-width: 680px !important;
  color: rgba(255, 255, 255, .84) !important;
}

body.home .performance-tile-custom .performance-tile-cta {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  justify-self: end !important;
  min-width: 250px !important;
  margin-top: 0 !important;
  border-color: rgba(255, 255, 255, .26) !important;
  background: #8b5cf6 !important;
}

body.home .build-assurance-row {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  justify-self: stretch !important;
}

body.home .build-assurance-row {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-color: rgba(255, 255, 255, .12) !important;
  background: linear-gradient(180deg, rgba(13, 19, 31, .84), rgba(7, 12, 21, .92)) !important;
  box-shadow: none !important;
}

body.home .build-assurance-item {
  grid-template-columns: 46px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
  min-height: 118px !important;
  padding: 22px 26px !important;
}

body.home .build-assurance-icon {
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(168, 85, 247, .36) !important;
  background: rgba(168, 85, 247, .08) !important;
  box-shadow: none !important;
}

body.home .build-assurance-icon svg {
  width: 24px !important;
  height: 24px !important;
}

body.home .build-assurance-icon svg path,
body.home .build-assurance-icon svg circle,
body.home .build-assurance-icon svg line,
body.home .build-assurance-icon svg polyline,
body.home .build-assurance-icon svg polygon,
body.home .hero .conversion-strip svg path,
body.home .hero .conversion-strip svg circle,
body.home .hero .conversion-strip svg line,
body.home .hero .conversion-strip svg polyline,
body.home .hero .conversion-strip svg polygon {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.home .build-assurance-item strong {
  max-width: 150px !important;
}

body.home .build-assurance-item p {
  max-width: 190px !important;
}

@media (max-width: 1180px) {
  body.home .performance-showcase {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }

  body.home .performance-tile,
  body.home .performance-tile-large,
  body.home .performance-tile-small {
    min-height: 300px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  body.home .performance-tile-wide {
    grid-column: 1 / -1 !important;
  }

  body.home .performance-tile-custom .performance-tile-content {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

    body.home .build-assurance-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home .build-assurance-item:nth-child(2) {
    border-right: 0 !important;
  }

  body.home .build-assurance-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }
}

@media (max-width: 760px) {
  body.home .hero::after {
    height: 180px !important;
  }

  body.home .featured-builds-section {
    margin-top: -14px !important;
    padding-top: 38px !important;
  }

  body.home .performance-section {
    padding: 56px 0 72px !important;
  }

  body.home .performance-showcase {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.home .performance-tile,
  body.home .performance-tile-large,
  body.home .performance-tile-small {
    min-height: 280px !important;
  }

  body.home .performance-tile-content h2,
  body.home .performance-tile-small .performance-tile-content h2 {
    font-size: clamp(31px, 9vw, 42px) !important;
  }

  body.home .performance-tile-custom {
    min-height: auto !important;
  }

  body.home .performance-tile-custom .performance-tile-content {
    grid-template-columns: 1fr !important;
    padding: 24px 22px !important;
  }

  body.home .performance-tile-custom .performance-tile-cta,
  body.home .performance-tile-cta {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
  }

    body.home .build-assurance-row {
    grid-template-columns: 1fr !important;
  }

  body.home .build-assurance-item {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    min-height: auto !important;
    padding: 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }

  body.home .build-assurance-item:last-child {
    border-bottom: 0 !important;
  }
}

/* Homepage combined trust and expert section */
body.home .respawn-why-combo-section {
  padding: clamp(42px, 4.3vw, 66px) 0 clamp(60px, 5vw, 86px) !important;
  border-top: 0 !important;
  background: #080c14 !important;
}

body.home .respawn-why-combo-section > .shell {
  width: min(1640px, calc(100% - 64px)) !important;
  max-width: 1640px !important;
}

body.home .respawn-why-combo-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(370px, .94fr) minmax(560px, 1.46fr) minmax(370px, .94fr) !important;
  min-height: 560px !important;
  overflow: hidden !important;
  border: 1px solid rgba(148, 163, 184, .14) !important;
  border-radius: 12px !important;
  background: #111522 !important;
  box-shadow: none !important;
}

body.home .respawn-why-combo-card::before {
  content: none !important;
}

body.home .respawn-why-combo-panel {
  position: relative !important;
  z-index: 3 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(38px, 3.5vw, 64px) !important;
}

body.home .respawn-why-combo-panel--trust {
  border-right: 0 !important;
}

body.home .respawn-why-combo-panel--expert {
  border-left: 0 !important;
}

body.home .respawn-why-combo-panel .eyebrow {
  margin: 0 0 18px !important;
  color: #b78cff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: .18em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.home .respawn-why-combo-panel h2 {
  max-width: 430px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(34px, 2.7vw, 46px) !important;
  font-weight: 850 !important;
  letter-spacing: -.055em !important;
  line-height: .98 !important;
}

body.home .respawn-why-combo-panel p:not(.eyebrow) {
  max-width: 430px !important;
  margin: 22px 0 0 !important;
  color: rgba(248, 250, 252, .72) !important;
  font-size: 16px !important;
  font-weight: 560 !important;
  line-height: 1.55 !important;
}

body.home .respawn-combo-list {
  display: grid !important;
  gap: 14px !important;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.home .respawn-combo-list li {
  position: relative !important;
  min-height: 24px !important;
  padding-left: 32px !important;
  color: rgba(248, 250, 252, .78) !important;
  font-size: 15px !important;
  font-weight: 720 !important;
  line-height: 1.45 !important;
}

body.home .respawn-combo-list li::before {
  content: "->" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #b78cff !important;
  font-weight: 950 !important;
}

body.home .respawn-combo-button {
  min-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 0 24px !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.home .respawn-why-combo-panel--trust > .respawn-combo-button {
  align-self: flex-start !important;
  margin-top: 30px !important;
}

body.home .respawn-combo-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 30px !important;
}

body.home .respawn-combo-button--primary {
  border: 1px solid rgba(166, 122, 255, .56) !important;
  background: #8b5cf6 !important;
}

body.home .respawn-combo-button--ghost {
  border: 1px solid rgba(255, 255, 255, .14) !important;
  background: rgba(8, 13, 23, .42) !important;
}

body.home .respawn-combo-button:hover,
body.home .respawn-combo-button:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(255, 255, 255, .28) !important;
}

body.home .respawn-why-combo-media {
  position: relative !important;
  z-index: 2 !important;
  min-height: 100% !important;
  overflow: hidden !important;
  background: transparent !important;
  margin-inline: -44px !important;
}

body.home .respawn-why-combo-media::before {
  content: none !important;
}

body.home .respawn-why-combo-media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 560px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: 18% center !important;
  filter: brightness(.96) saturate(1.06) contrast(1.04) !important;
}

@media (max-width: 1180px) {
  body.home .respawn-why-combo-card {
    grid-template-columns: 1fr 1fr !important;
  }

  body.home .respawn-why-combo-media {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    min-height: 320px !important;
    margin-inline: 0 !important;
  }

  body.home .respawn-why-combo-media img {
    min-height: 320px !important;
  }

  body.home .respawn-why-combo-panel--trust {
    border-right: 0 !important;
  }

  body.home .respawn-why-combo-panel--expert {
    border-left: 0 !important;
  }
}

@media (max-width: 760px) {
  body.home .respawn-why-combo-section {
    padding: 52px 0 74px !important;
  }

  body.home .respawn-why-combo-section > .shell {
    width: min(100% - 28px, 1380px) !important;
  }

  body.home .respawn-why-combo-card {
    grid-template-columns: 1fr !important;
  }

  body.home .respawn-why-combo-panel {
    padding: 26px 22px !important;
  }

  body.home .respawn-why-combo-panel--trust,
  body.home .respawn-why-combo-panel--expert {
    border-left: 0 !important;
    border-right: 0 !important;
  }

  body.home .respawn-why-combo-panel--trust {
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }

  body.home .respawn-why-combo-media {
    grid-row: auto !important;
    min-height: 250px !important;
  }

  body.home .respawn-why-combo-media img {
    min-height: 250px !important;
  }

  body.home .respawn-why-combo-panel h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  body.home .respawn-combo-actions,
  body.home .respawn-combo-button,
  body.home .respawn-why-combo-panel--trust > .respawn-combo-button {
    width: 100% !important;
  }
}

/* ---------------------------------------------------------

/* Homepage featured builds: slightly lighter card pass. */
.featured-builds-section .build-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(147, 96, 255, .16), transparent 38%),
    linear-gradient(180deg, rgba(31, 36, 49, .98), rgba(18, 23, 34, .98)) !important;
  border-color: rgba(255, 255, 255, .16) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28) !important;
}

.featured-builds-section .build-card-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
    rgba(18, 23, 34, .72) !important;
}

.featured-builds-section .build-card-media {
  background: #151b27 !important;
}

.featured-builds-section .build-card-media::before {
  background:
    linear-gradient(180deg, rgba(4, 7, 13, .10), rgba(8, 12, 20, .42)),
    radial-gradient(circle at 20% 0%, rgba(139, 92, 246, .14), transparent 42%) !important;
}

.featured-builds-section .build-card-media > img {
  filter: brightness(.92) saturate(1.04) contrast(1.02) !important;
  opacity: .98 !important;
}

.featured-builds-section .build-card-body {
  background:
    linear-gradient(180deg, rgba(19, 25, 36, .94), rgba(12, 17, 27, .96)) !important;
}

.featured-builds-section .build-spec-grid div,
.featured-builds-section .build-card-perks span {
  color: rgba(245, 247, 251, .78) !important;
}
