@font-face {
  font-family: Open Sans;
  src: url("open-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}
:root {
  --ink: #101a32;
  --muted: #58657b;
  --blue: #075aea;
  --blue-dark: #0647bb;
  --navy: #062844;
  --line: #e1e7ef;
  --soft: #f5f8fc;
  --pale: #edf5ff;
  --green: #008754;
  --gold: #ffc746;
  --radius: 16px;
  --shadow: 0 12px 38px #12264a08;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family:
    Open Sans,
    Arial,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
select,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
svg {
  display: block;
  width: 22px;
  height: 22px;
  flex: none;
}
button svg,
a svg {
  pointer-events: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.13;
}
h2 {
  font-size: 28px;
  font-weight: 800;
}
h3 {
  font-size: 20px;
  font-weight: 800;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
a,
button,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #528cff;
  outline-offset: 5px;
}
section[id] {
  scroll-margin-top: 30px;
}
.container {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.narrow {
  max-width: 1000px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.brand-mark {
  width: 36px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
}
.brand-mark svg {
  width: 24px;
  height: 24px;
}
.brand small {
  font-size: 10px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  display: block;
  line-height: 1.1;
  color: var(--muted);
  font-weight: 600;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 700;
}
.main-nav a {
  padding: 10px 0;
  color: var(--muted);
}
.main-nav a:hover {
  color: var(--blue);
}
.main-nav .nav-compare {
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav svg {
  width: 16px;
  height: 16px;
}
.menu-toggle {
  display: none;
  background: var(--soft);
  border-radius: 8px;
  padding: 11px;
  color: var(--ink);
}
.hero {
  padding: 58px 0 34px;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.9px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow svg {
  width: 16px;
  height: 16px;
}
.hero h1 {
  max-width: 810px;
  margin: auto;
}
.hero .intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 650px;
  margin: 20px auto 0;
  line-height: 1.8;
}
.hero-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  color: var(--muted);
  font-size: 11px;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-meta svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}
.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.disclosure {
  font-size: 10px;
  color: #6b7484;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}
.disclosure button {
  background: none;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
}
.section-label {
  font-size: 11px;
  letter-spacing: 1.3px;
  font-weight: 800;
  text-transform: uppercase;
}
.result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.result-heading .muted {
  font-size: 11px;
}
.muted {
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 7px;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  transition:
    background 0.18s,
    transform 0.18s;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cdd7e5;
  white-space: nowrap;
}
.btn:hover {
  background: #f0f5fc;
  transform: translateY(-1px);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 3px 7px #075aea12;
}
.btn-primary:hover {
  background: var(--blue-dark);
}
.btn-soft {
  background: var(--pale);
  color: var(--blue);
  border-color: #bcd4fa;
}
.btn-green {
  background: #009463;
  color: white;
  border-color: #009463;
}
.btn-green:hover {
  background: #007c52;
}
.btn-block {
  width: 100%;
}
.micro {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.rank {
  display: grid;
  place-items: center;
  flex: none;
  width: 32px;
  height: 32px;
  background: #f0f3f8;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}
.rank-first {
  background: #fff0bf;
  color: #775000;
}
.logo {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  flex: none;
  border-radius: 11px;
  border: 1px solid #dee6ef;
  background: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
}
.logo svg {
  width: 34px;
  height: 34px;
}
.logo-drive {
  background: linear-gradient(135deg, #1680ff, #034fdf);
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #dce7fc;
}
.logo-genie {
  color: #fff;
  background: linear-gradient(145deg, #277c96, #07314a);
  border: 3px solid #edf1f5;
}
.logo-zutobi {
  color: #fff;
  background: linear-gradient(135deg, #20bac2, #00979e);
  border: 4px solid #f1f8fa;
  font-size: 37px;
  padding-right: 3px;
}
.logo-aceable {
  color: #08afca;
  position: relative;
  letter-spacing: -5px;
  padding-right: 5px;
}
.logo-aceable:after {
  content: "";
  position: absolute;
  height: 4px;
  width: 40px;
  background: #fff;
  transform: rotate(-17deg);
}
.logo-dmv {
  color: #126b85;
  background: #f3f7f9;
}
.identity {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.identity h3 {
  font-size: 19px;
  letter-spacing: -0.65px;
}
.identity .tagline {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.product-summary {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.score {
  --score: 94;
  --ring: var(--blue);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: conic-gradient(var(--ring) calc(var(--score) * 1%), #e2e8ee 0);
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
  transform: rotate(-20deg);
}
.score:before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}
.score strong {
  font-size: 23px;
  font-weight: 800;
  z-index: 1;
  transform: rotate(20deg);
  letter-spacing: -1px;
}
.score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.score-wrap .micro {
  font-size: 9px;
}
.score-large {
  width: 90px;
  height: 90px;
  --ring: var(--green);
}
.score-large:before {
  inset: 5px;
}
.score-large strong {
  font-size: 31px;
}
.score-small {
  width: 44px;
  height: 44px;
}
.score-small:before {
  inset: 2.5px;
}
.score-small strong {
  font-size: 15px;
}
.winner-card {
  position: relative;
  border: 1.5px solid #efbe49;
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(120deg, #fff 55%, #fbfdff);
  box-shadow: var(--shadow);
}
.winner-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: absolute;
  left: 28px;
  top: -14px;
  background: var(--gold);
  padding: 5px 17px;
  border-radius: 6px;
  color: #3b2a02;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.6;
  box-shadow: 0 2px 3px #cf991411;
}
.winner-ribbon svg {
  width: 14px;
  height: 14px;
}
.winner-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.winner-heading .identity h3 {
  font-size: 26px;
}
.winner-heading .tagline {
  color: #09658c;
  font-weight: 800;
  font-size: 12px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 24px;
  font-size: 12px;
}
.feature-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.feature-list svg {
  color: var(--green);
  width: 16px;
  height: 16px;
}
.winner-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.winner-actions .btn {
  flex: 1;
}
.runner-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.runner-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 32px 1fr 68px 140px;
  gap: 22px;
  align-items: center;
  padding: 17px 22px;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.runner-card:hover {
  border-color: #b4c8e6;
  box-shadow: 0 5px 18px #19366407;
}
.runner-card .identity .logo {
  width: 44px;
  height: 44px;
  font-size: 31px;
}
.runner-card .identity .logo svg {
  width: 29px;
  height: 29px;
}
.runner-card .identity h3 {
  font-size: 16px;
}
.runner-card .score {
  width: 51px;
  height: 51px;
}
.runner-card .score strong {
  font-size: 19px;
}
.runner-card .btn {
  min-height: 40px;
  font-size: 11px;
  padding: 9px 13px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 27px 0 0;
}
.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trust-item > svg {
  width: 20px;
  height: 20px;
  color: #3c6a93;
  margin-top: 3px;
}
.trust-item strong {
  font-size: 11px;
  display: block;
}
.trust-item p {
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}
.table-shell {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.table-scroll {
  overflow-x: auto;
  scrollbar-color: #bacbdf #f4f7fb;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 11px;
  min-width: 770px;
}
.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  padding: 15px 10px;
}
.comparison-table tr > :last-child {
  border-right: 0;
}
.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}
.comparison-table tr > :first-child {
  width: 220px;
  text-align: left;
  padding-left: 24px;
  font-weight: 600;
}
.comparison-table thead th {
  vertical-align: bottom;
  background: #f8fafc;
  padding-top: 24px;
  padding-bottom: 22px;
  position: relative;
}
.comparison-table thead .logo {
  margin: 12px auto 10px;
  width: 45px;
  height: 45px;
  font-size: 32px;
}
.comparison-table thead .logo svg {
  width: 29px;
  height: 29px;
}
.comparison-table .best-column {
  background: #f0fcf6;
}
.comparison-table thead .best-column {
  background: #e9f8ef;
}
.table-best {
  background: var(--navy);
  color: #fff;
  font-size: 9px;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}
.comparison-table .score-row td {
  font-size: 23px;
  font-weight: 800;
  padding-block: 16px;
  letter-spacing: -1px;
}
.comparison-table td > svg {
  margin: auto;
  width: 17px;
  height: 17px;
}
.yes {
  color: var(--green);
}
.no {
  color: #b84347;
}
.comparison-table .price-row strong {
  font-size: 17px;
  display: block;
  letter-spacing: -0.5px;
}
.comparison-table .price-row small {
  font-size: 9px;
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.comparison-table .btn {
  padding: 10px 12px;
  min-height: 40px;
  font-size: 10px;
}
.table-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}
.table-hint {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 10px;
}
.table-hint svg {
  width: 14px;
  height: 14px;
}
.scoreboard {
  background: var(--navy);
  padding: 0 0 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.scoreboard:before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  left: calc(50% - 340px);
  top: -440px;
  border: 1px solid #ffffff0b;
  box-shadow:
    0 0 0 80px #ffffff02,
    0 0 0 160px #ffffff02;
  border-radius: 50%;
  pointer-events: none;
}
.scoreboard .hero {
  position: relative;
  padding-top: 49px;
}
.scoreboard .eyebrow {
  color: #98c3ee;
}
.scoreboard .intro {
  color: #bfcee0;
}
.scoreboard .hero-meta {
  color: #c1d2e4;
}
.scoreboard .hero-meta svg {
  color: #75dcb2;
}
.scoreboard .disclosure {
  color: #b6c8da;
}
.score-winner {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 27px;
  box-shadow: 0 0 0 5px #ffffff0d;
}
.score-winner .rank {
  background: var(--blue);
  color: white;
}
.score-winner-head {
  display: flex;
  align-items: center;
  gap: 17px;
}
.score-winner-head .identity {
  flex: 1;
}
.score-winner-head .score {
  margin-right: 10px;
}
.score-winner-head .identity h3 {
  font-size: 25px;
}
.score-winner-head .tagline {
  color: #174b87;
  font-size: 12px;
}
.score-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.category-tile {
  background: #f1f7fd;
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
}
.category-tile strong {
  font-size: 22px;
  letter-spacing: -0.6px;
}
.category-tile span {
  display: block;
  font-size: 9px;
  color: #3d5575;
  margin-top: 3px;
}
.category-tile .bar {
  width: 56%;
  height: 3px;
  margin: 10px auto 0;
  background: #dce8f6;
  border-radius: 8px;
  overflow: hidden;
}
.category-tile .bar i {
  display: block;
  background: #7baaea;
  height: 100%;
  width: calc(var(--score) * 1%);
}
.score-runners {
  padding-top: 20px;
}
.score-runners .runner-card {
  grid-template-columns: 32px 1fr 66px 145px;
}
.score-runners .runner-card .score {
  width: 54px;
  height: 54px;
}
.score-runners .runner-card .score strong {
  font-size: 20px;
}
.score-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  margin-top: 17px;
}
.score-legend svg {
  width: 14px;
  height: 14px;
}
.winner-section {
  background: linear-gradient(135deg, #edf7ff, #f5faff 60%, #e9f3ff);
  padding-bottom: 44px;
  border-bottom: 1px solid #dfeafa;
}
.winner-section .hero {
  padding: 43px 0 28px;
}
.winner-section .eyebrow {
  color: #a86a00;
}
.winner-section .eyebrow svg {
  color: #eca600;
  width: 22px;
  height: 22px;
}
.spotlight-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: #fff;
  border: 1px solid #dbe6f3;
  border-radius: 18px;
  box-shadow: 0 15px 50px #30639b0a;
  overflow: hidden;
}
.spotlight-copy {
  padding: 32px;
}
.spotlight-copy .winner-heading {
  gap: 14px;
}
.spotlight-copy .winner-heading .identity h3 {
  font-size: 25px;
}
.spotlight-copy .score {
  width: 67px;
  height: 67px;
}
.spotlight-copy .score strong {
  font-size: 23px;
}
.spotlight-copy .feature-list {
  font-size: 11px;
  gap: 13px 16px;
  margin: 23px 0;
}
.spotlight-copy > .micro {
  text-align: center;
  margin-top: 9px;
}
.phone-scene {
  background: radial-gradient(ellipse at 50% 65%, #c7e2ff, #f0f7ff 70%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 27px;
  overflow: hidden;
  min-height: 368px;
}
.phone-scene:before,
.phone-scene:after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: 65px;
  left: calc(50% - 170px);
  border: 1px solid #c6def8;
  border-radius: 50%;
}
.phone-scene:after {
  width: 260px;
  height: 260px;
  left: calc(50% - 130px);
  top: 106px;
}
.phone {
  width: 213px;
  background: #fff;
  border: 7px solid #12212c;
  border-radius: 30px;
  box-shadow: 10px 18px 20px #28538325;
  transform: rotate(5deg);
  min-height: 400px;
  z-index: 1;
  padding: 26px 12px 16px;
  position: relative;
  text-align: center;
}
.phone-island {
  width: 63px;
  height: 14px;
  background: #12212c;
  position: absolute;
  top: 0;
  left: calc(50% - 31px);
  border-radius: 0 0 10px 10px;
}
.phone-top {
  font-size: 9px;
  color: var(--blue);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.phone-top svg {
  width: 13px;
  height: 13px;
}
.phone-progress {
  height: 3px;
  background: #e9eff8;
  margin-top: 15px;
  border-radius: 3px;
}
.phone-progress:before {
  content: "";
  display: block;
  width: 58%;
  height: 100%;
  background: var(--blue);
}
.phone-count {
  font-size: 7px;
  color: var(--muted);
  margin: 9px 0;
}
.phone h4 {
  font-size: 12px;
  line-height: 1.5;
  margin: 10px 0 17px;
}
.road-sign {
  width: 55px;
  height: 55px;
  border: 3px solid #1a242d;
  outline: 3px solid #f7c333;
  border-radius: 5px;
  background: #f7c333;
  transform: rotate(45deg);
  margin: 24px auto 26px;
  display: grid;
  place-items: center;
}
.road-sign svg {
  transform: rotate(-45deg);
  width: 34px;
  height: 34px;
  color: #15202b;
}
.phone-option {
  font-size: 7px;
  padding: 8px 6px;
  border: 1px solid #e0e5ed;
  display: flex;
  gap: 5px;
  border-radius: 4px;
  margin: 7px 0;
  text-align: left;
  align-items: center;
}
.phone-option:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid #9ba7b5;
  border-radius: 50%;
  flex: none;
}
.phone-option.correct {
  border-color: #13a26d;
  background: #f1fff7;
  color: #036c45;
}
.phone-option.correct:before {
  border: 2px solid #0aa866;
}
.phone-caption {
  font-size: 8px;
  color: var(--green);
  margin-top: 10px;
}
.phone-label {
  position: absolute;
  bottom: 17px;
  right: 16px;
  z-index: 2;
  color: #5c7390;
  background: #f5faffed;
  border: 1px solid #d4e4f4;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 8px;
}
.alternatives {
  padding-top: 32px;
}
.alternatives h2 {
  font-size: 22px;
}
.compact .runner-card {
  padding-block: 12px;
}
.compact .runner-card .logo {
  width: 36px;
  height: 36px;
  font-size: 26px;
}
.compact .runner-card .logo svg {
  width: 24px;
  height: 24px;
}
.compact .runner-card .identity h3 {
  font-size: 14px;
}
.compact .runner-card .score {
  width: 39px;
  height: 39px;
}
.compact .runner-card .score:before {
  inset: 2px;
}
.compact .runner-card .score strong {
  font-size: 14px;
}
.features-page {
  background: linear-gradient(#f7faff, #fff 540px);
}
.feature-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding-top: 12px;
}
.feature-column {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 28px 16px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.feature-column.featured {
  border-color: #e9b643;
  background: linear-gradient(#fffcf4, #fff 160px);
}
.feature-column .winner-ribbon {
  left: -1px;
  right: -1px;
  top: -13px;
  border-radius: 7px 7px 0 0;
  font-size: 10px;
  padding: 5px 8px;
}
.feature-column .logo {
  margin: auto auto 12px;
  width: 57px;
  height: 57px;
}
.feature-column h3 {
  font-size: 15px;
  text-align: center;
  letter-spacing: -0.5px;
}
.feature-column .best-label {
  font-size: 9px;
  text-align: center;
  color: var(--muted);
  min-height: 37px;
  margin-top: 7px;
}
.feature-column .score {
  margin: 14px auto 20px;
  width: 49px;
  height: 49px;
}
.feature-column .score:before {
  inset: 3px;
}
.feature-column .score strong {
  font-size: 17px;
}
.icon-features {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid #edf0f4;
  display: grid;
  gap: 25px;
  flex: 1;
}
.icon-features li {
  font-size: 10px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 34px;
}
.icon-features svg {
  color: #006b91;
  width: 17px;
  height: 17px;
  margin-top: 2px;
}
.icon-features .subscription svg {
  color: #cb5260;
}
.feature-column .btn {
  margin-top: 25px;
  font-size: 10px;
  padding: 10px 8px;
  min-height: 42px;
}
.feature-bottom {
  margin-top: 25px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  background: #fafcfe;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}
.feature-bottom p {
  color: var(--muted);
  font-size: 11px;
}
.feature-bottom a {
  white-space: nowrap;
}
.fit-page {
  background: linear-gradient(#fbfdff, #fff 600px);
}
.fit-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.filter-chip {
  font-size: 11px;
  font-weight: 700;
  min-height: 38px;
  padding: 8px 15px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  color: #4c5d74;
}
.filter-chip:hover {
  border-color: #9bbdf0;
}
.filter-chip[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.fit-list {
  display: grid;
  gap: 13px;
}
.fit-card {
  display: grid;
  grid-template-columns: 248px 1fr 57px 32px;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 10px 20px 10px 10px;
  background: #fff;
  min-height: 115px;
  transition:
    border-color 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
  text-align: left;
  width: 100%;
  color: var(--ink);
}
.fit-card:hover {
  border-color: #a0c0f1;
  transform: translateX(3px);
  box-shadow: 0 6px 24px #20447709;
}
.fit-card.best {
  border-color: #8abafa;
  box-shadow: 0 2px 9px #448be809;
}
.fit-category {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px;
  border-radius: 7px;
  background: #f1f8ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.25px;
  color: #076399;
}
.fit-category > svg {
  width: 35px;
  height: 35px;
}
.fit-card[data-product="drive"] .fit-category {
  background: #fffbef;
  color: #a46b00;
}
.fit-card[data-product="drive"] .fit-category svg {
  color: #edaa13;
}
.fit-card[data-product="zutobi"] .fit-category {
  color: #213c82;
  background: #f4f6fd;
}
.fit-card[data-product="aceable"] .fit-category {
  color: #145ae6;
}
.fit-card[data-product="dmv"] .fit-category {
  color: #008891;
  background: #effcfd;
}
.fit-card[data-product="dmv"] .fit-category svg {
  color: #e578a0;
}
.fit-description h3 {
  font-size: 18px;
}
.fit-description p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
  max-width: 430px;
}
.fit-card > .score {
  width: 48px;
  height: 48px;
}
.fit-card > .score strong {
  font-size: 17px;
}
.fit-card > .score:before {
  inset: 3px;
}
.fit-card > .chevron {
  width: 18px;
  height: 18px;
  color: #6688b3;
}
.fit-card.best > .chevron {
  color: var(--blue);
}
.fit-help {
  margin-top: 22px;
  border: 1px solid #c7e3ff;
  background: #eff8ff;
  padding: 23px 28px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.fit-help > svg {
  width: 40px;
  height: 40px;
  color: var(--blue);
}
.fit-help div {
  flex: 1;
}
.fit-help h3 {
  font-size: 17px;
}
.fit-help p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}
.filter-status {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 13px;
  min-height: 18px;
}
.fit-card[hidden] {
  display: none;
}
.editorial {
  margin-top: 66px;
  padding: 49px 0;
  background: #f8fafc;
  border-block: 1px solid var(--line);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
}
.editorial .eyebrow {
  justify-content: flex-start;
  font-size: 9px;
  margin-bottom: 12px;
}
.editorial h2 {
  font-size: 25px;
}
.editorial p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
  line-height: 1.9;
}
.criteria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 20px;
  margin-top: 6px;
}
.criterion {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.criterion svg {
  width: 20px;
  height: 20px;
  color: #236496;
  margin-top: 1px;
}
.criterion h3 {
  font-size: 12px;
  letter-spacing: -0.2px;
}
.criterion p {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 6px;
}
.faq-section {
  padding: 45px 0 50px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
}
.faq-section h2 {
  font-size: 26px;
}
.faq-section > div > p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 12px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 26px 16px 0;
  position: relative;
  font-size: 12px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 12px;
  font-size: 22px;
  font-weight: 400;
  color: #7b8ba2;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 11px;
  color: var(--muted);
  padding: 0 25px 17px 0;
  line-height: 1.8;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #fff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-top .brand {
  font-size: 15px;
}
.footer-top .brand-mark {
  width: 30px;
  height: 32px;
}
.footer-top .brand-mark svg {
  width: 20px;
  height: 20px;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 10px;
  color: var(--muted);
}
.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 9px;
  color: #667489;
  border-top: 1px solid #edf0f5;
  margin-top: 23px;
  padding-top: 20px;
}
.footer-note p {
  max-width: 720px;
}
.footer-note span {
  white-space: nowrap;
}
dialog {
  border: 1px solid #dce5f1;
  border-radius: 18px;
  padding: 0;
  width: min(620px, calc(100% - 32px));
  max-height: calc(100% - 40px);
  color: var(--ink);
  box-shadow: 0 24px 100px #06142f40;
}
dialog::backdrop {
  background: #06162e9c;
  backdrop-filter: blur(4px);
}
body.dialog-open {
  overflow: hidden;
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.dialog-top h2 {
  font-size: 22px;
}
.close-dialog {
  background: var(--soft);
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: none;
}
.close-dialog svg {
  width: 17px;
  height: 17px;
}
.dialog-body {
  padding: 27px 28px;
}
.dialog-body .review-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dialog-body .review-heading .identity {
  flex: 1;
}
.dialog-body .review-heading .identity h3 {
  font-size: 23px;
}
.dialog-body > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 20px;
}
.review-label {
  font-size: 10px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 23px;
}
.review-points {
  font-size: 12px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #425168;
}
.review-caveat {
  padding: 13px 15px;
  background: var(--soft);
  border-radius: 8px;
  font-size: 10px !important;
}
.dialog-body .btn {
  margin-top: 23px;
}
.dialog-body .micro {
  margin-top: 10px;
}
.gallery-page {
  background: #f7f9fd;
}
.gallery-hero {
  padding: 62px 0 39px;
}
.gallery-hero .eyebrow {
  justify-content: flex-start;
}
.gallery-hero h1 {
  max-width: 690px;
}
.gallery-hero > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 60px;
}
.variant-card {
  border: 1px solid #dae3ef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.variant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px #17376a13;
}
.variant-preview {
  display: block;
  background: #eef3fa;
  aspect-ratio: 1.3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 16px 13px 0;
}
.variant-preview img {
  width: 100%;
  height: auto;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 5px 18px #162e5520;
}
.variant-caption {
  padding: 22px;
}
.variant-number {
  font-size: 10px;
  letter-spacing: 1px;
  color: #7b899e;
  font-weight: 700;
  margin-bottom: 9px;
}
.variant-caption h2 {
  font-size: 19px;
}
.variant-caption p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 9px;
  min-height: 37px;
}
.variant-caption .preview-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--blue);
  font-weight: 800;
  margin-top: 20px;
}
.preview-link svg {
  width: 16px;
  height: 16px;
}
.gallery-note {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 24px;
  max-width: 770px;
}
.noscript-note {
  padding: 16px;
  background: #fff8df;
  color: #665015;
  text-align: center;
  font-size: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.inline-button {
  font: inherit;
  color: inherit;
  background: none;
  padding: 0;
}
.inline-button.text-link {
  color: var(--blue);
}
.fit-title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.fit-copy {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
  max-width: 430px;
}
.table-scroll {
  position: relative;
}
.skip-link {
  visibility: hidden;
}
.skip-link:focus {
  visibility: visible;
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 70px;
  }
  .container {
    max-width: 1160px;
  }
  .narrow {
    max-width: 1000px;
  }
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  .hero {
    padding-top: 44px;
  }
  .main-nav {
    gap: 22px;
  }
  .spotlight-copy {
    padding: 25px;
  }
  .spotlight-copy .winner-heading .identity h3 {
    font-size: 22px;
  }
  .spotlight-copy .feature-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .phone-scene {
    align-items: center;
    padding-bottom: 0;
  }
  .phone {
    margin-bottom: -50px;
  }
  .feature-columns {
    gap: 8px;
  }
  .feature-column {
    padding-inline: 11px;
  }
  .feature-column h3 {
    font-size: 13px;
  }
  .icon-features li {
    font-size: 9px;
    gap: 6px;
  }
  .fit-card {
    grid-template-columns: 210px 1fr 48px 18px;
    gap: 18px;
  }
  .fit-category {
    font-size: 12px;
    padding: 14px;
    gap: 12px;
  }
  .fit-category > svg {
    width: 30px;
    height: 30px;
  }
  .editorial-grid,
  .faq-section {
    gap: 40px;
  }
  .gallery-grid {
    gap: 16px;
  }
  .variant-caption {
    padding: 18px;
  }
  .variant-caption h2 {
    font-size: 17px;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    min-height: 73px;
  }
  .brand {
    font-size: 16px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .brand-mark {
    width: 32px;
    height: 34px;
  }
  .main-nav {
    gap: 18px;
  }
  .main-nav > a {
    font-size: 11px;
  }
  .main-nav > a:first-child {
    display: none;
  }
  .hero {
    padding: 37px 0 29px;
  }
  .hero h1 {
    max-width: 610px;
  }
  .hero .intro {
    font-size: 13px;
    max-width: 540px;
    margin-top: 16px;
  }
  .hero-meta {
    font-size: 10px;
    gap: 14px;
    margin-top: 19px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
  }
  .runner-card {
    grid-template-columns: 27px 1fr 48px 108px;
    padding: 15px;
    gap: 13px;
  }
  .runner-card .identity {
    gap: 11px;
  }
  .runner-card .identity h3 {
    font-size: 15px;
  }
  .runner-card .identity .tagline {
    font-size: 10px;
  }
  .runner-card .score {
    width: 45px;
    height: 45px;
  }
  .runner-card .score strong {
    font-size: 16px;
  }
  .rank {
    width: 27px;
    height: 27px;
    font-size: 11px;
  }
  .winner-card {
    padding: 28px 23px 22px;
  }
  .winner-heading .identity h3 {
    font-size: 24px;
  }
  .winner-heading .identity {
    gap: 12px;
  }
  .winner-heading .score-large {
    width: 75px;
    height: 75px;
  }
  .winner-heading .score-large strong {
    font-size: 26px;
  }
  .winner-actions {
    gap: 16px;
  }
  .winner-actions .micro {
    max-width: 155px;
  }
  .trust-strip {
    gap: 17px;
  }
  .trust-item p {
    font-size: 9px;
  }
  .trust-item strong {
    font-size: 10px;
  }
  .trust-item > svg {
    width: 17px;
    height: 17px;
  }
  .table-hint {
    display: flex;
  }
  .table-note {
    font-size: 9px;
  }
  .comparison-table tr > :first-child {
    width: 185px;
    padding-left: 18px;
  }
  .table-scroll:focus-visible {
    outline-offset: -3px;
  }
  .scoreboard .hero {
    padding-top: 34px;
  }
  .scoreboard {
    padding-bottom: 28px;
  }
  .score-winner {
    padding: 23px;
  }
  .score-winner-head {
    flex-wrap: wrap;
    gap: 13px;
  }
  .score-winner-head > .identity {
    flex: 1;
  }
  .score-winner-head .identity h3 {
    font-size: 22px;
  }
  .score-winner-head > .score {
    width: 58px;
    height: 58px;
    margin-right: 0;
  }
  .score-winner-head > .btn {
    margin-left: 40px;
    width: calc(100% - 40px);
  }
  .score-runners .runner-card {
    grid-template-columns: 27px 1fr 48px 108px;
  }
  .score-runners .runner-card .score {
    width: 45px;
    height: 45px;
  }
  .score-runners .runner-card .score strong {
    font-size: 16px;
  }
  .score-category-grid {
    gap: 5px;
    margin-top: 18px;
  }
  .category-tile {
    padding: 13px 5px;
  }
  .category-tile strong {
    font-size: 19px;
  }
  .category-tile span {
    font-size: 8px;
  }
  .category-tile .bar {
    width: 70%;
  }
  .spotlight-card {
    grid-template-columns: 1.2fr 1fr;
  }
  .spotlight-copy {
    padding: 24px 20px;
  }
  .spotlight-copy .winner-heading {
    align-items: flex-start;
  }
  .spotlight-copy .winner-heading > .score {
    width: 49px;
    height: 49px;
  }
  .spotlight-copy .winner-heading > .score strong {
    font-size: 17px;
  }
  .spotlight-copy .winner-heading .identity {
    gap: 9px;
  }
  .spotlight-copy .winner-heading .identity .logo {
    width: 37px;
    height: 37px;
  }
  .spotlight-copy .winner-heading .identity .logo svg {
    width: 27px;
    height: 27px;
  }
  .spotlight-copy .winner-heading .identity h3 {
    font-size: 18px;
  }
  .spotlight-copy .winner-heading .tagline {
    font-size: 9px;
  }
  .spotlight-copy .feature-list {
    font-size: 10px;
  }
  .spotlight-copy .btn {
    font-size: 10px;
    padding-inline: 10px;
  }
  .phone {
    width: 196px;
  }
  .feature-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 14px;
  }
  .feature-column {
    padding: 24px 20px 18px;
  }
  .feature-column:first-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 145px 1fr;
    column-gap: 25px;
    align-items: start;
  }
  .feature-column:first-child .icon-features {
    grid-column: 2;
    grid-row: 1/6;
    border: 0;
    border-left: 1px solid #e9edf0;
    padding: 0 0 0 20px;
    gap: 11px;
  }
  .feature-column:first-child .btn {
    grid-column: 1;
    margin-top: 0;
  }
  .feature-column:first-child .score {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .feature-column h3 {
    font-size: 17px;
  }
  .feature-column .best-label {
    min-height: 0;
  }
  .icon-features {
    gap: 18px;
  }
  .icon-features li {
    font-size: 11px;
    gap: 9px;
    min-height: 28px;
  }
  .feature-column .btn {
    font-size: 11px;
  }
  .feature-bottom {
    font-size: 11px;
    padding: 18px;
  }
  .feature-bottom p {
    font-size: 10px;
  }
  .fit-card {
    grid-template-columns: 170px 1fr 42px 14px;
    gap: 13px;
    padding-right: 14px;
    min-height: 108px;
  }
  .fit-category {
    gap: 9px;
    padding: 12px;
    font-size: 11px;
  }
  .fit-category > svg {
    width: 27px;
    height: 27px;
  }
  .fit-description h3 {
    font-size: 16px;
  }
  .fit-description p {
    font-size: 10px;
  }
  .fit-card > .score {
    width: 40px;
    height: 40px;
  }
  .fit-card > .score strong {
    font-size: 14px;
  }
  .fit-card > .chevron {
    width: 14px;
  }
  .fit-help {
    padding: 20px;
    gap: 14px;
  }
  .fit-help > svg {
    width: 33px;
    height: 33px;
  }
  .fit-help h3 {
    font-size: 15px;
  }
  .fit-help .btn {
    font-size: 10px;
    padding-inline: 13px;
  }
  .editorial {
    margin-top: 45px;
    padding: 35px 0;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .editorial p {
    max-width: 650px;
  }
  .criteria {
    gap: 22px 26px;
  }
  .faq-section {
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .faq-section h2 {
    font-size: 24px;
  }
  .faq-section > div > p {
    margin-top: 9px;
  }
  .footer-top {
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 9px;
  }
  .footer-note {
    flex-direction: column;
    gap: 12px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-hero {
    padding-top: 42px;
  }
  .variant-caption h2 {
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }
  h1 {
    font-size: 32px;
    letter-spacing: -1.35px;
  }
  .header-inner {
    min-height: 69px;
    position: relative;
  }
  .menu-toggle {
    display: grid;
  }
  .main-nav {
    display: none;
    position: absolute;
    z-index: 10;
    right: 0;
    top: 62px;
    width: 220px;
    padding: 14px 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 35px #16294920;
    gap: 0;
  }
  .main-nav.is-open {
    display: grid;
  }
  .main-nav > a:first-child {
    display: block;
  }
  .main-nav > a {
    font-size: 12px;
    padding-block: 12px;
  }
  .hero {
    padding-top: 31px;
  }
  .hero .intro {
    font-size: 12px;
    line-height: 1.8;
  }
  .hero-meta {
    gap: 9px;
    font-size: 9px;
    flex-wrap: wrap;
  }
  .hero-meta span {
    gap: 4px;
  }
  .hero-meta svg {
    width: 12px;
    height: 12px;
  }
  .disclosure {
    font-size: 9px;
    gap: 10px;
  }
  .result-heading {
    margin-bottom: 15px;
  }
  .result-heading .muted {
    font-size: 10px;
  }
  .section-label {
    font-size: 10px;
  }
  .winner-card {
    padding: 28px 17px 18px;
    border-radius: 12px;
  }
  .winner-ribbon {
    left: 17px;
    font-size: 10px;
    top: -13px;
    padding: 5px 13px;
  }
  .winner-heading {
    gap: 10px;
    align-items: flex-start;
  }
  .winner-heading .identity {
    gap: 10px;
  }
  .winner-heading .identity .logo {
    width: 43px;
    height: 43px;
  }
  .winner-heading .identity .logo svg {
    width: 30px;
    height: 30px;
  }
  .winner-heading .identity h3 {
    font-size: 21px;
  }
  .winner-heading .tagline {
    font-size: 10px;
    margin-top: 5px;
  }
  .winner-heading .score-large {
    width: 58px;
    height: 58px;
  }
  .winner-heading .score-large:before {
    inset: 3px;
  }
  .winner-heading .score-large strong {
    font-size: 21px;
  }
  .score-wrap .micro {
    font-size: 8px;
  }
  .product-summary {
    font-size: 10px;
    margin-top: 14px;
  }
  .feature-list {
    font-size: 10px;
    gap: 12px 10px;
    margin-top: 18px;
    margin-bottom: 21px;
  }
  .feature-list li {
    gap: 6px;
    align-items: flex-start;
    line-height: 1.65;
  }
  .feature-list svg {
    width: 13px;
    height: 13px;
    margin-top: 2px;
  }
  .winner-actions {
    display: block;
  }
  .winner-actions .btn {
    width: 100%;
  }
  .winner-actions .micro {
    max-width: none;
    text-align: center;
    margin-top: 9px;
  }
  .runner-list {
    gap: 9px;
    margin-top: 12px;
  }
  .runner-card {
    grid-template-columns: 23px 1fr 42px;
    gap: 10px;
    padding: 14px 12px;
  }
  .rank {
    width: 23px;
    height: 25px;
    font-size: 10px;
  }
  .runner-card .identity {
    gap: 9px;
  }
  .runner-card .identity .logo {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    font-size: 26px;
  }
  .runner-card .identity .logo svg {
    width: 23px;
    height: 23px;
  }
  .logo-aceable:after {
    width: 85%;
    height: 3px;
  }
  .runner-card .identity h3 {
    font-size: 14px;
    letter-spacing: -0.5px;
  }
  .runner-card .identity .tagline {
    font-size: 8px;
    line-height: 1.5;
    margin-top: 4px;
  }
  .runner-card .score {
    width: 40px;
    height: 40px;
  }
  .runner-card .score:before {
    inset: 2.5px;
  }
  .runner-card .score strong {
    font-size: 14px;
  }
  .runner-card > .btn {
    grid-column: 2/-1;
    margin-left: 43px;
    font-size: 10px;
    min-height: 36px;
    padding: 7px 10px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-top: 23px;
  }
  .trust-item {
    gap: 10px;
  }
  .trust-item strong {
    font-size: 11px;
  }
  .trust-item p {
    font-size: 10px;
    margin-top: 2px;
  }
  .trust-item > svg {
    width: 18px;
    height: 18px;
  }
  .table-shell {
    margin-inline: -1px;
    border-radius: 10px;
  }
  .comparison-table tr > :first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
    box-shadow: 2px 0 6px #1a355908;
    width: 168px;
    padding-left: 14px;
  }
  .comparison-table thead tr > :first-child {
    background: #f8fafc;
    z-index: 2;
  }
  .comparison-table {
    min-width: 760px;
    font-size: 10px;
  }
  .comparison-table th,
  .comparison-table td {
    padding-block: 14px;
  }
  .table-hint {
    font-size: 9px;
  }
  .score-winner {
    padding: 19px 13px 14px;
    border-radius: 11px;
  }
  .score-winner-head {
    gap: 9px;
  }
  .score-winner-head .identity {
    gap: 9px;
  }
  .score-winner-head .identity .logo {
    width: 38px;
    height: 38px;
  }
  .score-winner-head .identity .logo svg {
    width: 27px;
    height: 27px;
  }
  .score-winner-head .identity h3 {
    font-size: 20px;
  }
  .score-winner-head .tagline {
    font-size: 10px;
  }
  .score-winner-head .product-summary {
    font-size: 9px;
    margin-top: 8px;
  }
  .score-winner-head > .score {
    width: 45px;
    height: 45px;
  }
  .score-winner-head > .score strong {
    font-size: 17px;
  }
  .score-winner-head > .score:before {
    inset: 3px;
  }
  .score-winner-head > .btn {
    margin-left: 32px;
    width: calc(100% - 32px);
    margin-top: 7px;
    min-height: 40px;
    font-size: 11px;
  }
  .score-category-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 15px;
  }
  .category-tile {
    grid-column: span 2;
    padding: 11px 6px;
  }
  .category-tile:nth-child(n + 4) {
    grid-column: span 3;
  }
  .category-tile strong {
    font-size: 18px;
  }
  .category-tile span {
    font-size: 9px;
  }
  .category-tile .bar {
    width: 45%;
    margin-top: 7px;
  }
  .score-runners {
    padding-top: 10px;
  }
  .score-runners .runner-card {
    grid-template-columns: 23px 1fr 42px;
  }
  .score-runners .runner-card .score {
    width: 40px;
    height: 40px;
  }
  .score-runners .runner-card .score strong {
    font-size: 14px;
  }
  .score-legend {
    font-size: 9px;
    align-items: flex-start;
  }
  .scoreboard .hero {
    padding-top: 30px;
  }
  .winner-section .hero {
    padding: 31px 0 23px;
  }
  .winner-section {
    padding-bottom: 27px;
  }
  .spotlight-card {
    grid-template-columns: 1fr;
  }
  .spotlight-copy {
    padding: 23px 18px;
  }
  .spotlight-copy .winner-heading .identity h3 {
    font-size: 23px;
  }
  .spotlight-copy .winner-heading .identity .logo {
    width: 46px;
    height: 46px;
  }
  .spotlight-copy .winner-heading .identity .logo svg {
    width: 31px;
    height: 31px;
  }
  .spotlight-copy .winner-heading .tagline {
    font-size: 10px;
  }
  .spotlight-copy .winner-heading > .score {
    width: 58px;
    height: 58px;
  }
  .spotlight-copy .winner-heading > .score strong {
    font-size: 21px;
  }
  .spotlight-copy .feature-list {
    grid-template-columns: 1fr 1fr;
    font-size: 10px;
    gap: 12px 10px;
  }
  .spotlight-copy .btn {
    font-size: 12px;
  }
  .phone-scene {
    min-height: 270px;
    height: 270px;
    padding-top: 23px;
    align-items: flex-start;
  }
  .phone-scene:before {
    top: 9px;
  }
  .phone-scene:after {
    top: 49px;
  }
  .phone {
    width: 208px;
    transform: rotate(5deg);
    margin-bottom: 0;
  }
  .alternatives {
    padding-top: 27px;
  }
  .alternatives h2 {
    font-size: 21px;
  }
  .compact .runner-card .identity h3 {
    font-size: 13px;
  }
  .compact .runner-card .logo {
    width: 31px;
    height: 31px;
    font-size: 24px;
  }
  .compact .runner-card > .btn {
    margin-left: 40px;
  }
  .feature-columns {
    gap: 22px 11px;
  }
  .feature-column {
    padding: 22px 13px 14px;
  }
  .feature-column:first-child {
    grid-template-columns: 115px 1fr;
    column-gap: 12px;
  }
  .feature-column:first-child .icon-features {
    padding-left: 13px;
    gap: 12px;
  }
  .feature-column .logo {
    width: 48px;
    height: 48px;
  }
  .feature-column h3 {
    font-size: 15px;
  }
  .feature-column .best-label {
    font-size: 9px;
  }
  .icon-features li {
    font-size: 9px;
    gap: 6px;
    min-height: 31px;
  }
  .icon-features svg {
    width: 15px;
    height: 15px;
  }
  .feature-column .btn {
    font-size: 10px;
  }
  .feature-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .fit-filter {
    gap: 7px;
    margin-bottom: 17px;
  }
  .filter-chip {
    font-size: 10px;
    min-height: 34px;
    padding: 7px 12px;
  }
  .fit-card {
    grid-template-columns: 1fr 39px 12px;
    padding: 15px;
    gap: 10px;
    min-height: 0;
  }
  .fit-category {
    grid-column: 1/-1;
    padding: 9px 11px;
    font-size: 11px;
    gap: 10px;
  }
  .fit-category > svg {
    width: 23px;
    height: 23px;
  }
  .fit-description {
    margin: 3px 0 0;
  }
  .fit-description h3 {
    font-size: 17px;
  }
  .fit-description p {
    font-size: 10px;
    margin-top: 5px;
  }
  .fit-card > .score {
    width: 37px;
    height: 37px;
  }
  .fit-card > .score strong {
    font-size: 13px;
  }
  .fit-card > .score:before {
    inset: 2px;
  }
  .fit-card > .chevron {
    width: 13px;
    height: 13px;
  }
  .fit-help {
    padding: 20px 17px;
    flex-wrap: wrap;
    gap: 13px;
  }
  .fit-help > svg {
    width: 31px;
    height: 31px;
  }
  .fit-help div {
    flex-basis: calc(100% - 45px);
  }
  .fit-help .btn {
    margin-left: 44px;
    flex: 1;
    font-size: 11px;
    min-height: 40px;
  }
  .fit-help p {
    font-size: 10px;
  }
  .fit-help h3 {
    font-size: 16px;
  }
  .editorial {
    margin-top: 36px;
    padding: 30px 0;
  }
  .editorial h2 {
    font-size: 23px;
  }
  .editorial p {
    font-size: 11px;
  }
  .criteria {
    gap: 21px 15px;
  }
  .criterion {
    gap: 8px;
  }
  .criterion svg {
    width: 17px;
    height: 17px;
  }
  .criterion h3 {
    font-size: 11px;
  }
  .criterion p {
    font-size: 9px;
  }
  .faq-section {
    padding: 30px 0;
    gap: 20px;
  }
  .faq-section h2 {
    font-size: 23px;
  }
  .faq-section > div > p {
    font-size: 11px;
  }
  .faq-list summary {
    font-size: 11px;
  }
  .faq-list details p {
    font-size: 10px;
  }
  .site-footer {
    padding-top: 24px;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links {
    justify-content: flex-start;
    font-size: 10px;
    gap: 20px;
  }
  .footer-note {
    margin-top: 20px;
    font-size: 9px;
  }
  .dialog-top {
    padding: 20px;
  }
  .dialog-top h2 {
    font-size: 19px;
  }
  .dialog-body {
    padding: 21px 20px;
  }
  .dialog-body .review-heading .identity {
    gap: 10px;
  }
  .dialog-body .review-heading .identity h3 {
    font-size: 20px;
  }
  .dialog-body .review-heading .logo {
    width: 44px;
    height: 44px;
  }
  .dialog-body .review-heading .score {
    width: 54px;
    height: 54px;
  }
  .dialog-body .review-heading .score strong {
    font-size: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .gallery-hero {
    padding-top: 35px;
  }
  .gallery-hero > p {
    font-size: 12px;
  }
  .gallery-note {
    font-size: 10px;
    padding: 14px 16px;
  }
  .variant-preview {
    aspect-ratio: 1.42;
    padding: 17px 15px 0;
  }
  .variant-caption {
    padding: 22px;
  }
  .variant-caption h2 {
    font-size: 20px;
  }
  .variant-caption p {
    min-height: 0;
    font-size: 12px;
  }
  .variant-caption .preview-link {
    font-size: 12px;
  }
  .variant-number {
    margin-bottom: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Research-backed content and the six-product comparison. */
.logo-permit {
  color: #fff;
  background: #126b85;
}
.logo-written {
  color: #7c4d87;
  background: #f7f0fa;
}
.identity > div {
  min-width: 0;
}
.identity h3,
.fit-title,
.feature-column h3,
.dialog-top h2 {
  overflow-wrap: anywhere;
}
.product-caveat {
  color: #65758a;
  font-size: 9px;
  margin-top: 4px;
}
.product-lead {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: -0.4px;
}
.close-race {
  font-size: 11px;
  color: #425c77;
  background: #f0f6fd;
  border-left: 3px solid #a4c6ef;
  border-radius: 0 7px 7px 0;
  padding: 14px 18px;
  margin-top: 18px;
  line-height: 1.8;
}
.category-tile small {
  display: block;
  font-size: 8px;
  color: #5b6d83;
  margin-top: 5px;
}
.researched-table {
  min-width: 1050px;
}
.researched-table tr > :first-child {
  width: 175px;
}
.researched-table th,
.researched-table td {
  overflow-wrap: anywhere;
}
.researched-table thead th {
  font-size: 11px;
}
.researched-table td {
  line-height: 1.7;
}
.feature-columns {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.feature-column {
  padding-inline: 12px;
}
.feature-column h3 {
  font-size: 14px;
  min-height: 36px;
  display: grid;
  place-items: center;
}
.feature-column .best-label {
  min-height: 43px;
}
.feature-column .logo {
  flex-shrink: 0;
  margin-top: 0;
}
.feature-column .score {
  flex-shrink: 0;
}
.icon-features li {
  min-height: 44px;
}
.fit-card[data-product="permit"] .fit-category {
  background: #f0f9fc;
  color: #086983;
}
.fit-card[data-product="written"] .fit-category {
  background: #fbf3fa;
  color: #965579;
}
.fit-description {
  min-width: 0;
}
.criteria {
  align-content: start;
}
.criterion-weight {
  display: inline-block;
  color: #075aea;
  background: #e7f0fd;
  border-radius: 4px;
  padding: 3px 6px;
  margin-left: 7px;
  font-size: 10px;
  letter-spacing: 0;
}
.criterion:last-child {
  grid-column: 1 / -1;
}
.editorial-disclosure {
  margin-top: 32px;
  padding: 19px 23px;
  border: 1px solid #d3e2f2;
  border-radius: 9px;
  background: #edf5fe;
}
.editorial-disclosure > strong {
  font-size: 12px;
}
.editorial-disclosure p {
  margin-top: 6px;
  font-size: 11px;
}
.methodology-details {
  border-bottom: 1px solid #dce5ef;
}
.methodology-details > summary {
  padding: 20px 26px 20px 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.methodology-details > p {
  margin: 0 0 18px;
  font-size: 11px;
}
.methodology-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  margin-bottom: 18px;
  background: #fff;
  font-size: 11px;
}
.methodology-table th,
.methodology-table td {
  border: 1px solid #dce5ef;
  padding: 13px;
  text-align: center;
}
.methodology-table th:first-child {
  text-align: left;
}
.methodology-table thead th {
  background: #edf4fc;
  font-size: 10px;
}
.methodology-table th small {
  display: block;
  font-weight: 600;
  margin-top: 4px;
  color: #42617f;
}
.research-source-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  padding: 4px 0 24px;
}
.research-source-grid h3 {
  font-size: 14px;
  letter-spacing: -0.4px;
}
.source-links {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 10px;
}
.source-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #0753c9;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.source-links a svg {
  display: inline-block;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.source-links .micro {
  display: block;
  margin-top: 4px;
  font-size: 9px;
}
.dialog-body .product-lead {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.dialog-body .review-prep {
  background: #f2f6fc;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 11px;
  margin-top: 15px;
}
.dialog-body .score-category-grid {
  margin-top: 13px;
}
.dialog-body .category-tile strong {
  font-size: 19px;
}
.dialog-body .category-tile span {
  font-size: 8px;
}
.dialog-body .source-links {
  font-size: 11px;
}
.dialog-body .source-links a {
  min-height: 24px;
}
.dialog-body .provider-link {
  white-space: normal;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .feature-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 15px;
  }
  .feature-column {
    padding-inline: 20px;
  }
  .feature-column h3 {
    font-size: 16px;
  }
  .feature-column .best-label {
    min-height: 32px;
  }
  .icon-features li {
    font-size: 11px;
    min-height: 35px;
  }
}
@media (max-width: 760px) {
  .feature-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 12px;
  }
  .feature-column:first-child {
    display: flex;
    grid-column: auto;
  }
  .feature-column:first-child .icon-features {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid #edf0f4;
    gap: 18px;
  }
  .feature-column:first-child .score {
    margin: 14px auto 20px;
  }
  .feature-column:first-child .btn {
    margin-top: 25px;
  }
  .feature-column {
    padding-inline: 15px;
  }
  .feature-column h3 {
    font-size: 15px;
  }
  .feature-column .best-label {
    min-height: 38px;
  }
  .icon-features li {
    font-size: 10px;
    min-height: 36px;
  }
  .close-race {
    font-size: 10px;
    padding: 12px 14px;
  }
  .research-source-grid {
    gap: 22px;
  }
}
@media (max-width: 520px) {
  .disclosure {
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .product-lead {
    font-size: 14px;
    margin-top: 15px;
  }
  .winner-heading .identity h3 {
    font-size: 20px;
  }
  .runner-card .identity h3 {
    font-size: 12px;
  }
  .runner-card .identity .tagline {
    font-size: 8px;
  }
  .runner-card .product-caveat {
    font-size: 8px;
  }
  .researched-table tr > :first-child {
    width: 148px;
  }
  .feature-column {
    padding-inline: 11px;
  }
  .feature-column h3 {
    font-size: 13px;
    min-height: 36px;
  }
  .feature-column .best-label {
    min-height: 42px;
    font-size: 9px;
  }
  .icon-features li {
    font-size: 9px;
    min-height: 43px;
  }
  .fit-title {
    font-size: 16px;
  }
  .fit-copy {
    font-size: 10px;
  }
  .editorial-disclosure {
    margin-top: 24px;
    padding: 16px;
  }
  .editorial-disclosure p {
    font-size: 10px;
  }
  .research-source-grid {
    grid-template-columns: 1fr;
  }
  .methodology-details > summary {
    font-size: 11px;
  }
  .methodology-details > p {
    font-size: 10px;
  }
  .criterion-weight {
    font-size: 9px;
    margin-left: 5px;
  }
  .dialog-body .review-heading .identity h3 {
    font-size: 16px;
  }
}

/* Keep the feature comparison readable instead of shrinking two cards onto a phone. */
.features-page .intro { font-size: 1rem; }
.features-page .feature-column h3 { font-size: 1rem; min-height: 2.5em; }
.features-page .feature-column .best-label { font-size: .875rem; min-height: 4.8em; }
.features-page .icon-features { align-content: start; gap: 18px; }
.features-page .icon-features li { font-size: .875rem; line-height: 1.6; min-height: 0; }
.features-page .feature-column .btn { font-size: .875rem; min-height: 44px; white-space: normal; }
.features-page .feature-column .winner-ribbon { font-size: .75rem; }
.feature-carousel-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin: 12px 0 10px; }
.feature-carousel-controls[hidden] { display: none; }
.feature-carousel-status { margin-right: 6px; color: var(--muted); font-size: .875rem; font-variant-numeric: tabular-nums; }
.feature-carousel-controls button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: white; }
.feature-carousel-controls button:hover:not(:disabled) { background: var(--pale); border-color: var(--blue); }
.feature-carousel-controls button:disabled { color: #8b96a6; background: var(--soft); cursor: default; }
.feature-carousel-prev svg { transform: rotate(180deg); }
@media (max-width: 760px) {
  .features-page .hero-meta { font-size: .75rem; }
  .features-page .disclosure { font-size: .75rem; }
  .features-page .disclosure button { font-size: inherit; }
  .features-page .feature-columns {
    position: relative;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(86%, 22rem);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #bccde4 transparent;
    padding: 18px 0 12px;
  }
  .features-page .feature-column,
  .features-page .feature-column:first-child {
    display: flex;
    align-items: stretch;
    grid-column: auto;
    padding: 24px 20px 20px;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: none;
  }
  .features-page .feature-column .logo { width: 52px; height: 52px; margin: 0 auto 12px; }
  .features-page .feature-column h3 { font-size: 1.125rem; min-height: 0; line-height: 1.3; }
  .features-page .feature-column .best-label { min-height: 0; font-size: .875rem; line-height: 1.5; margin-top: 8px; }
  .features-page .feature-column .score,
  .features-page .feature-column:first-child .score { margin: 16px auto; width: 49px; height: 49px; }
  .features-page .icon-features,
  .features-page .feature-column:first-child .icon-features {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
    gap: 16px;
    align-content: start;
  }
  .features-page .icon-features li { font-size: 1rem; gap: 10px; min-height: 0; }
  .features-page .icon-features svg { width: 20px; height: 20px; margin-top: 3px; }
  .features-page .feature-column .btn,
  .features-page .feature-column:first-child .btn { margin-top: 24px; font-size: 1rem; min-height: 48px; }
  .features-page .feature-bottom { font-size: .875rem; padding: 18px; }
  .features-page .feature-bottom p,
  .features-page .feature-bottom a { font-size: .875rem; }
  .features-page .table-note { font-size: .8125rem; }
}

/* Production site controls share the same responsive shell across all six layouts. */
.analytics-choice {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 30; width: min(760px, calc(100% - 24px)); padding: 18px 22px;
  background: #fff; border: 1px solid #c5d5eb; border-radius: 14px;
  box-shadow: 0 8px 38px #0c24462b; display: flex; align-items: center; gap: 22px;
}
.analytics-choice[hidden] { display: none; }
.analytics-choice p { margin: 5px 0 0; font-size: 13px; line-height: 1.5; }
.analytics-actions { display: flex; gap: 8px; flex-shrink: 0; }
.analytics-actions .btn { min-height: 44px; padding: 11px 14px; }
.full-comparison-dialog { width: min(1200px, calc(100% - 24px)); max-width: 1200px; }
.full-comparison-dialog .container { width: 100%; padding: 0; }
.full-comparison-dialog .dialog-body { padding: 20px; }
.legal-page { padding-top: 55px; padding-bottom: 65px; line-height: 1.75; }
.legal-page h1 { font-size: clamp(30px, 5vw, 44px); line-height: 1.2; }
.legal-page h2 { margin-top: 32px; }
.legal-page p { margin-top: 15px; }
@media (max-width: 600px) {
  .analytics-choice { align-items: stretch; flex-direction: column; gap: 12px; padding: 16px; }
  .analytics-actions .btn { flex: 1; min-width: 0; white-space: normal; }
  .brand { font-size: 17px; }
  .footer-links { flex-wrap: wrap; }
  .full-comparison-dialog .dialog-body { padding: 12px; }
  .close-dialog, .menu-toggle, .filter-chip { min-width: 44px; min-height: 44px; }
}
.logo-drive { background: #2c3740; padding: 0; overflow: hidden; }
.logo-drive img { display: block; width: 100%; height: 100%; object-fit: contain; }
.phone-top img { border-radius: 4px; flex-shrink: 0; }
