
:root {
  --bg-0: #050816;
  --bg-1: #081126;
  --bg-2: #0c1430;
  --surface: rgba(23, 30, 58, 0.56);
  --surface-2: rgba(31, 38, 68, 0.64);
  --surface-3: rgba(15, 20, 40, 0.88);
  --border-soft: rgba(255, 255, 255, 0.10);
  --border-mid: rgba(255, 255, 255, 0.18);
  --text-strong: #f4f7ff;
  --text-soft: #dce4ff;
  --text-body: #aab4d6;
  --text-dim: #8893b7;
  --blue-1: #3d6cff;
  --blue-2: #5c8dff;
  --blue-3: #79a6ff;
  --peach-1: #f2b2a6;
  --orange-1: #f59a62;
  --orange-2: #d67339;
  --success: #5cd694;
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 46px rgba(0, 0, 0, 0.28);
  --radius-xl: 18px;
  --radius-2xl: 24px;
  --radius-pill: 999px;
  --content-width: min(1320px, calc(100% - 56px));
  --reading-width: 760px;
  --brand-accent: #5c8dff;
  --brand-accent-soft: rgba(92, 141, 255, 0.2);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text-strong);
  background:
    radial-gradient(44rem 44rem at 20% 12%, rgba(34, 86, 255, 0.26), transparent 60%),
    radial-gradient(34rem 34rem at 82% 18%, rgba(226, 122, 46, 0.14), transparent 62%),
    radial-gradient(18rem 18rem at 50% 28%, rgba(86, 118, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #09102a 0%, #050816 58%, #04060f 100%);
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.page-nord { --brand-accent: #5c8dff; --brand-accent-soft: rgba(92, 141, 255, 0.18); }
body.page-proton { --brand-accent: #8b5cf6; --brand-accent-soft: rgba(139, 92, 246, 0.18); }
body.page-surfshark { --brand-accent: #17c9d5; --brand-accent-soft: rgba(23, 201, 213, 0.18); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: var(--content-width); margin-inline: auto; }
.page-shell { position: relative; padding: 12px 0 54px; }
.hero-glow-blue,
.hero-glow-orange {
  position: fixed;
  filter: blur(78px);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-blue {
  width: 420px;
  height: 420px;
  left: 6%;
  top: 8%;
  background: rgba(50, 100, 255, 0.20);
  animation: drift 14s ease-in-out infinite alternate;
}
.hero-glow-orange {
  width: 420px;
  height: 420px;
  right: 6%;
  top: 24%;
  background: rgba(225, 119, 45, 0.16);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
.topbar-wrap,
.hero-wrap,
.footer,
.footer-bottom { position: relative; z-index: 1; }
.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  min-height: 58px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 35, 67, 0.68), rgba(18, 24, 46, 0.62));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}
.topbar:hover { border-color: rgba(255,255,255,0.15); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 12px;
  transition: transform 260ms ease;
}
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-2deg); }
.brand-copy { display: grid; min-width: 0; }
.brand-name { font-weight: 700; font-size: 15px; color: var(--text-strong); }
.brand-tagline { font-size: 11px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-menu, .topbar-actions { display: flex; align-items: center; gap: 10px; }
.topbar-actions { justify-self: end; }
.topbar-menu a {
  padding: 8px 12px;
  border-radius: 11px;
  font-size: 14px;
  color: var(--text-body);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.topbar-menu a:hover,
.topbar-menu a[aria-current="page"] {
  background: rgba(255,255,255,0.06);
  color: var(--text-soft);
  transform: translateY(-1px);
}
.menu-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6,10,22,0.85);
  color: var(--text-soft);
  display: none;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.menu-toggle:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.16); }
.mobile-panel {
  display: none;
  margin-top: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(28,35,67,0.78), rgba(18,24,46,0.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.mobile-panel a { display: block; padding: 14px 18px; color: var(--text-body); }
.mobile-panel a + a { border-top: 1px solid rgba(255,255,255,0.06); }
.hero-wrap {
  width: var(--content-width);
  margin: 18px auto 0;
  display: grid;
  gap: 60px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.stack-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(32, 38, 66, 0.58);
  color: #dce4ff;
  font-size: 12px;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.stack-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(37, 43, 73, 0.66);
}
.stack-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(121,166,255,0.95), rgba(61,108,255,0.45));
  box-shadow: 0 0 18px rgba(61,108,255,0.35);
}
.hero,
.page-hero {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-title,
.page-title,
.article-panel h1,
.section-heading,
.review-section h2,
.archive-title {
  font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.045em;
}
.hero-title,
.page-title {
  margin: 22px 0 0;
  font-size: clamp(36px, 5.8vw, 68px);
  line-height: 0.98;
}
.gradient {
  background: linear-gradient(90deg, #4677ff 0%, #6b94ff 35%, #c7a0be 68%, #ee9f69 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.solid { color: #f5f7ff; }
.hero-copy,
.page-copy {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.72;
}
.command-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  margin-top: 22px;
  border-radius: 12px;
  background: #08112b;
  border: 1px solid rgba(69, 93, 162, 0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  color: #f3c08e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}
.cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease, opacity 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #5d8dff, #3d6cff);
  color: white;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(61, 108, 255, 0.28);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(61,108,255,0.34); }
.btn-secondary,
.btn-subtle {
  background: rgba(255,255,255,0.04);
  color: #f2f4fb;
}
.btn-secondary:hover,
.btn-subtle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
main section { margin-top: 0; }
.section-heading {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
}
.section-heading.centered { text-align: center; }
.section-copy {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.72;
}
.section-copy.centered { margin-inline: auto; text-align: center; }
.cards-2, .cards-3, .cards-4, .archive-grid, .jump-grid, .source-grid, .highlights-grid, .summary-grid {
  display: grid;
  gap: 18px;
}
.cards-2, .jump-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3, .archive-grid, .source-grid, .summary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4, .highlights-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card,
.review-card,
.data-card,
.table-wrap,
.article-panel,
.callout,
.jump-card,
.deal-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(35,41,72,0.56), rgba(19,24,46,0.72));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), var(--shadow-md);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 240ms ease, background-color 180ms ease;
}
.card::before, .review-card::before, .data-card::before, .article-panel::before, .callout::before, .jump-card::before, .deal-card::before, .table-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 45%),
    radial-gradient(26rem 14rem at 10% -10%, var(--brand-accent-soft), transparent 60%);
  opacity: .95;
}
.card:hover,
.review-card:hover,
.data-card:hover,
.article-panel:hover,
.callout:hover,
.jump-card:hover,
.deal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 50px rgba(0, 0, 0, 0.32);
}
.card, .review-card, .data-card, .article-panel, .callout, .jump-card, .deal-card { padding: 24px; }
.card h3, .review-title, .article-panel h2, .callout h3, .deal-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
}
.card h3, .callout h3, .deal-card h3 { font-size: 22px; }
.card p, .review-card p, .article-panel p, .callout p, .data-note, li {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.78;
}
.card p, .review-card p, .article-panel p, .data-note { margin: 0; }
.card p + p, .article-panel p + p, .callout p + p { margin-top: 14px; }
.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}
.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.review-brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.review-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.review-title { font-size: 28px; margin: 0; }
.label-pill, .score-pill, .meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.2;
}
.score-pill { color: var(--text-strong); border-color: rgba(92, 141, 255, 0.24); background: rgba(92,141,255,0.10); }
.review-card-actions { margin-top: auto; display: flex; }
.inline-link {
  color: var(--text-soft);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.14);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
.inline-link:hover {
  color: white;
  text-decoration-color: rgba(255,255,255,0.42);
}
.table-wrap { padding: 6px; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.compare-table { min-width: 720px; }
thead th {
  text-align: left;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
tbody td {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
  transition: background-color 180ms ease, color 180ms ease;
}
tbody tr:hover td { background: rgba(255,255,255,0.03); color: var(--text-soft); }
.highlight-col { color: var(--text-strong); font-weight: 600; }
.review-hero {
  max-width: 1060px;
  margin-inline: auto;
}
.review-hero-card {
  padding: 28px;
}
.review-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.provider-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}
.provider-mark {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}
.provider-name {
  margin: 0;
  font-size: clamp(36px, 5vw, 54px);
  line-height: .94;
}
.provider-sub {
  margin-top: 4px;
  color: var(--text-body);
  font-size: 15px;
}
.review-title-short {
  margin: 18px 0 0;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.02;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.04em;
}
.review-intro {
  max-width: 820px;
  margin-top: 14px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.72;
}
.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.highlights-grid .data-card {
  min-height: 100%;
}
.data-title {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
}
.data-value {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
  color: var(--brand-accent);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.data-note {
  margin-top: 10px;
}
.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.84fr);
  gap: 24px;
  align-items: start;
}
.review-main {
  display: grid;
  gap: 22px;
}
.review-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}
.jump-card {
  display: block;
  min-height: 128px;
}
.jump-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.jump-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-body);
  line-height: 1.6;
}
.callout h3,
.deal-card h3 {
  color: var(--text-strong);
}
.callout .mini-kicker,
.deal-card .mini-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 11px;
  min-height: 26px;
  padding: 0 10px;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  letter-spacing: .01em;
}
.callout strong { color: var(--text-soft); }
.article-panel h2 {
  font-size: 32px;
  line-height: 1.04;
  margin-bottom: 12px;
}
.review-body p {
  font-size: 17px;
  line-height: 1.86;
}
.bad-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.bad-list div {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-body);
}
.bad-list strong { color: var(--text-soft); }
.deal-list {
  margin: 14px 0 0;
  padding-left: 18px;
}
.deal-list li {
  margin-top: 8px;
}
.deal-wheel {
  margin-top: 18px;
}
.wheel-shell {
  position: relative;
  width: 220px;
  height: 220px;
  margin-inline: auto;
}
.wheel-pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 24px solid var(--brand-accent);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
  z-index: 2;
}
.wheel-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 34%),
    conic-gradient(
      from 0deg,
      rgba(255,255,255,0.06) 0deg 60deg,
      var(--brand-accent-soft) 60deg 120deg,
      rgba(255,255,255,0.04) 120deg 180deg,
      rgba(255,255,255,0.08) 180deg 240deg,
      var(--brand-accent-soft) 240deg 300deg,
      rgba(255,255,255,0.04) 300deg 360deg
    );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 30px rgba(0,0,0,.28);
  transition: transform 3400ms cubic-bezier(.17,.91,.2,1);
}
.wheel-center {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(26,35,67,0.95), rgba(12,18,34,0.95));
  display: grid;
  place-items: center;
  color: var(--text-strong);
  font-weight: 700;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 24px rgba(0,0,0,.26);
}
.wheel-center small {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
}
.spin-btn {
  margin-top: 18px;
  width: 100%;
}
.deal-result {
  min-height: 72px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.62;
}
.deal-result strong { color: var(--text-soft); }
.footer {
  width: var(--content-width);
  margin: 72px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--text-body);
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-nav a:hover { color: var(--text-soft); transform: translateY(-1px); }
.footer-bottom {
  width: var(--content-width);
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.6;
}
.footer-disclosure { max-width: 640px; text-align: right; }
.focus-ring:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(121, 166, 255, 0.88);
  outline-offset: 3px;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 700ms cubic-bezier(.22,.61,.36,1) forwards;
}
.reveal.delay-1 { animation-delay: 80ms; }
.reveal.delay-2 { animation-delay: 160ms; }
.reveal.delay-3 { animation-delay: 240ms; }
.reveal.delay-4 { animation-delay: 320ms; }
.reveal.delay-5 { animation-delay: 400ms; }
.float-soft { animation: floatSoft 6s ease-in-out infinite; }

@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(16px, -10px, 0) scale(1.04); }
  100% { transform: translate3d(-10px, 14px, 0) scale(0.98); }
}
@keyframes floatSoft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

@media (max-width: 1180px) {
  :root { --content-width: min(100%, calc(100% - 40px)); }
  .review-layout { grid-template-columns: 1fr; }
  .review-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .cards-4, .highlights-grid, .cards-3, .archive-grid, .source-grid, .summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar { grid-template-columns: minmax(0,1fr) auto; }
  .topbar-menu { display: none; }
  .menu-toggle { display: inline-grid; }
  .topbar-actions .btn { display: none; }
  .mobile-panel[data-open="true"] { display: block; }
}
@media (max-width: 720px) {
  :root { --content-width: min(100%, calc(100% - 28px)); }
  .page-shell { padding-top: 10px; }
  .topbar { padding: 8px 12px; gap: 10px; }
  .brand { gap: 10px; }
  .brand-mark { width: 30px; height: 30px; border-radius: 10px; }
  .brand-name { font-size: 14px; }
  .brand-tagline { font-size: 10px; }
  .card, .review-card, .data-card, .article-panel, .callout, .jump-card, .deal-card { padding: 20px; }
  .review-title { font-size: clamp(22px, 7vw, 28px); }
  .section-copy, .card p, .review-card p, .article-panel p, .review-body p { font-size: 15px; line-height: 1.72; }
  .cards-2, .cards-3, .cards-4, .archive-grid, .source-grid, .summary-grid, .jump-grid, .highlights-grid, .review-aside { grid-template-columns: 1fr; }
  .hero-title, .page-title { font-size: clamp(34px, 10vw, 52px); }
  .hero-copy, .page-copy, .review-intro { font-size: 16px; }
  .review-title-short { font-size: clamp(30px, 9vw, 40px); }
  .provider-name { font-size: 40px; }
  .footer-bottom { display: block; }
  .footer-disclosure { text-align: left; margin-top: 6px; }
  .wheel-shell { width: 200px; height: 200px; }
  .compare-table { min-width: 640px; }
}
@media (max-width: 540px) {
  :root { --content-width: min(100%, calc(100% - 20px)); }
  .topbar { min-height: 52px; }
  .brand-tagline { display: none; }
  .menu-toggle { width: 34px; height: 34px; }
  .mobile-panel a { padding: 12px 14px; }
  .hero-wrap { gap: 44px; margin-top: 14px; }
  .page-section { gap: 18px; }
  .review-hero-card { padding: 22px; }
  .provider-mark { width: 56px; height: 56px; border-radius: 14px; }
  .provider-name { font-size: clamp(30px, 10vw, 38px); }
  .table-wrap { border-radius: 18px; }
  .compare-table { min-width: 560px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* VPNReview.pro patch */
.page-hero.compact { max-width: 740px; }
.page-title.short { font-size: clamp(34px, 4.8vw, 58px); max-width: 12ch; margin-inline: auto; }
.hero-copy.short, .page-copy.short { max-width: 54ch; font-size: 17px; }
.hero-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:22px; }
.home-section, .page-section { display:grid; gap:22px; }
.section-stack { display:grid; gap:18px; }
.review-list-note { max-width: 760px; margin: 8px auto 0; text-align:center; color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.card.accent, .callout.accent, .deal-card.accent, .data-card.accent, .review-hero-card { border-color: rgba(92, 141, 255, 0.18); }
body.page-proton .card.accent, body.page-proton .callout.accent, body.page-proton .deal-card.accent, body.page-proton .data-card.accent, body.page-proton .review-hero-card { border-color: rgba(139, 92, 246, 0.24); }
body.page-surfshark .card.accent, body.page-surfshark .callout.accent, body.page-surfshark .deal-card.accent, body.page-surfshark .data-card.accent, body.page-surfshark .review-hero-card { border-color: rgba(23, 201, 213, 0.24); }

.summary-grid .card, .highlights-grid .data-card, .jump-grid .jump-card, .archive-grid .review-card { min-height: 100%; }
.muted { color: var(--text-dim); }
.mini-note { margin-top: 10px; font-size: 13px; line-height: 1.6; color: var(--text-dim); }
.section-meta { display:flex; gap:10px; flex-wrap:wrap; margin-top: 18px; }
.review-body { display:grid; gap:22px; }
.review-main .article-panel, .review-aside .callout, .review-aside .deal-card { width: 100%; }
.review-aside .callout, .review-aside .deal-card { min-height: 100%; }
.review-layout { gap: 28px; grid-template-columns: minmax(0, 1.52fr) minmax(360px, 0.84fr); }
.review-main { gap: 24px; }
.review-aside { gap: 20px; }
.review-hero-card:hover .provider-mark { transform: translateY(-3px) scale(1.03); transition: transform 260ms ease; }
.review-card:hover .review-logo { transform: translateY(-3px) rotate(-3deg); transition: transform 260ms ease; }
.jump-card strong { transition: transform 200ms ease, color 200ms ease; }
.jump-card:hover strong { transform: translateX(3px); color: var(--text-strong); }
.data-card .data-value { transition: transform 200ms ease, text-shadow 220ms ease; }
.data-card:hover .data-value { transform: translateY(-2px); text-shadow: 0 0 22px var(--brand-accent-soft); }
.callout.accent:hover, .deal-card.accent:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 22px 54px rgba(0,0,0,.34), 0 0 0 1px var(--brand-accent-soft); }
.btn-primary:hover { filter: saturate(1.06); }
.review-link-arrow { display:inline-flex; align-items:center; gap:8px; }
.review-link-arrow span { transition: transform 180ms ease; }
.review-card:hover .review-link-arrow span { transform: translateX(3px); }
.compare-table td strong { color: var(--text-soft); }
.small-heading { margin:0; font-size: 18px; letter-spacing:-0.02em; color: var(--text-soft); }
.text-columns { columns: 2; column-gap: 28px; }
.text-columns p { break-inside: avoid; }
.kbd-note { display:inline-flex; align-items:center; gap:8px; min-height:30px; padding:0 12px; border-radius: var(--radius-pill); background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); color: var(--text-soft); font-size: 12px; }
.link-grid { display:grid; gap:12px; }
.link-grid a { padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); color: var(--text-body); transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease; }
.link-grid a:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: var(--text-soft); }
.source-list ul { margin: 10px 0 0; }
.deal-card .deal-list strong { color: var(--text-soft); }
.review-hero .jump-grid { margin-top: 18px; }
.review-hero .jump-card { min-height: 118px; }
.review-callout-stack { display:grid; gap:20px; }
.page-title.shorter { max-width: 14ch; }
.split-intro { display:grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap:24px; align-items:start; }
.split-intro .card { min-height:100%; }
.brand-copy .brand-name, .footer-brand .brand-name { font-family: "Space Grotesk","Inter",sans-serif; letter-spacing:-0.02em; }
.contact-list { display:grid; gap: 14px; }
.contact-row { display:flex; justify-content:space-between; gap:18px; padding:16px 18px; border-radius:16px; border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.contact-row span:last-child { color: var(--text-soft); text-align:right; }
.legal-copy p + h3 { margin-top: 26px; }
.legal-copy h3 { margin-bottom: 10px; }
@media (max-width: 1180px) {
  .split-intro { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-aside { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .page-title.short, .page-title.shorter { max-width:none; }
  .review-aside { grid-template-columns: 1fr; }
  .text-columns { columns: 1; }
}
