:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #050505;
  --muted: #686868;
  --line: #dedede;
  --line-strong: #050505;
  --panel: #f6f6f6;
  --reverse: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 56px);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100svh;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--reverse);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-state-menu {
  position: relative;
}

.nav-state-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-state-menu summary::-webkit-details-marker {
  display: none;
}

.nav-state-menu summary:hover,
.nav-state-menu[open] summary {
  color: var(--ink);
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-state-menu[open] .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: min(260px, calc(100vw - 48px));
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.nav-dropdown a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a:hover {
  background: var(--soft);
}

.nav-dropdown small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(82svh - 72px);
  padding: clamp(44px, 6vw, 84px) var(--gutter) clamp(34px, 5vw, 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 76%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(36px, 7vw, 120px);
  width: min(100%, var(--max));
  align-self: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 620px;
  color: #242424;
  font-size: 14px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--reverse);
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary:hover {
  background: var(--ink);
  color: var(--reverse);
}

.ledger {
  align-self: end;
  border-top: 2px solid var(--ink);
}

.ledger-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-value {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.ledger-label {
  align-self: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  text-align: right;
  text-transform: uppercase;
}

.avatar-strip {
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg);
}

.avatar-strip-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px 0;
}

.avatar-strip p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.avatar-rail {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
}

.strip-avatar {
  flex: 0 0 auto;
  width: clamp(46px, 6vw, 68px);
  height: clamp(46px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
  background: var(--panel);
  transition: transform 180ms ease, filter 180ms ease;
}

.strip-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

.strip-avatar:hover {
  transform: translateY(-3px);
}

.strip-avatar:hover img {
  filter: grayscale(0);
}

.trust-strip {
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line-strong);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.trust-strip span {
  min-height: 58px;
  padding: 20px 18px 18px 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

.worst-spotlight {
  display: grid;
  grid-template-columns: clamp(96px, 12vw, 150px) minmax(220px, 1fr) minmax(130px, 0.22fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin: clamp(42px, 6vw, 74px) auto 0;
  padding: clamp(22px, 4vw, 42px) 0;
  border-top: 2px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 26px 26px;
}

.worst-spotlight-dark {
  width: 100%;
  margin: 0 0 clamp(38px, 5vw, 70px);
  color: var(--reverse);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 26px 26px;
  border-color: rgba(255, 255, 255, 0.44);
}

.worst-rank {
  color: var(--muted);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  border-right: 1px solid var(--line);
}

.worst-spotlight-dark .worst-rank,
.worst-spotlight-dark .explain-label,
.worst-spotlight-dark .worst-note small,
.worst-spotlight-dark .worst-note span,
.worst-spotlight-dark .worst-identity p {
  color: rgba(255, 255, 255, 0.68);
}

.worst-identity h3 {
  margin-bottom: 8px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.worst-identity p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.worst-note {
  justify-self: end;
  min-width: 132px;
  padding: 16px;
  border: 1px solid #a40000;
  border-radius: 14px;
  background: #ffe5e5;
  color: #a40000;
  text-align: center;
}

.worst-note span,
.worst-note small {
  display: block;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.worst-note strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 30px;
  line-height: 1;
}

.section {
  padding: clamp(58px, 8vw, 104px) var(--gutter);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 74px);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.index-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.index-row,
.ranking-row {
  display: grid;
  grid-template-columns: minmax(64px, 0.12fr) minmax(190px, 0.56fr) minmax(120px, 0.18fr) minmax(105px, 0.14fr);
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.index-row:hover,
.ranking-row:hover {
  padding-inline: 16px;
  background: var(--panel);
  transform: translateX(4px);
}

.row-kicker,
.rank-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.row-title,
.agent-name {
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.row-meta,
.agent-broker {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.row-count,
.agent-score {
  justify-self: end;
  font-size: 16px;
  font-weight: 600;
}

.band {
  background: var(--ink);
  color: var(--reverse);
}

.band .section-heading p,
.band .eyebrow,
.band .row-meta {
  color: rgba(255, 255, 255, 0.64);
}

.band .index-list,
.band .index-row {
  border-color: rgba(255, 255, 255, 0.2);
}

.band .index-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 58px);
  border-top: 1px solid var(--line-strong);
  padding-top: 40px;
}

.method h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.method p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.method-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.method-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-section {
  min-height: 235svh;
  border-top: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 36px 36px;
}

.workflow-section > .section-inner {
  position: sticky;
  top: 96px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: stretch;
}

.workflow-copy {
  display: grid;
}

.workflow-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-content: start;
  min-height: clamp(170px, 30svh, 260px);
  padding: clamp(22px, 4vw, 36px) 0;
  border-top: 1px solid var(--line-strong);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, opacity 180ms ease, padding 180ms ease;
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.workflow-step:hover,
.workflow-step.is-active {
  opacity: 1;
}

.workflow-step:not(.is-active) {
  opacity: 0.62;
}

.workflow-step.is-active {
  padding-left: 12px;
}

.workflow-step-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.workflow-step-body {
  display: grid;
  gap: 42px;
}

.workflow-step-title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.workflow-step-text {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.workflow-visual {
  position: sticky;
  top: 96px;
  align-self: start;
}

.workflow-image-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.workflow-stage-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease;
}

.workflow-stage-image:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

.workflow-stage-image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.workflow-image-stage figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.page-hero {
  padding: clamp(46px, 7vw, 92px) var(--gutter) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line-strong);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: clamp(34px, 6vw, 92px);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: end;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero h1 {
  font-size: clamp(36px, 5.8vw, 72px);
}

.page-hero p {
  max-width: 760px;
  color: #303030;
  font-size: 14px;
  line-height: 1.55;
}

.state-hero {
  padding: clamp(46px, 7vw, 92px) var(--gutter) 0;
  border-bottom: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 36px 36px;
}

.state-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: clamp(38px, 6vw, 76px);
}

.state-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.state-hero p {
  max-width: 640px;
  color: #303030;
  font-size: 14px;
  line-height: 1.6;
}

.state-finder-panel {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.state-finder-panel h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.state-finder-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.state-finder-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.state-finder-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.state-finder-list a:hover {
  padding-inline: 10px;
  background: var(--panel);
}

.state-finder-list span,
.state-finder-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 550;
}

.state-finder-list strong {
  font-size: 15px;
  font-weight: 650;
}

.state-status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.state-status-strip div {
  min-height: 86px;
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--line);
}

.state-status-strip div:last-child {
  border-right: 0;
}

.state-status-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.state-status-strip strong {
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1;
}

.state-directory {
  background: var(--bg);
}

.state-directory-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.state-worst-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--reverse);
}

.state-worst-card .explain-label,
.state-worst-card p,
.state-worst-card span,
.state-worst-card small {
  color: rgba(255, 255, 255, 0.68);
}

.state-worst-rank {
  margin-top: 10px;
  font-size: clamp(56px, 8vw, 94px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.state-worst-card h3 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.state-worst-card p {
  margin-bottom: 16px;
  font-size: 15px;
}

.state-worst-score {
  display: grid;
  gap: 4px;
  justify-items: start;
  width: max-content;
  padding: 12px 14px;
  border: 1px solid #a40000;
  background: #ffe5e5;
  color: #a40000;
}

.state-worst-score span,
.state-worst-score small {
  color: #a40000;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.state-worst-score strong {
  color: #a40000;
  font-size: 26px;
  line-height: 1;
}

.section-heading.compact {
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}

.city-directory-list {
  border-top-width: 2px;
}

.metrics {
  display: grid;
  border-top: 2px solid var(--ink);
}

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.metric strong {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 650;
  line-height: 1;
}

.metric span {
  align-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  text-align: right;
  text-transform: uppercase;
}

.copy-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  border-top: 1px solid var(--line-strong);
  padding-top: 38px;
}

.copy-block h2 {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.copy-flow p {
  max-width: 850px;
  color: #303030;
  font-size: 14px;
  line-height: 1.55;
}

.ranking-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.vote-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: -4px 0 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vote-cta h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.vote-cta p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.vote-button {
  white-space: nowrap;
}

.ranking-explainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 42px);
  margin: -28px 0 34px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.ranking-explainer div {
  padding-right: 24px;
}

.explain-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ranking-explainer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.ranking-explainer p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.evidence-section {
  padding-top: clamp(34px, 5vw, 64px);
}

.evidence-snapshot {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(120px, 1fr));
  gap: 18px;
  align-items: stretch;
  margin: 0 0 34px;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.evidence-snapshot > div:first-child strong {
  display: block;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.evidence-metric {
  display: grid;
  align-content: space-between;
  min-height: 74px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.evidence-metric span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-metric strong {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
}

.search {
  width: min(100%, 420px);
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
}

.ranking-list {
  border-top: 1px solid var(--line-strong);
}

.ranking-row {
  grid-template-columns: minmax(34px, 0.06fr) 56px minmax(220px, 0.52fr) minmax(110px, 0.18fr) minmax(96px, 0.18fr);
  min-height: 82px;
}

.ranking-row-featured {
  min-height: 86px;
  margin-bottom: 0;
  padding: 16px 0 16px 14px;
  border-left: 3px solid var(--line-strong);
  background: var(--panel);
}

.ranking-row-featured:hover {
  padding-left: 18px;
}

.featured-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.featured-avatar {
  background: var(--ink);
  color: var(--reverse);
  border-color: var(--ink);
}

.market-content {
  border-top: 1px solid var(--line-strong);
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.market-aside {
  position: sticky;
  top: 96px;
  border-top: 2px solid var(--line-strong);
  padding-top: 22px;
}

.market-aside h2 {
  margin-bottom: 28px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.market-aside dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.market-aside div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.market-aside dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-aside dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-align: right;
}

.market-article {
  border-top: 2px solid var(--line-strong);
  padding-top: 22px;
}

.market-lede {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 58px);
  color: #242424;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.market-grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.market-text-block {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(20px, 4vw, 52px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.market-text-block h3 {
  grid-column: 1;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.market-text-block p {
  grid-column: 2;
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.market-text-block p:last-child {
  margin-bottom: 0;
}

.theme-taxonomy {
  border-top: 1px solid var(--line-strong);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.theme-grid article {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.theme-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.theme-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.guidance-section {
  border-top: 1px solid var(--line-strong);
}

.guidance-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.guidance-layout h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.guidance-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.guidance-list p {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.guidance-list span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
  border-top: 1px solid var(--line-strong);
  padding-top: 30px;
}

.policy-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 190px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-grid h2 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.policy-grid p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.agent-avatar {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: var(--panel);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 650;
}

.row-action {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 550;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.row-action:hover {
  color: var(--muted);
}

.risk-pill {
  justify-self: end;
  min-width: 104px;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
}

.risk-pill strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
}

.risk-pill span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 450;
  line-height: 1.1;
}

.risk-low {
  background: #e7f6ec;
  color: #0d6b2f;
}

.risk-medium {
  background: #fff3d6;
  color: #8a5a00;
}

.risk-high {
  background: #ffe5e5;
  color: #a40000;
}

.agent-stat {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  text-align: right;
}

.agent-stat strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.investigation {
  border-top: 1px solid var(--line-strong);
}

.investigation-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
}

.investigation h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.investigation p {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.investigation a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section {
  border-top: 1px solid var(--line-strong);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  justify-self: end;
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-hero .page-hero-inner {
  grid-template-columns: 1fr;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  border-top: 1px solid var(--line-strong);
  padding-top: 32px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form .full,
.form-actions {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.vote-modal[hidden] {
  display: none;
}

.vote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: end;
}

.vote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  animation: fadeIn 180ms ease;
}

.vote-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  min-height: 100svh;
  padding: clamp(28px, 5vw, 56px);
  overflow-y: auto;
  background: var(--bg);
  border-left: 1px solid var(--line-strong);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.14);
  animation: slideIn 240ms ease;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 550;
}

.vote-panel h2 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.vote-panel p {
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.vote-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.vote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vote-form input,
.vote-form select,
.vote-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.vote-form input,
.vote-form select {
  min-height: 46px;
  padding: 0 12px;
}

.vote-form textarea {
  resize: vertical;
  padding: 12px;
}

.vote-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--ink) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.vote-check input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.vote-success {
  display: grid;
  align-content: center;
  min-height: calc(100svh - 112px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(24px);
  }
  to {
    transform: translateX(0);
  }
}

.footer {
  padding: 48px var(--gutter);
  border-top: 1px solid var(--line-strong);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.source-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, var(--max));
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.source-footer span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.source-footer a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero [data-reveal] {
  animation: rise 760ms ease forwards;
}

.hero [data-reveal]:nth-child(2) {
  animation-delay: 120ms;
}

.hero [data-reveal]:nth-child(3) {
  animation-delay: 220ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .nav {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .workflow-section {
    min-height: auto;
  }

  .workflow-section > .section-inner {
    position: static;
  }

  .hero-inner,
  .state-hero-inner,
  .state-status-strip,
  .state-directory-layout,
  .avatar-strip-inner,
  .worst-spotlight,
  .page-hero-inner,
  .section-heading,
  .copy-block,
  .method,
  .workflow-grid,
  .market-layout,
  .market-text-block,
  .evidence-snapshot,
  .theme-grid,
  .guidance-layout,
  .policy-grid,
  .trust-strip-inner,
  .ranking-explainer,
  .vote-cta,
  .source-footer,
  .investigation-inner,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: auto;
  }

  .workflow-visual {
    position: static;
  }

  .market-aside {
    position: static;
  }

  .state-worst-card {
    position: static;
  }

  .state-status-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .state-status-strip div:last-child {
    border-bottom: 0;
  }

  .market-text-block h3,
  .market-text-block p {
    grid-column: auto;
  }

  .avatar-rail {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .worst-note {
    justify-self: start;
  }

  .worst-rank {
    border-right: 0;
  }

  h1 {
    font-size: clamp(38px, 13vw, 64px);
  }

  .ledger {
    align-self: start;
  }

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

  .row-kicker,
  .row-meta {
    display: none;
  }

  .row-title {
    font-size: clamp(18px, 7vw, 28px);
  }

  .ranking-row {
    grid-template-columns: 42px 52px 1fr;
    gap: 10px 16px;
  }

  .agent-avatar {
    grid-column: 2;
  }

  .agent-broker,
  .risk-pill,
  .agent-stat {
    grid-column: 3;
    justify-self: start;
    text-align: left;
  }

  .agent-stat {
    display: inline-block;
    margin-right: 12px;
  }

  .vote-panel {
    width: 100%;
    border-left: 0;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
