/* ── Compare page (GPU / CPU) ── */

.compare-page {
  padding: 32px 0 72px;
  position: relative;
}

.compare-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

.compare-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1120px);
  height: 1px;
  pointer-events: none;
}

.compare-page-gpu {
  background:
    radial-gradient(ellipse 90% 55% at 12% 0%, rgba(118, 185, 0, 0.09), transparent 52%),
    radial-gradient(ellipse 50% 40% at 88% 8%, rgba(118, 185, 0, 0.05), transparent 50%);
}

.compare-page-gpu::after {
  background: linear-gradient(90deg, transparent, rgba(118, 185, 0, 0.45), transparent);
}

.compare-page-cpu {
  background:
    radial-gradient(ellipse 90% 55% at 12% 0%, rgba(34, 211, 238, 0.08), transparent 52%),
    radial-gradient(ellipse 50% 40% at 88% 8%, rgba(34, 211, 238, 0.04), transparent 50%);
}

.compare-page-cpu::after {
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), transparent);
}

.compare-page .container {
  position: relative;
  z-index: 1;
}

.page-hero-compare {
  padding: 24px 0 32px;
}

.page-hero-compare .page-hero-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.page-hero-compare-gpu .page-hero-banner {
  background: linear-gradient(125deg, rgba(12, 18, 10, 0.98) 0%, rgba(8, 12, 22, 0.96) 48%, rgba(10, 14, 28, 0.98) 100%);
  border-color: rgba(118, 185, 0, 0.22);
}

.page-hero-compare-cpu .page-hero-banner {
  background: linear-gradient(125deg, rgba(8, 16, 22, 0.98) 0%, rgba(8, 12, 22, 0.96) 48%, rgba(10, 14, 28, 0.98) 100%);
  border-color: rgba(34, 211, 238, 0.22);
}

.page-hero-compare-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-compare-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.page-hero-compare-gpu .page-hero-compare-glow {
  top: -45%;
  left: -8%;
  background: rgba(118, 185, 0, 0.35);
}

.page-hero-compare-gpu .page-hero-compare-deco::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -4%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(118, 185, 0, 0.2);
  filter: blur(60px);
  pointer-events: none;
}

.page-hero-compare-cpu .page-hero-compare-glow {
  top: -40%;
  left: -5%;
  background: rgba(34, 211, 238, 0.32);
}

.page-hero-compare-cpu .page-hero-compare-deco::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -4%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.18);
  filter: blur(60px);
  pointer-events: none;
}

.page-hero-compare-ring {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
  opacity: 0.55;
}

.page-hero-compare-gpu .page-hero-compare-ring {
  box-shadow:
    0 0 0 24px rgba(118, 185, 0, 0.03),
    0 0 0 48px rgba(118, 185, 0, 0.02),
    inset 0 0 40px rgba(118, 185, 0, 0.06);
}

.page-hero-compare-cpu .page-hero-compare-ring {
  box-shadow:
    0 0 0 24px rgba(34, 211, 238, 0.03),
    0 0 0 48px rgba(34, 211, 238, 0.02),
    inset 0 0 40px rgba(34, 211, 238, 0.06);
}

.page-hero-compare-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(105deg, black 20%, transparent 72%);
}

.page-hero-compare .page-hero-main {
  position: relative;
  z-index: 1;
  flex: 1 1 320px;
  min-width: 0;
  max-width: calc(100% - 200px);
  padding: 28px 16px 28px 32px;
  gap: 16px;
}

.page-hero-compare-side {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  margin-left: auto;
  padding: 12px 28px 12px 0;
}

.page-hero-compare-visual {
  position: relative;
  width: 156px;
  height: 156px;
  margin: 0;
  display: grid;
  place-items: center;
}

.page-hero-compare-visual > * {
  place-self: center;
}

.page-hero-compare-visual-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  margin: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(22px);
  opacity: 0.85;
  animation: compare-visual-pulse 4s ease-in-out infinite;
}

.page-hero-compare-gpu .page-hero-compare-visual-glow {
  background: rgba(118, 185, 0, 0.45);
}

.page-hero-compare-cpu .page-hero-compare-visual-glow {
  background: rgba(34, 211, 238, 0.4);
}

.page-hero-compare-visual-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.page-hero-compare-visual-ring--outer {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  animation: compare-visual-spin 22s linear infinite;
}

.page-hero-compare-gpu .page-hero-compare-visual-ring--outer {
  border-color: rgba(118, 185, 0, 0.35);
}

.page-hero-compare-cpu .page-hero-compare-visual-ring--outer {
  border-color: rgba(34, 211, 238, 0.32);
}

.page-hero-compare-visual-ring--inner {
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: compare-visual-spin 14s linear infinite reverse;
}

.page-hero-compare-gpu .page-hero-compare-visual-ring--inner {
  box-shadow: inset 0 0 30px rgba(118, 185, 0, 0.12);
}

.page-hero-compare-cpu .page-hero-compare-visual-ring--inner {
  box-shadow: inset 0 0 30px rgba(34, 211, 238, 0.12);
}

.page-hero-compare-visual-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  margin: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    transparent 52%,
    rgba(255, 255, 255, 0.04) 58%,
    transparent 64%
  );
}

.page-hero-compare-visual-core {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.14), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.page-hero-compare-gpu .page-hero-compare-visual-core {
  box-shadow:
    0 0 40px rgba(118, 185, 0, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 0 20px rgba(118, 185, 0, 0.1);
}

.page-hero-compare-cpu .page-hero-compare-visual-core {
  box-shadow:
    0 0 40px rgba(34, 211, 238, 0.22),
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 0 20px rgba(34, 211, 238, 0.1);
}

.page-hero-compare-visual-mark {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
}

.page-hero-compare-gpu .page-hero-compare-visual-mark {
  width: 76px;
  height: auto;
}

.page-hero-compare-cpu .page-hero-compare-visual-mark {
  width: 68px;
  height: auto;
}

@keyframes compare-visual-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes compare-visual-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-compare-visual-ring--outer,
  .page-hero-compare-visual-ring--inner,
  .page-hero-compare-visual-glow {
    animation: none;
  }
}

.page-hero-compare-gpu .page-hero-eyebrow {
  color: #b8f070;
  border-color: rgba(118, 185, 0, 0.32);
  background: rgba(118, 185, 0, 0.12);
  box-shadow: 0 0 20px rgba(118, 185, 0, 0.08);
}

.page-hero-compare-cpu .page-hero-eyebrow {
  color: #7dd3fc;
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.08);
}

.page-hero-compare h1 {
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  margin: 0 0 8px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.page-hero-compare-gpu h1 em {
  color: #b8f070;
  font-style: normal;
  text-shadow: 0 0 32px rgba(118, 185, 0, 0.35);
}

.page-hero-compare-cpu h1 em {
  color: #67e8f9;
  font-style: normal;
  text-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
}

.page-hero-compare .page-hero-desc {
  margin: 0;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.page-hero-compare-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.page-hero-compare-perks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-compare-gpu .page-hero-compare-perks li {
  background: rgba(118, 185, 0, 0.06);
  border-color: rgba(118, 185, 0, 0.14);
}

.page-hero-compare-cpu .page-hero-compare-perks li {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.14);
}

.page-hero-compare-perk-icon {
  font-size: 0.55rem;
  opacity: 0.85;
}

.page-hero-compare-gpu .page-hero-compare-perk-icon {
  color: #b8f070;
}

.page-hero-compare-cpu .page-hero-compare-perk-icon {
  color: #67e8f9;
}

.page-hero-compare-copy {
  max-width: 52ch;
}

/* Picker panel */
.compare-picker-panel {
  position: relative;
  overflow: hidden;
  padding: 24px 28px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012) 45%, rgba(0, 0, 0, 0.22));
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.compare-picker-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.9;
}

.compare-page-gpu .compare-picker-panel {
  border-color: rgba(118, 185, 0, 0.22);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.28),
    0 0 48px rgba(118, 185, 0, 0.06),
    inset 0 1px 0 rgba(118, 185, 0, 0.12);
}

.compare-page-gpu .compare-picker-panel::before {
  background: linear-gradient(90deg, transparent, #76b900, rgba(118, 185, 0, 0.35), transparent);
}

.compare-page-cpu .compare-picker-panel {
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.28),
    0 0 48px rgba(34, 211, 238, 0.05),
    inset 0 1px 0 rgba(34, 211, 238, 0.1);
}

.compare-page-cpu .compare-picker-panel::before {
  background: linear-gradient(90deg, transparent, #22d3ee, rgba(34, 211, 238, 0.3), transparent);
}

.compare-picker-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.compare-picker-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  line-height: 1;
  color: #e8ffd0;
  background: rgba(118, 185, 0, 0.14);
  border: 1px solid rgba(118, 185, 0, 0.32);
  box-shadow: 0 6px 18px rgba(118, 185, 0, 0.15);
}

.compare-page-cpu .compare-picker-icon {
  color: #cffafe;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 6px 18px rgba(34, 211, 238, 0.12);
}

.compare-picker-head-copy {
  min-width: 0;
  padding-top: 2px;
}

.compare-picker-label {
  display: block;
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #f1f5f9;
}

.compare-picker-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.compare-page-form {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.compare-page-form .search-select-wrap {
  min-width: 0;
}

.compare-page-form .search-select-input {
  padding: 16px 18px 16px 44px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.compare-page-form .search-select-input:focus {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.compare-page-gpu .compare-page-form .search-select-input:focus {
  border-color: rgba(118, 185, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(118, 185, 0, 0.12);
}

.compare-page-cpu .compare-page-form .search-select-input:focus {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.compare-vs-pill {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.compare-page-gpu .compare-vs-pill {
  background: linear-gradient(145deg, #8fd400, #76b900 45%, #5c9200);
  box-shadow: 0 4px 22px rgba(118, 185, 0, 0.4);
}

.compare-page-cpu .compare-vs-pill {
  background: linear-gradient(145deg, #5eead4, #22d3ee 45%, #0891b2);
  box-shadow: 0 4px 22px rgba(34, 211, 238, 0.35);
}

.compare-page-gpu .compare-page-form .btn-primary {
  background: linear-gradient(145deg, #8fd400, #76b900);
  border-color: rgba(118, 185, 0, 0.5);
  box-shadow: 0 6px 22px rgba(118, 185, 0, 0.28);
}

.compare-page-gpu .compare-page-form .btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(118, 185, 0, 0.38);
}

.compare-page-cpu .compare-page-form .btn-primary {
  background: linear-gradient(145deg, #5eead4, #22d3ee);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 6px 22px rgba(34, 211, 238, 0.25);
}

.compare-page-cpu .compare-page-form .btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.35);
}

.compare-page-form .btn-primary {
  padding: 16px 28px;
  border-radius: 14px;
  white-space: nowrap;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-pick-hint {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.compare-page-gpu .compare-pick-hint {
  background: rgba(118, 185, 0, 0.08);
  border: 1px solid rgba(118, 185, 0, 0.2);
}

.compare-page-cpu .compare-pick-hint {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.compare-same-error {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.35) !important;
  color: #fecaca;
}

.compare-same-error p {
  margin: 0;
  font-weight: 600;
}

.summary-card.tie {
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.win-badge-tie {
  background: rgba(148, 163, 184, 0.15) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
}

/* Results */
.compare-results {
  margin-top: 40px;
}

.compare-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  margin: 0 0 36px;
  align-items: stretch;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 55%),
    linear-gradient(165deg, rgba(18, 24, 42, 0.95), rgba(8, 12, 22, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.compare-page .summary-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: visible;
}

.compare-page .summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 62%);
  transition: opacity 0.25s ease;
}

.compare-page .summary-card:hover {
  transform: translateY(-2px);
}

.compare-page .summary-card:hover::before {
  opacity: 1;
}

.summary-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.summary-card-title {
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.summary-card-foot {
  margin-top: auto;
  padding-top: 12px;
}

.compare-page-gpu .summary-card.winner {
  border-color: rgba(118, 185, 0, 0.45);
  box-shadow:
    0 0 0 1px rgba(118, 185, 0, 0.28),
    0 16px 40px rgba(118, 185, 0, 0.14),
    inset 0 1px 0 rgba(118, 185, 0, 0.12);
  background: linear-gradient(160deg, rgba(118, 185, 0, 0.1), rgba(255, 255, 255, 0.03));
}

.compare-page-cpu .summary-card.winner {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.28),
    0 16px 40px rgba(34, 211, 238, 0.12),
    inset 0 1px 0 rgba(34, 211, 238, 0.1);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.09), rgba(255, 255, 255, 0.03));
}

.summary-buy {
  position: relative;
  flex-shrink: 0;
  margin: 0;
}

.summary-buy-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 9px;
  border: 1px solid rgba(255, 153, 0, 0.28);
  background: rgba(255, 153, 0, 0.08);
  color: #ffad33;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.summary-buy-trigger:hover {
  color: #ffc966;
  border-color: rgba(255, 153, 0, 0.5);
  background: rgba(255, 153, 0, 0.16);
  box-shadow: 0 4px 14px rgba(255, 153, 0, 0.2);
}

.summary-buy.is-open .summary-buy-trigger {
  background: rgba(255, 153, 0, 0.22);
  border-color: rgba(255, 153, 0, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.15);
}

.summary-buy-chevron {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(12, 16, 28, 0.95);
  border: 1px solid rgba(255, 153, 0, 0.4);
}

.summary-buy-chevron::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 4px;
  height: 4px;
  border-right: 1.5px solid #ffad33;
  border-bottom: 1.5px solid #ffad33;
  transform: translate(-50%, -35%) rotate(45deg);
  transition: transform 0.2s ease;
}

.summary-buy.is-open .summary-buy-chevron::after {
  transform: translate(-50%, -15%) rotate(-135deg);
}

.summary-buy-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  min-width: 172px;
  padding: 5px;
  border-radius: 12px;
  background: rgba(14, 18, 30, 0.98);
  border: 1px solid rgba(255, 153, 0, 0.35);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  animation: summary-buy-panel-in 0.18s ease-out;
}

.summary-buy-panel[hidden] {
  display: none !important;
}

@keyframes summary-buy-panel-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.summary-buy-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #ffe8c2;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.summary-buy-link:hover {
  background: rgba(255, 153, 0, 0.14);
  color: #fff;
}

.summary-buy-link-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 153, 0, 0.18);
  border: 1px solid rgba(255, 153, 0, 0.4);
  color: #ffb84d;
  flex-shrink: 0;
  box-sizing: border-box;
}

.summary-buy-link-icon {
  display: block;
  flex-shrink: 0;
}

.summary-buy-link-text {
  flex: 1;
  line-height: 1.25;
}

.summary-buy-link-arrow {
  flex-shrink: 0;
  opacity: 0.65;
  color: currentColor;
}

.summary-buy-link:hover .summary-buy-link-arrow {
  opacity: 1;
}

.compare-affiliate-note {
  margin: 0 0 28px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.85);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-page .big-score {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin: 0 0 4px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
}

.compare-page-gpu .summary-card.winner .big-score {
  background: linear-gradient(135deg, #fff 20%, #b8f070);
  -webkit-background-clip: text;
  background-clip: text;
}

.compare-page-cpu .summary-card.winner .big-score {
  background: linear-gradient(135deg, #fff 20%, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
}

.compare-page .result-vs {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  min-width: 112px;
  max-width: 132px;
  height: auto;
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  align-self: center;
}

.compare-page .result-vs-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1;
}

.compare-page .result-vs-value {
  font-family: var(--mono);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.compare-page-gpu .result-vs {
  border-color: rgba(118, 185, 0, 0.28);
  background: linear-gradient(165deg, rgba(118, 185, 0, 0.12), rgba(0, 0, 0, 0.4));
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(118, 185, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.compare-page-gpu .result-vs-mark {
  color: #c5e88a;
  background: rgba(118, 185, 0, 0.14);
  border-color: rgba(118, 185, 0, 0.28);
}

.compare-page-gpu .result-vs-value {
  color: #b8f070;
  text-shadow: 0 0 24px rgba(118, 185, 0, 0.35);
}

.compare-page-cpu .result-vs-mark {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.28);
}

.compare-page-cpu .result-vs {
  border-color: rgba(34, 211, 238, 0.28);
  background: linear-gradient(165deg, rgba(34, 211, 238, 0.1), rgba(0, 0, 0, 0.4));
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(34, 211, 238, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.compare-page-cpu .result-vs-value {
  color: #67e8f9;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.3);
}

@media (min-width: 901px) {
  .compare-page .result-vs::before,
  .compare-page .result-vs::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22));
    pointer-events: none;
  }

  .compare-page .result-vs::before {
    right: 100%;
    margin-right: 10px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22));
  }

  .compare-page .result-vs::after {
    left: 100%;
    margin-left: 10px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent);
  }

  .compare-page-gpu .result-vs::before {
    background: linear-gradient(90deg, transparent, rgba(118, 185, 0, 0.35));
  }

  .compare-page-gpu .result-vs::after {
    background: linear-gradient(90deg, rgba(118, 185, 0, 0.35), transparent);
  }

  .compare-page-cpu .result-vs::before {
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35));
  }

  .compare-page-cpu .result-vs::after {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.35), transparent);
  }
}

.compare-page .win-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  padding: 7px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.compare-page-gpu .win-badge {
  background: rgba(118, 185, 0, 0.15);
  color: #c5e88a;
  border: 1px solid rgba(118, 185, 0, 0.25);
}

.compare-page-cpu .win-badge {
  background: rgba(34, 211, 238, 0.12);
  color: #a5f3fc;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

/* Shared result blocks (charts + spec table) */
.compare-block-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.compare-block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}

.compare-block-icon--charts {
  color: #e8ffd0;
  background: rgba(118, 185, 0, 0.14);
  border: 1px solid rgba(118, 185, 0, 0.32);
  box-shadow: 0 6px 18px rgba(118, 185, 0, 0.14);
}

.compare-block-icon--spec {
  color: #e8ffd0;
  background: rgba(118, 185, 0, 0.12);
  border: 1px solid rgba(118, 185, 0, 0.28);
  box-shadow: 0 6px 18px rgba(118, 185, 0, 0.12);
}

.compare-page-cpu .compare-block-icon--charts,
.compare-page-cpu .compare-block-icon--spec {
  color: #cffafe;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 6px 18px rgba(34, 211, 238, 0.12);
}

.compare-block-head-copy {
  min-width: 0;
  padding-top: 2px;
}

.compare-block-title {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.compare-block-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.compare-result-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 24px 28px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012) 45%, rgba(0, 0, 0, 0.22));
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.compare-result-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.9;
}

.compare-page-gpu .compare-result-panel {
  border-color: rgba(118, 185, 0, 0.2);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.28),
    0 0 48px rgba(118, 185, 0, 0.05),
    inset 0 1px 0 rgba(118, 185, 0, 0.1);
}

.compare-page-gpu .compare-result-panel::before {
  background: linear-gradient(90deg, transparent, #76b900, rgba(118, 185, 0, 0.35), transparent);
}

.compare-page-cpu .compare-result-panel {
  border-color: rgba(34, 211, 238, 0.18);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.28),
    0 0 48px rgba(34, 211, 238, 0.04),
    inset 0 1px 0 rgba(34, 211, 238, 0.1);
}

.compare-page-cpu .compare-result-panel::before {
  background: linear-gradient(90deg, transparent, #22d3ee, rgba(34, 211, 238, 0.3), transparent);
}

/* Charts block */
.compare-charts-block {
  margin-bottom: 28px;
}

.compare-charts-block .charts-row {
  margin-bottom: 0;
  gap: 18px;
}

.compare-page .chart-card {
  border-radius: 16px;
  padding: 22px 20px 20px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.compare-page-gpu .chart-card {
  border-color: rgba(118, 185, 0, 0.14);
}

.compare-page-gpu .chart-card:hover {
  border-color: rgba(118, 185, 0, 0.32);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(118, 185, 0, 0.08);
}

.compare-page-cpu .chart-card {
  border-color: rgba(34, 211, 238, 0.14);
}

.compare-page-cpu .chart-card:hover {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(34, 211, 238, 0.07);
}

.compare-page-gpu .charts-row .chart-card:first-child {
  border-color: rgba(118, 185, 0, 0.28);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(118, 185, 0, 0.1), transparent 58%),
    rgba(0, 0, 0, 0.35);
}

.compare-page-cpu .charts-row .chart-card:first-child {
  border-color: rgba(34, 211, 238, 0.26);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(34, 211, 238, 0.08), transparent 58%),
    rgba(0, 0, 0, 0.35);
}

.compare-page .chart-card:hover {
  transform: translateY(-2px);
}

.compare-page .chart-card h3 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-soft);
}

.compare-page-gpu .chart-card h3,
.compare-page-gpu .chart-title-component {
  color: #d4f0a8;
}

.compare-page-cpu .chart-card h3,
.compare-page-cpu .chart-title-component {
  color: #a5f3fc;
}

.compare-page .chart-title-component {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.compare-page .chart-wrap {
  overflow: visible;
}

.chart-slice-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.slice-bubble-cluster {
  position: absolute;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.chart-wrap.chart-decorations-ready .slice-bubble-cluster {
  opacity: 1;
}

.slice-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    color-mix(in srgb, var(--slice-color, #6366f1) 85%, #fff 15%),
    var(--slice-color, #6366f1)
  );
  box-shadow:
    0 0 10px color-mix(in srgb, var(--slice-color, #6366f1) 55%, transparent),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.chart-wrap.chart-decorations-ready .slice-bubble {
  animation: slice-bubble-float 2.6s ease-in-out infinite;
  opacity: 0;
}

.slice-bubble:nth-child(1) {
  width: 11px;
  height: 11px;
  left: -6px;
  top: 2px;
}

.slice-bubble:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 5px;
  top: -5px;
}

.slice-bubble:nth-child(3) {
  width: 6px;
  height: 6px;
  left: -9px;
  top: -12px;
}

@keyframes slice-bubble-float {
  0% {
    transform: translate(0, 6px) scale(0.7);
    opacity: 0;
  }
  15% {
    opacity: 0.75;
  }
  50% {
    transform: translate(0, -16px) scale(1.08);
    opacity: 0.9;
  }
  75% {
    transform: translate(2px, -26px) scale(0.85);
    opacity: 0.35;
  }
  100% {
    transform: translate(-1px, -34px) scale(0.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slice-bubble-cluster,
  .slice-bubble {
    animation: none;
    opacity: 0.65;
  }

  .slice-bubble {
    transform: translate(0, -8px);
  }
}

/* Spec table block */
.compare-spec-block {
  margin-bottom: 0;
}

.compare-page .spec-table-heading {
  margin: 0;
}

.compare-spec-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-page-gpu .compare-spec-foot {
  border-top-color: rgba(118, 185, 0, 0.12);
}

.compare-page-cpu .compare-spec-foot {
  border-top-color: rgba(34, 211, 238, 0.12);
}

.compare-spec-foot .compare-block-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.compare-page .compare-spec-block .spec-source-note {
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-page-gpu .compare-spec-block .spec-source-note {
  border-color: rgba(118, 185, 0, 0.15);
}

.compare-page-gpu .compare-spec-block .spec-source-note a {
  color: #b8f070;
}

.compare-page-cpu .compare-spec-block .spec-source-note {
  border-color: rgba(34, 211, 238, 0.15);
}

.compare-page-cpu .compare-spec-block .spec-source-note a {
  color: #67e8f9;
}

.compare-page .spec-table-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.compare-page-gpu .spec-table-card {
  border-color: rgba(118, 185, 0, 0.2);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(118, 185, 0, 0.04);
}

.compare-page-cpu .spec-table-card {
  border-color: rgba(34, 211, 238, 0.18);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(34, 211, 238, 0.04);
}

.compare-page-gpu .spec-table thead {
  background: linear-gradient(180deg, rgba(118, 185, 0, 0.14), rgba(0, 0, 0, 0.4));
}

.compare-page-cpu .spec-table thead {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.12), rgba(0, 0, 0, 0.4));
}

.compare-page-gpu .spec-table tbody tr:hover {
  background: rgba(118, 185, 0, 0.07);
}

.compare-page-cpu .spec-table tbody tr:hover {
  background: rgba(34, 211, 238, 0.06);
}

.compare-page-gpu .spec-table .col-component.col-winner {
  background: rgba(118, 185, 0, 0.12);
  box-shadow: inset 0 3px 0 #76b900;
}

.compare-page-cpu .spec-table .col-component.col-winner {
  background: rgba(34, 211, 238, 0.1);
  box-shadow: inset 0 3px 0 #22d3ee;
}

.compare-page-gpu .spec-col-brand {
  color: #b8f070;
}

.compare-page-cpu .spec-col-brand {
  color: #67e8f9;
}

.compare-page-gpu .spec-table .cell-win {
  background: rgba(118, 185, 0, 0.14) !important;
  color: #d4f0a8;
}

.compare-page-cpu .spec-table .cell-win {
  background: rgba(34, 211, 238, 0.12) !important;
  color: #a5f3fc;
}

.compare-page-gpu .win-tag {
  background: rgba(118, 185, 0, 0.28);
  color: #d4f0a8;
}

.compare-page-cpu .win-tag {
  background: rgba(34, 211, 238, 0.25);
  color: #a5f3fc;
}

@media (max-width: 900px) {
  .compare-page-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .compare-vs-pill {
    margin: 0 auto;
  }

  .compare-page-form .btn-primary {
    width: 100%;
  }

  .compare-summary {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 12px;
  }

  .summary-card-head {
    margin-bottom: 8px;
  }

  .compare-page .result-vs {
    width: 100%;
    max-width: none;
    min-width: 0;
    border-radius: 16px;
    padding: 14px 20px;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .compare-page .result-vs::before,
  .compare-page .result-vs::after {
    display: none;
  }

  .compare-page .result-vs-mark {
    min-width: 0;
    padding: 3px 8px;
    font-size: 0.68rem;
  }

  .compare-page .result-vs-value {
    font-size: 1.5rem;
  }

  .charts-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .compare-picker-panel,
  .compare-result-panel {
    padding: 18px 16px;
  }

  .compare-block-head {
    margin-bottom: 16px;
  }

  .compare-block-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .page-hero-compare .page-hero-main {
    padding: 22px 20px 18px;
  }

  .page-hero-compare-side {
    padding: 0 20px 20px;
  }

  .page-hero-compare-visual {
    width: 128px;
    height: 128px;
  }

  .page-hero-compare-visual-core {
    width: 84px;
    height: 84px;
  }

  .page-hero-compare-gpu .page-hero-compare-visual-mark {
    width: 62px;
  }

  .page-hero-compare-cpu .page-hero-compare-visual-mark {
    width: 56px;
  }

  .page-hero-compare-ring {
    display: none;
  }
}

/* Móvil: gráficos con leyenda clara + tabla comparativa sin scroll horizontal */
@media (max-width: 880px) {
  .compare-page .charts-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .compare-page .charts-row .chart-card:first-child {
    grid-column: 1 / -1;
  }

  .compare-page .chart-wrap {
    height: 190px;
    overflow: visible;
  }

  .compare-page .chart-card {
    padding: 16px 14px 14px;
    min-width: 0;
  }

  .compare-page .chart-card h3,
  .compare-page .chart-title-component {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .compare-page .chart-title-component {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .compare-page .chart-callouts,
  .compare-page .chart-leaders,
  .compare-page .chart-slice-bubbles {
    display: none !important;
  }

  .chart-mobile-legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .compare-page-gpu .chart-mobile-legend {
    border-top-color: rgba(118, 185, 0, 0.14);
  }

  .compare-page-cpu .chart-mobile-legend {
    border-top-color: rgba(34, 211, 238, 0.14);
  }

  .chart-legend-row {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .chart-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .chart-legend-label {
    font-size: 0.75rem;
    color: var(--text-soft);
    min-width: 0;
    line-height: 1.35;
  }

  .chart-legend-pct {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .compare-page .spec-table-card {
    overflow: visible;
  }

  .compare-page .spec-table {
    min-width: 0;
    width: 100%;
  }

  .compare-page .spec-table thead .col-spec {
    display: none;
  }

  .compare-page .spec-table thead tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .compare-page .spec-table thead .col-component {
    width: auto;
    padding: 12px 10px;
    text-align: center;
  }

  .compare-page .spec-table thead .col-left::after,
  .compare-page .spec-table thead .col-right::after,
  .compare-page .spec-table thead .col-right::before {
    display: none;
  }

  .compare-page .spec-table thead .spec-col-brand {
    display: block;
    font-size: 0.62rem;
    margin-bottom: 4px;
  }

  .compare-page .spec-table thead .spec-col-name {
    display: block;
    font-size: 0.7rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .compare-page .spec-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .compare-page .spec-table tbody .col-spec {
    grid-column: 1 / -1;
    width: auto;
    padding: 10px 12px 4px;
    font-size: 0.68rem;
    background: rgba(0, 0, 0, 0.18);
    border-bottom: none;
  }

  .compare-page .spec-table tbody .col-value {
    padding: 8px 10px 12px;
    text-align: center;
    font-size: 0.8rem;
    border-left: none;
  }

  .compare-page .spec-table .col-left {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .compare-page .spec-table tbody tr:last-child .col-value {
    border-bottom: none;
  }
}

@media (max-width: 420px) {
  .compare-page .charts-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-hero-compare .page-hero-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-compare .page-hero-main {
    flex: 1 1 auto;
    max-width: none;
    padding: 22px 24px 12px 24px;
  }

  .page-hero-compare-side {
    align-self: flex-end;
    margin-left: 0;
    padding: 0 20px 20px;
  }

  .page-hero-compare-ring {
    right: 24px;
    top: auto;
    bottom: 28px;
    transform: none;
  }
}
