:root {
  color-scheme: light;
  --ink: #171111;
  --ink-soft: #3b3030;
  --charcoal: #121010;
  --charcoal-2: #1d1718;
  --night: #0f0d0d;
  --merlot: #8f1d20;
  --merlot-2: #6f1518;
  --merlot-3: #3a1114;
  --rose: #c98486;
  --cream: #f7f2ec;
  --paper: #fbf7f1;
  --white: #ffffff;
  --muted: #756c67;
  --muted-dark: #aaa09a;
  --line: #e2d8ce;
  --line-dark: rgba(255, 255, 255, 0.12);
  --gold: #c8962e;
  --gold-soft: #f0d9a4;
  --sage: #dfe9dd;
  --sky: #e1ebef;
  --shadow: 0 26px 70px rgba(50, 18, 18, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(143, 29, 32, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(143, 29, 32, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

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

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0.78rem 0.9rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--merlot);
  box-shadow: 0 0 0 4px rgba(143, 29, 32, 0.14);
}

label span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 4vw;
  color: var(--white);
  background: rgba(115, 22, 25, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 235px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--night);
  color: var(--gold-soft);
  font-weight: 900;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.08;
  font-style: normal;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.24rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.7rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: 4.7rem;
  font-weight: 900;
}

h2 {
  font-size: 2.55rem;
  font-weight: 900;
}

h3 {
  font-size: 1.15rem;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero,
.page-hero {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(143, 29, 32, 0.12), transparent 32%),
    linear-gradient(135deg, var(--night), var(--charcoal) 50%, var(--merlot-3));
}

.hero {
  min-height: 805px;
  display: flex;
  align-items: center;
  padding: 7rem 4vw 6.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.65rem;
}

.hero-copy {
  max-width: 920px;
}

.hero-lede,
.page-hero p {
  max-width: 720px;
  margin: 1.1rem auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.78rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.76rem 1rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #1f1210;
  box-shadow: 0 16px 38px rgba(200, 150, 46, 0.26);
}

.button-primary:hover {
  background: #d5a33b;
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--merlot-2);
}

.button-secondary:hover {
  border-color: var(--merlot);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-console {
  width: min(100%, 560px);
}

.console-window,
.radar-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.33);
  overflow: hidden;
}

.console-toolbar,
.radar-header {
  display: grid;
  grid-template-columns: 12px 12px 12px 1fr auto;
  align-items: center;
  gap: 0.48rem;
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.82rem;
}

.console-toolbar strong,
.radar-header strong {
  color: var(--white);
  font-weight: 800;
}

.console-toolbar em {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 800;
}

.console-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.console-body {
  padding: 1rem;
}

.console-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0.8rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.console-grid,
.radar-map {
  position: relative;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(143, 29, 32, 0.16), rgba(200, 150, 46, 0.08));
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(200, 150, 46, 0.14);
}

.map-dot.review {
  background: #a7b89f;
  box-shadow: 0 0 0 7px rgba(167, 184, 159, 0.15);
}

.map-dot.verify {
  background: var(--sky);
  box-shadow: 0 0 0 7px rgba(225, 235, 239, 0.13);
}

.console-table,
.radar-list {
  display: grid;
  margin-top: 0.85rem;
  text-align: left;
}

.console-table a,
.radar-list a {
  display: grid;
  grid-template-columns: 72px 1fr 42px;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.console-table span,
.console-table em,
.radar-list span,
.radar-list em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-size: 0.82rem;
}

.console-table strong,
.radar-list strong {
  font-size: 0.9rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--merlot);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric {
  padding: 1.55rem 4vw;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metric:last-child {
  border-right: 0;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--gold-soft);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  margin-top: 0.44rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.section,
.directory-shell,
.download-layout,
.form-section,
.lead-hero,
.memo-layout {
  width: min(100% - 8vw, var(--max));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-cream {
  width: 100%;
  max-width: none;
  padding-left: 4vw;
  padding-right: 4vw;
  background: var(--cream);
}

.section-cream > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p,
.split-layout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-grid,
.lead-grid,
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.lead-card,
.report-card,
.premium-form,
.filters-panel,
.memo-sidebar,
.score-card,
.sample-table-wrap,
.disclaimer-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-card,
.lead-card,
.report-card,
.filters-panel,
.memo-sidebar,
.score-card,
.sample-table-wrap,
.disclaimer-block {
  padding: 1.25rem;
}

.feature-card,
.lead-card,
.report-card,
.sample-table-wrap,
.premium-form,
.filters-panel,
.memo-sidebar,
.disclaimer-block {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-card h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--merlot);
}

.feature-card p,
.lead-card p,
.report-card p,
.memo-section p,
.disclaimer-block p,
.readable p,
.clean-list {
  color: var(--muted);
}

.lead-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lead-card:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 29, 32, 0.38);
  box-shadow: var(--shadow);
}

.lead-card h3 a,
.report-card h2 a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 160ms ease;
}

.lead-card h3 a:hover,
.report-card h2 a:hover {
  text-decoration-color: var(--merlot);
}

.lead-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: flex-start;
}

.score-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
  color: var(--ink);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
}

.score-pill.review,
.score-card.review {
  background: var(--sage);
}

.score-pill.verify,
.score-card.verify {
  background: var(--sky);
}

.score-pill.low,
.score-card.low {
  background: #efd6d6;
}

.compact-facts,
.detail-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.compact-facts div,
.detail-list div {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) 1fr;
  gap: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(226, 216, 206, 0.82);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.text-link {
  margin-top: auto;
  color: var(--merlot);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.6fr);
  gap: 2rem;
  align-items: start;
}

.capture-form {
  display: grid;
  gap: 0.8rem;
}

.page-hero {
  padding: 5.4rem 4vw 5.8rem;
  border-bottom: 1px solid var(--line-dark);
}

.page-hero.compact > div {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero.compact h1 {
  max-width: 940px;
}

.directory-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 3rem 0 5rem;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 0.9rem;
}

.filters-panel h2 {
  font-size: 1.5rem;
}

.directory-results {
  min-width: 0;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.results-bar p {
  margin: 0;
}

.directory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: end;
  padding: 5rem 0 3rem;
}

.lead-hero h1 {
  font-size: 3.25rem;
}

.lead-hero p {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.06rem;
}

.score-card {
  background: var(--gold-soft);
}

.score-card span,
.score-card em,
.score-card strong {
  display: block;
}

.score-card span {
  color: var(--muted);
  font-weight: 900;
}

.score-card strong {
  margin: 0.4rem 0;
  color: var(--merlot);
  font-size: 4rem;
  line-height: 1;
}

.score-card em {
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
}

.score-bar {
  height: 9px;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(23, 17, 17, 0.14);
  overflow: hidden;
}

.score-bar span {
  height: 100%;
  border-radius: inherit;
  background: var(--merlot);
}

.memo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.4rem;
  align-items: start;
  padding-bottom: 5rem;
}

.memo-main {
  display: grid;
  gap: 1rem;
}

.memo-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.memo-section h2,
.disclaimer-block h2 {
  font-size: 1.65rem;
}

.memo-sidebar {
  position: sticky;
  top: 82px;
}

.source-list,
.clean-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.source-list li + li {
  margin-top: 1rem;
}

.source-list a {
  color: var(--merlot);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.source-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  width: min(100% - 8vw, var(--max));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--night), var(--merlot-3) 48%, var(--merlot));
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}

.form-section {
  padding: 4rem 0 5rem;
}

.premium-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--merlot);
  font-weight: 900;
}

.download-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 4rem 0 5rem;
}

.download-form {
  position: sticky;
  top: 82px;
}

.sample-table-wrap {
  overflow-x: auto;
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.sample-table caption {
  text-align: left;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 950;
}

.sample-table th,
.sample-table td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.sample-table th {
  color: var(--muted);
  font-size: 0.84rem;
}

.sample-table a {
  color: var(--merlot);
  font-weight: 950;
}

.report-list {
  display: grid;
  gap: 1rem;
}

.readable {
  max-width: 850px;
}

.readable h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.site-footer {
  padding: 4rem 4vw 2rem;
  color: var(--white);
  background: linear-gradient(180deg, var(--merlot-2), var(--night));
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr) 200px;
  gap: 2rem;
}

.site-footer h2 {
  max-width: 620px;
}

.site-footer h3 {
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer label span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer input {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.2rem 0;
}

.fine-print {
  width: min(100%, var(--max));
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

[hidden] {
  display: none !important;
}

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

@media (max-width: 1060px) {
  h1 {
    font-size: 3.6rem;
  }

  .split-layout,
  .lead-hero,
  .memo-layout,
  .download-layout,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .memo-sidebar,
  .download-form,
  .filters-panel {
    position: static;
  }

  .stats-strip,
  .feature-grid,
  .lead-grid,
  .method-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 4vw 1rem;
    background: var(--merlot-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand em {
    font-size: 0.76rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 4rem 4vw;
  }

  .hero-inner {
    gap: 1.25rem;
  }

  .hero-lede,
  .page-hero p {
    font-size: 1rem;
  }

  .console-grid {
    height: 170px;
  }

  .console-table a,
  .radar-list a {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .stats-strip,
  .feature-grid,
  .lead-grid,
  .method-grid,
  .directory-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 1.3rem 4vw;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .lead-hero h1 {
    font-size: 2.35rem;
  }

  .compact-facts div,
  .detail-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .results-bar,
  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cta-band {
    padding: 1.25rem;
  }
}

