:root {
  color-scheme: dark;
  --bg: #101111;
  --paper: #f1eee7;
  --muted: #a6aaa5;
  --line: #333631;
  --accent: #cad9a7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font:
    16px/1.65 Arial,
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
header {
  max-width: 1280px;
  margin: auto;
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
}
.brand span {
  font-size: 9px;
  color: var(--muted);
  margin-left: 8px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
nav a {
  font-size: 12px;
  text-decoration: none;
  color: var(--muted);
}
nav a:hover {
  color: white;
}
main {
  max-width: 1180px;
  margin: auto;
  padding: 0 5% 70px;
}
section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 1.05;
}
h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1px;
}
h3 {
  font-weight: 400;
  font-size: 22px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 30px;
}
.hero {
  position: relative;
  padding: 90px 0 75px;
  min-height: 630px;
  overflow: hidden;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(65px, 8.8vw, 114px);
  letter-spacing: -5px;
  position: relative;
  z-index: 1;
}
.lead {
  color: var(--muted);
  font-size: 20px;
  margin: 25px 0 30px;
}
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: var(--accent);
  color: #101510;
  border: 0;
  padding: 16px 23px;
  text-decoration: none;
  font: 700 11px/1.4 Arial;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
}
.button span {
  font-size: 22px;
}

.home-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.call-matchmaker {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.call-matchmaker:hover { background: #111; }
.member-login {
  display: inline-flex;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.home-phone {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
.number-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.number-choice form { margin: 0; }
.number-choice input[type=hidden] { display: none; }
.test-banner {
  max-width: 760px;
  padding: 12px 14px;
  border: 1px solid #e8bb82;
  color: #e8bb82;
  font-size: 13px;
}
.hero .muted {
  font-size: 12px;
  margin: 15px 0;
}
.hero-mark {
  position: absolute;
  right: 0;
  top: 65px;
  width: 350px;
  height: 420px;
  background: url("/assets/heart.svg") center/contain no-repeat;
  opacity: 0.05;
  transform: rotate(-14deg);
}
.steps div {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 30px;
}
.steps p {
  font-size: 18px;
  line-height: 1.5;
}
.steps b {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 20px;
}
.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.statement p {
  color: var(--muted);
  align-self: end;
  max-width: 410px;
}
.prose {
  max-width: 760px;
  padding: 70px 0;
}
.prose h1 {
  font-size: 50px;
  margin-bottom: 40px;
}
.prose p {
  margin: 0 0 23px;
  color: #c4c7c0;
}
footer {
  max-width: 1280px;
  margin: auto;
  padding: 40px 5%;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}
footer nav {
  margin: 18px 0;
}
label {
  display: block;
  color: #c4c7c0;
  font-size: 13px;
  margin: 18px 0;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 7px 0;
  padding: 12px;
  background: #1a1d1a;
  color: var(--paper);
  border: 1px solid #565c50;
  border-radius: 3px;
  font: inherit;
}
input[type="checkbox"] {
  width: auto;
  display: inline;
}
textarea {
  min-height: 100px;
}
form {
  max-width: 760px;
  margin: 25px 0 45px;
}
form button {
  margin-top: 10px;
}
.page-head {
  padding: 55px 0 20px;
}
.page-head h1 {
  font-size: 46px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.health {
  border: 1px solid var(--line);
  padding: 22px;
}
.health strong {
  display: block;
  font-weight: 400;
  font-size: 18px;
}
.health small {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}
.badge {
  font-size: 10px;
  letter-spacing: 1px;
  color: #e8bb82;
}
.badge.READY,
.badge.TESTED {
  color: var(--accent);
}
.badge.FAILED {
  color: #ffaaaa;
}
.muted {
  color: var(--muted);
}
.subnav {
  margin: 20px 0 30px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
td,
th {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  color: var(--muted);
  font-weight: 400;
}
td {
  max-width: 400px;
  overflow-wrap: anywhere;
}
.table-scroll {
  overflow: auto;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #1a1d1a;
  padding: 22px;
  font-size: 12px;
  max-height: 600px;
  overflow: auto;
}
details {
  margin: 18px 0;
}
summary {
  cursor: pointer;
  color: var(--accent);
}
.error {
  color: #ffaaaa;
}
.success {
  color: var(--accent);
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 15px;
  top: 5px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #dcecb8;
  outline-offset: 4px;
}
#notice {
  position: fixed;
  bottom: 15px;
  right: 15px;
  max-width: 400px;
  background: #253025;
  padding: 0 20px;
  z-index: 5;
}
#notice:not(:empty) {
  padding: 15px 20px;
}
@media (max-width: 700px) {
  header {
    align-items: flex-start;
  }
  .brand span {
    display: none;
  }
  header nav {
    gap: 10px;
    max-width: 160px;
  }
  .hero {
    min-height: 550px;
    padding-top: 75px;
  }
  .hero-mark {
    right: -160px;
  }
  .steps div,
  .statement {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .steps b {
    margin-bottom: 5px;
  }
  .statement {
    gap: 20px;
  }
  section {
    padding: 45px 0;
  }
  .prose h1 {
    font-size: 40px;
  }
  .page-head h1 {
    font-size: 36px;
  }
  td,
  th {
    padding: 10px;
  }
  main {
    padding-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
/* Operational views keep controls compact and values easy to scan. */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem;
  max-width: none;
  margin: 1.5rem 0;
}
.filters label {
  flex: 1;
  min-width: 180px;
  margin: 0;
}
.filters button {
  margin: 0;
  min-height: 48px;
}
.metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  min-height: 124px;
}
.metric span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.metric strong {
  font-size: 1.7rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
meter {
  width: 100%;
  min-width: 100px;
}
@media (max-width: 600px) {
  .filters {
    display: block;
  }
  .filters label {
    display: block;
    margin-bottom: 1rem;
  }
  .metric strong {
    font-size: 1.35rem;
  }
}
