:root {
  --blue: #1666d8;
  --blue-dark: #1257be;
  --blue-light: #2f7ff0;
  --navy: #071b3d;
  --navy-mid: #0a2f7a;
  --tint: #f2f7ff;
  --tint-deep: #e6efff;
  --ink: #0b1a33;
  --body: #495c78;
  --muted: #6f819b;
  --border: #dde7f6;
  --border-soft: #eaf1fc;
  --green: #16a34a;
  --green-soft: #e8f8ee;
  --amber: #f59e0b;
  --amber-soft: #fff6e6;
  --red: #dc2626;
  --red-soft: #fdeded;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --sh-sm: 0 1px 2px rgba(11, 26, 51, .05), 0 6px 16px rgba(11, 26, 51, .05);
  --sh: 0 14px 34px rgba(11, 26, 51, .09);
  --sh-lg: 0 30px 70px rgba(7, 27, 61, .18);
  --sh-glow: 0 40px 90px rgba(7, 27, 61, .45);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); }
h3 { font-size: 1.16rem; letter-spacing: -.015em; line-height: 1.3; }
h4 { font-size: 1rem; letter-spacing: -.01em; }

p { margin: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: 780px; margin: 0 auto; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 0; top: 0; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 12px 18px;
}
:focus-visible { outline: 3px solid rgba(47, 127, 240, .55); outline-offset: 3px; border-radius: 8px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 13px;
  border-radius: 999px;
  background: var(--tint-deep);
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .01em;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.eyebrow-light {
  background: rgba(255, 255, 255, .13);
  color: #cfe1ff;
  border: 1px solid rgba(255, 255, 255, .18);
}
.eyebrow-amber { background: var(--amber-soft); color: #92590a; }

.lead { font-size: 1.13rem; line-height: 1.6; }

/* Reading progress bar */

.progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 120;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #34d399, var(--blue-light), var(--amber));
  transition: width .1s linear;
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.2, .7, .3, 1), transform .65s cubic-bezier(.2, .7, .3, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* Gradient headline accent */

.grad {
  background: linear-gradient(100deg, #7cc4ff 10%, #34d399 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-blue {
  background: linear-gradient(100deg, var(--blue-light), #16a34a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Advertising disclosure bar */

.adbar {
  background: var(--navy);
  color: #b9cdec;
  padding: 9px 0;
  font-size: .82rem;
}
.adbar .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.adbar-chip {
  flex: none;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--amber);
  color: #3d2500;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.logo em {
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
}
.logo-mark {
  flex: none;
  width: 31px;
  height: 31px;
  border-radius: 9px;
}
.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.logo-the {
  font-size: .68em;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.header-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: .95rem;
  font-weight: 550;
}
.header-nav a { color: var(--body); }
.header-nav a:hover { color: var(--blue); }
.header-nav a.current { color: var(--ink); font-weight: 700; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-sm { padding: 10px 19px; font-size: .92rem; }
.btn-md { padding: 13px 25px; font-size: .98rem; }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 102, 216, .32);
}
.btn-primary:hover {
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(22, 102, 216, .38);
}

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 27, 61, .22);
}
.btn-white:hover { color: var(--ink); transform: translateY(-2px); }

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--sh-sm);
}
.btn-outline:hover { color: var(--ink); border-color: #bcd2f2; transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .18); color: #fff; transform: translateY(-2px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row-center { justify-content: center; }
.cta-note { font-size: .9rem; color: var(--muted); }
.cta-note-light { color: #9fb8dd; }

/* Stars */

.stars {
  position: relative;
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 4px;
  line-height: 1;
  color: rgba(245, 158, 11, .28);
}
.stars::before { content: "\2605\2605\2605\2605\2605"; }
.stars-fill {
  position: absolute;
  left: 0; top: 0;
  width: 98%;
  overflow: hidden;
  white-space: nowrap;
  color: var(--amber);
}
.stars-fill::before { content: "\2605\2605\2605\2605\2605"; }
.stars-lg { font-size: 1.5rem; letter-spacing: 5px; }

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.rating-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.rating-label { font-size: .86rem; color: #9fb8dd; }

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 130px;
  background:
    radial-gradient(900px 500px at 82% 6%, rgba(47, 127, 240, .5), transparent 62%),
    radial-gradient(700px 420px at 8% 92%, rgba(16, 185, 129, .22), transparent 62%),
    linear-gradient(158deg, #0d3789 0%, #092a63 48%, #05132c 100%);
  color: #c6d8f5;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(760px 520px at 15% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(760px 520px at 15% 0%, #000, transparent 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { color: #fff; margin: 22px 0 20px; }
.hero .lead { color: #c6d8f5; max-width: 54ch; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
  padding: 16px 20px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
}
.hero-rating-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .2);
}
.hero .cta-note { margin-top: 18px; }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-media img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-glow);
}
.hero-badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  font-size: .9rem;
  box-shadow: var(--sh);
  white-space: nowrap;
}
.hero-badge .stars { font-size: .95rem; letter-spacing: 2px; }

/* Editor's choice seal */

.seal {
  position: absolute;
  top: -24px;
  left: 50%;
  margin-left: -246px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #fde68a, #f59e0b 35%, #b45309 60%, #fbbf24 85%, #fde68a);
  color: #3d2500;
  box-shadow: 0 14px 30px rgba(7, 27, 61, .4);
  z-index: 3;
}
.seal-inner {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  border-radius: 50%;
  background: linear-gradient(165deg, #fffbeb, #fde68a);
  border: 1px dashed rgba(61, 37, 0, .35);
}
.seal-top {
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.2;
}
.seal-num { font-size: 1.42rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.seal-bot {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

/* Score ring */

.score-ring {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  padding: 11px;
  background: conic-gradient(var(--amber) calc(var(--pct, 98) * 1%), rgba(255, 255, 255, .16) 0);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12) inset;
}
.score-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: linear-gradient(165deg, #0f3f96, #071f4b);
}
.score-ring .verdict-big { font-size: 2.9rem; }
.score-ring .verdict-big span { font-size: 1.05rem; }
.score-ring .stars { font-size: .92rem; letter-spacing: 2px; }

/* Stat bar */

.statbar { position: relative; margin-top: -74px; z-index: 5; }
.statbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  box-shadow: var(--sh);
  text-align: center;
}
.stat-value {
  font-size: 1.72rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.stat-label {
  margin-top: 5px;
  font-size: .88rem;
  color: var(--muted);
}

/* Sections */

.section { padding: 92px 0; }
.section-tint { background: var(--tint); }
.section-dark {
  background:
    radial-gradient(700px 400px at 88% 12%, rgba(47, 127, 240, .38), transparent 62%),
    linear-gradient(152deg, #0b3079 0%, #071f4b 60%, #05132c 100%);
  color: #c6d8f5;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head { max-width: 700px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { margin: 18px 0 0; }
.section-head .lead { margin-top: 18px; }
.section-head-left { margin-left: 0; text-align: left; }

/* Verdict block */

.verdict {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  background: #fff;
}
.verdict-score {
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(165deg, #0d3789, #071f4b);
  color: #b9cdec;
}
.verdict-score .eyebrow { margin-bottom: 18px; }
.verdict-big {
  font-size: 4.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
}
.verdict-big span { font-size: 1.5rem; color: #8fabd6; font-weight: 700; }
.verdict-score .stars { margin: 14px 0 20px; }
.verdict-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
}
.verdict-body { padding: 40px 40px 36px; }
.verdict-body h2 { font-size: 1.75rem; margin-bottom: 14px; }
.verdict-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}
.verdict-split h4 { margin-bottom: 12px; }
.verdict-split ul { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.verdict-split li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
}
.verdict-split li::before {
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
  font-size: 1.05rem;
}
.verdict-yes li::before { content: "\2713"; color: var(--green); }
.verdict-no li::before { content: "\2715"; color: var(--red); }

/* Before / after */

.flow {
  display: grid;
  grid-template-columns: 1fr 62px 1fr;
  gap: 0;
  align-items: center;
}
.flow-card {
  padding: 32px 30px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.flow-card.flow-win {
  border-color: rgba(22, 102, 216, .35);
  box-shadow: 0 20px 44px rgba(22, 102, 216, .16);
}
.flow-tag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.flow-tag-old { background: var(--red-soft); color: #9f1239; }
.flow-tag-new { background: var(--tint-deep); color: var(--blue-dark); }
.flow-card h3 { margin-bottom: 18px; }
.flow-steps { list-style: none; margin: 0; padding: 0; counter-reset: fs; }
.flow-steps li {
  position: relative;
  counter-increment: fs;
  padding: 10px 0 10px 40px;
  font-size: .96rem;
  border-bottom: 1px dashed var(--border);
}
.flow-steps li:last-child { border-bottom: none; }
.flow-steps li::before {
  content: counter(fs);
  position: absolute;
  left: 0;
  top: 9px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f5fb;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.flow-win .flow-steps li::before { background: var(--blue); color: #fff; }
.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--blue);
}
.flow-arrow svg { width: 34px; height: 34px; }

/* Steps timeline */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
}
.step {
  position: relative;
  padding: 0 12px;
  text-align: center;
}
.step-num {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--tint-deep);
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--sh-sm);
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(22, 102, 216, .3);
}
.step h3 { margin-bottom: 9px; }
.step p { font-size: .97rem; }
.step-meta {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--tint-deep);
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 700;
}

/* Scoreboard */

.scoreboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 44px;
}
.sb-card {
  padding: 28px 22px;
  text-align: center;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}
.sb-card.sb-win {
  background: linear-gradient(165deg, #0f3f96, #071f4b);
  border-color: transparent;
  box-shadow: var(--sh);
}
.sb-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--muted);
}
.sb-win .sb-num { color: #fff; }
.sb-of { font-size: 1.1rem; font-weight: 700; color: #9fb8dd; }
.sb-name {
  margin-top: 10px;
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}
.sb-win .sb-name { color: #fff; }
.sb-sub { font-size: .84rem; color: var(--muted); }
.sb-win .sb-sub { color: #9fb8dd; }

/* Feature cards */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .18s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }
.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(160deg, var(--blue-light), var(--blue));
  box-shadow: 0 10px 22px rgba(22, 102, 216, .28);
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon-green { background: linear-gradient(160deg, #34d399, #16a34a); box-shadow: 0 10px 22px rgba(22, 163, 74, .26); }
.card-icon-amber { background: linear-gradient(160deg, #fbbf24, #f59e0b); box-shadow: 0 10px 22px rgba(245, 158, 11, .28); }

/* Split media rows */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-flip .split-media { order: 2; }
.split-media { display: flex; justify-content: center; }
.split-media img {
  width: 100%;
  max-width: 430px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.split-copy h2 { margin-bottom: 20px; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li {
  position: relative;
  padding-left: 36px;
  font-weight: 600;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.section-dark .check-list li { color: #fff; }
.section-dark .check-list li::before { background-color: #34d399; }

/* Scorecard */

.scorecard {
  max-width: 780px;
  margin: 0 auto;
  padding: 12px 34px 30px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
}
.score-row {
  display: grid;
  grid-template-columns: 190px 1fr 52px;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.score-row + .score-row { margin-top: 16px; border-top: 1px solid var(--border-soft); }
.score-name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.score-bar { height: 11px; background: #edf2fa; border-radius: 999px; overflow: hidden; }
.score-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
}
.score-bar.bar-amber span { background: linear-gradient(90deg, #fbbf24, var(--amber)); }
.score-value {
  text-align: right;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--ink);
}

/* Comparison table */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
}
table { width: 100%; border-collapse: collapse; font-size: .96rem; }
thead th {
  padding: 18px 20px;
  text-align: left;
  background: linear-gradient(165deg, #0d3789, #0a2450);
  color: #fff;
  font-size: .84rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
thead th.th-win { background: linear-gradient(165deg, var(--blue-light), var(--blue)); }
tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: #fafcff; }
tbody td:first-child { font-weight: 700; color: var(--ink); }
td.cell-win { background: rgba(22, 102, 216, .055); color: var(--ink); font-weight: 650; }
tbody tr:nth-child(even) td.cell-win { background: rgba(22, 102, 216, .08); }
.mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mark::before {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
}
.mark-yes::before { content: "\2713"; background: var(--green); }
.mark-no::before { content: "\2715"; background: #c3cede; }

/* Pros and cons */

.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc-card {
  padding: 32px 30px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}
.pc-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}
.pc-chip {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.pc-pros .pc-chip { background: var(--green); }
.pc-cons .pc-chip { background: var(--red); }
.pc-card ul { list-style: none; margin: 0; padding: 0; }
.pc-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: .96rem;
}
.pc-card li::before {
  position: absolute;
  left: 0; top: -1px;
  font-weight: 800;
  font-size: 1.05rem;
}
.pc-pros li::before { content: "+"; color: var(--green); }
.pc-cons li::before { content: "\2212"; color: var(--red); }

.callout {
  max-width: 820px;
  margin: 34px auto 0;
  padding: 22px 26px;
  border-radius: var(--r);
  background: var(--amber-soft);
  border: 1px solid #f7e3bd;
  font-size: .95rem;
  color: #7c5310;
}
.callout strong { color: #5c3d07; }

/* Quote */

.quote {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 44px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border-soft);
  border-left: 5px solid var(--blue);
  box-shadow: var(--sh-sm);
  font-size: 1.36rem;
  line-height: 1.45;
  font-weight: 650;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* Prose */

.prose p { margin-bottom: 18px; font-size: 1.04rem; }
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--ink); }

/* Method box */

.method {
  max-width: 860px;
  margin: 0 auto;
  padding: 26px 30px;
  border-radius: var(--r);
  background: #fff;
  border: 1px dashed var(--border);
}
.method .eyebrow { margin-bottom: 14px; }
.method p { font-size: .96rem; color: var(--muted); }

/* FAQ */

.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.faq summary {
  position: relative;
  padding: 20px 60px 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.01rem;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tint-deep);
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 700;
}
.faq details[open] summary::after { content: "\2212"; background: var(--blue); color: #fff; }
.faq details p {
  padding: 0 24px 22px;
  font-size: .98rem;
}

/* Read next */

.readnext {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.readnext-body { flex: 1 1 auto; }
.readnext .eyebrow { margin-bottom: 12px; }
.readnext h3 { margin-bottom: 6px; font-size: 1.28rem; }
.readnext p { font-size: .95rem; }

/* CTA band */

.cta-band {
  padding: 88px 0;
  text-align: center;
  background:
    radial-gradient(700px 380px at 20% 15%, rgba(52, 211, 153, .22), transparent 60%),
    linear-gradient(150deg, #1666d8 0%, #0d3789 55%, #071f4b 100%);
  color: #c6d8f5;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin: 20px auto 0; }
.cta-band .lead { color: #cfe1ff; margin: 20px auto 0; max-width: 56ch; }
.cta-band .cta-row { margin-top: 34px; }
.cta-band .cta-note { margin-top: 20px; }
.cta-band-stars { display: flex; justify-content: center; margin-bottom: 6px; }

/* Footer */

.site-footer {
  background: #06122a;
  color: #8ba3c7;
  padding: 56px 0 44px;
  font-size: .9rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.02em;
}
.footer-logo em { font-style: normal; color: #6fa8ff; }
.footer-logo .logo-mark { width: 29px; height: 29px; }
.footer-logo .logo-the { color: #7f97bd; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.footer-nav a { color: #b9cdec; }
.footer-nav a:hover { color: #fff; }
.disclosure {
  margin-top: 26px;
  font-size: .84rem;
  line-height: 1.6;
  color: #8ba3c7;
}
.disclosure strong { color: #d7e4f7; }
.legal {
  margin-top: 14px;
  font-size: .79rem;
  line-height: 1.55;
  color: #6d84a8;
}

/* Sticky mobile CTA */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(11, 26, 51, .1);
}
.sticky-name { font-weight: 800; font-size: .92rem; color: var(--ink); line-height: 1.2; }
.sticky-sub { font-size: .79rem; color: var(--muted); }

/* Responsive */

@media (max-width: 1020px) {
  .header-nav { display: none; }
  .hero { padding-bottom: 110px; }
  .hero-inner, .split { grid-template-columns: 1fr; gap: 44px; }
  .split-flip .split-media { order: 0; }
  .verdict { grid-template-columns: 1fr; }
  .statbar-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: 1fr; gap: 18px; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .logo { font-size: .95rem; gap: 8px; }
  .logo-mark { width: 27px; height: 27px; border-radius: 8px; }
  .section { padding: 64px 0; }
  .hero { padding: 54px 0 100px; }
  .section-head { margin-bottom: 38px; }
  .grid-3, .grid-2, .pc-grid, .verdict-split, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { padding: 0; }
  .step-num { margin-bottom: 16px; width: 58px; height: 58px; font-size: 1.3rem; }
  .scoreboard { grid-template-columns: 1fr; gap: 14px; }
  .sb-card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 20px 22px; }
  .sb-num { font-size: 2.2rem; }
  .seal { display: none; }
  .score-ring { width: 152px; height: 152px; }
  .verdict-body { padding: 30px 24px 28px; }
  .verdict-score { padding: 34px 24px; }
  .verdict-big { font-size: 3.6rem; }
  .card, .flow-card, .pc-card { padding: 24px 22px; }
  .scorecard { padding: 8px 22px 24px; }
  .score-row { grid-template-columns: 1fr 52px; gap: 10px 14px; }
  .score-bar { grid-column: 1 / -1; }
  .quote { padding: 28px 24px; font-size: 1.14rem; }
  .readnext { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 22px; }
  .readnext .btn { width: 100%; }
  .cta-band { padding: 64px 0; }
  .cta-row .btn { width: 100%; }
  .hero-rating { width: 100%; }
  thead th, tbody td { padding: 13px 14px; font-size: .9rem; }
  .footer-top { flex-direction: column; gap: 20px; }
}

@media (max-width: 420px) {
  .logo-the { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .progress { display: none; }
}
