:root {
  --paper: #f5f2ea;
  --surface: #fffdf8;
  --ink: #171918;
  --muted: #666861;
  --line: #d9d5ca;
  --accent: #2457d6;
  --accent-dark: #163d9d;
  --green: #177b52;
  --amber: #a55a08;
  --red: #b53535;
  --shadow: 0 18px 50px rgba(32, 34, 30, 0.08);
  --radius: 14px;
  --shell: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui,
    sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  max-width: 100%;
  font: inherit;
}
.hero-grid > *,
.checker-panel,
#check-form {
  min-width: 0;
}
.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(23, 25, 24, 0.12);
  background: rgba(245, 242, 234, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-family: Georgia, serif;
  font-size: 17px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.main-nav a {
  color: #4e504c;
  transition: color 0.16s ease;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--ink);
}
.nav-account {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--ink) !important;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  padding: 7px 10px;
}
.hero {
  border-bottom: 1px solid var(--line);
  padding: 78px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 480px);
  gap: 86px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.hero h1,
.page-head h1 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1.04;
}
.hero h1 {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 500;
}
.hero-lead {
  max-width: 650px;
  margin: 28px 0;
  color: #545650;
  font-size: 18px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.trust-row span,
.chip,
.status-label,
.family-label {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}
.checker-panel {
  background: var(--surface);
  border: 1px solid #cec9bc;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.checker-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.checker-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(165, 90, 8, 0.1);
}
.status-dot.online {
  background: var(--green);
}
#check-form {
  padding: 22px;
  display: grid;
  gap: 9px;
}
label {
  font-size: 13px;
  font-weight: 700;
}
.optional {
  color: var(--muted);
  font-weight: 400;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7c3b8;
  border-radius: 9px;
  background: #fff;
  padding: 11px 12px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(36, 87, 214, 0.12);
}
.secret-field {
  position: relative;
}
.secret-field input {
  padding-right: 60px;
}
.secret-field button {
  position: absolute;
  right: 5px;
  top: 5px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  padding: 7px;
}
.consent {
  display: flex;
  gap: 10px;
  margin: 8px 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}
.consent input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--accent);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 0.15s,
    background 0.15s;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  background: var(--ink);
  color: #fff;
}
.button.primary:hover {
  background: #30332f;
}
.button.ghost {
  border-color: var(--line);
}
.button.wide {
  width: 100%;
}
.button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.check-progress {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.progress-track {
  height: 7px;
  margin: 10px 0;
  border-radius: 99px;
  background: #e7e3d9;
  overflow: hidden;
}
.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 0.35s ease;
}
.check-progress p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.form-error {
  margin: 0 22px 20px;
  border-left: 3px solid var(--red);
  background: #fff0ef;
  padding: 10px 12px;
  color: #832222;
  font-size: 13px;
}
.section {
  padding-top: 68px;
  padding-bottom: 72px;
}
.section-tint {
  border-block: 1px solid var(--line);
  background: #ece8de;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}
.section-heading h2,
.prose h2,
.detail-grid h2,
.form-section h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.text-link {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}
.ranking-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ranking-table th {
  padding: 13px 16px;
  background: #efebe2;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
}
.ranking-table td {
  padding: 16px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}
.ranking-table tbody tr:hover {
  background: #faf8f2;
}
.ranking-table small,
.station-card small,
.directory-card span,
.owner-station small,
.config-status small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.rank-number {
  font-family: Georgia, serif;
  color: #8a8b84;
}
.station-name {
  font-weight: 750;
}
.empty-cell {
  text-align: center !important;
  color: var(--muted);
  padding: 42px !important;
}
.station-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.station-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid #d2cec3;
  border-radius: 12px;
  background: var(--surface);
  padding: 17px;
  transition:
    transform 0.15s,
    border-color 0.15s;
}
.station-card:hover {
  transform: translateY(-2px);
  border-color: #a9a59b;
}
.station-monogram {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ded9cc;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 18px;
}
.station-monogram.large {
  width: 50px;
  height: 50px;
}
.station-monogram.xl {
  width: 72px;
  height: 72px;
  font-size: 30px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #e7e2d7;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-grid p {
  max-width: 450px;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-grid > div > a {
  display: block;
  margin: 7px 0;
  color: #555752;
  font-size: 13px;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #d0cbbf;
  color: var(--muted);
  font-size: 12px;
}
.page-head {
  padding: 62px 0 44px;
  border-bottom: 1px solid var(--line);
}
.page-head.compact {
  padding: 42px 0 32px;
}
.page-head h1 {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
}
.page-head p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.chip.active,
.chip:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.method-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
}
.method-note span {
  color: var(--muted);
}
.search-form {
  display: flex;
  gap: 8px;
  max-width: 620px;
  margin-bottom: 22px;
}
.search-form .button {
  flex: 0 0 auto;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.directory-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
}
.directory-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.directory-card h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 23px;
  font-weight: 500;
}
.directory-card p {
  color: var(--muted);
  font-size: 13px;
}
.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.card-actions a:last-child {
  color: var(--accent);
}
.model-card {
  min-height: 180px;
}
.family-label {
  align-self: flex-start;
  color: var(--accent);
  border-color: #c7d2ed;
}
.model-card code,
.page-head code {
  word-break: break-all;
  color: #565852;
  font-size: 12px;
}
.empty-card {
  grid-column: 1/-1;
  border: 1px dashed #bbb7ad;
  border-radius: 12px;
  padding: 32px;
  color: var(--muted);
  text-align: center;
}
.detail-title {
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-title > div {
  flex: 1;
}
.detail-title .button {
  align-self: center;
}
.detail-grid,
.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 40px;
}
.metric-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 16px;
}
.metric-card > span {
  font-size: 12px;
  color: var(--muted);
}
.metric-card > strong {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 32px;
}
.metric-card small {
  color: var(--muted);
}
.profile-aside {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}
.profile-aside h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 23px;
  font-weight: 500;
}
.profile-aside p {
  color: var(--muted);
  font-size: 13px;
}
.disclaimer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  color: var(--muted);
  font-size: 11px;
}
.ratio-list {
  margin-top: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.ratio-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 15px;
  border-top: 1px solid var(--line);
}
.ratio-list > div:first-child {
  border-top: 0;
}
.ratio-list span small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.report-head {
  background: #ebe6da;
}
.report-verdict span {
  color: var(--muted);
  font-size: 12px;
}
.report-verdict h1 {
  margin-top: 5px;
}
.report-verdict.consistent h1 {
  color: var(--green);
}
.report-verdict.suspicious h1 {
  color: var(--red);
}
.summary-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 38px;
}
.summary-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 13px 12px 13px 30px;
}
.summary-list li:before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 800;
}
.detail-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.detail-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
}
.detail-list > div:first-child {
  border-top: 0;
}
.detail-list span {
  color: var(--muted);
  font-size: 13px;
}
.auth-shell {
  display: grid;
  min-height: calc(100vh - 69px);
  place-items: center;
  padding: 54px 20px;
}
.auth-card {
  width: min(100%, 440px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 30px;
}
.auth-card h1 {
  margin: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 38px;
  font-weight: 500;
}
.auth-card > p {
  color: var(--muted);
}
.stack-form {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}
.errorlist {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--red);
  font-size: 12px;
}
.auth-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 20px !important;
  font-size: 13px;
}
.auth-foot a {
  color: var(--accent);
  font-weight: 700;
}
.message-card {
  text-align: center;
}
.message-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: #e4eafa;
  color: var(--accent);
  font-size: 24px;
}
.form-section {
  padding-top: 38px;
  padding-bottom: 72px;
}
.panel-form {
  max-width: 780px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}
.panel-form h2 {
  margin: 22px 0 15px;
  font-size: 24px;
}
.panel-form h2:first-child {
  margin-top: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 7px 18px;
  padding: 12px 0;
  border-top: 1px solid #ebe7dd;
}
.form-row:first-of-type {
  border-top: 0;
}
.form-row label {
  padding-top: 10px;
}
.form-row small,
.form-row .errorlist {
  grid-column: 2;
}
.form-row small {
  color: var(--muted);
  font-size: 11px;
}
.form-row ul {
  grid-column: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
}
.form-row ul label {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  font-weight: 400;
}
.form-row ul input {
  width: 16px;
}
.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.dashboard-actions {
  display: flex;
  gap: 10px;
}
.owner-stations {
  display: grid;
  gap: 16px;
}
.owner-station {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}
.owner-station header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.owner-station h2 {
  margin: 7px 0 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 26px;
  font-weight: 500;
}
.owner-station p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.owner-station header > a,
.endpoint-actions a {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.status-label.published {
  border-color: #b9d7c9;
  color: var(--green);
}
.status-label.pending {
  border-color: #e2c79d;
  color: var(--amber);
}
.endpoint-list {
  margin: 20px 0;
}
.endpoint-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.endpoint-row small,
.endpoint-status span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.endpoint-actions {
  display: flex;
  gap: 10px;
}
.config-status {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 780px;
  margin-bottom: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 15px;
}
.prose {
  max-width: 790px;
  padding-top: 55px;
  padding-bottom: 80px;
}
.prose h2 {
  margin: 38px 0 12px;
}
.prose p {
  color: #50524e;
  font-size: 16px;
  line-height: 1.85;
}
.flash-stack {
  position: relative;
  z-index: 25;
}
.flash {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  padding: 10px 14px;
  font-size: 13px;
}
.flash.success {
  border-color: #aad0bd;
  color: var(--green);
}
.flash.error {
  border-color: #dfb4b0;
  color: var(--red);
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .trust-row {
    justify-content: center;
  }
  .station-grid,
  .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }
  .profile-aside {
    position: static;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 58px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 8px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 11px 12px;
  }
  .nav-account {
    border: 0;
    border-radius: 7px;
    background: #efebe2;
  }
  .hero {
    padding: 50px 0;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-grid {
    gap: 34px;
  }
  .checker-head span:last-child {
    display: none;
  }
  .section {
    padding-top: 48px;
    padding-bottom: 50px;
  }
  .section-heading {
    align-items: start;
  }
  .station-grid,
  .directory-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ranking-table-wrap {
    border: 0;
    background: transparent;
    overflow: visible;
  }
  .ranking-table thead {
    display: none;
  }
  .ranking-table,
  .ranking-table tbody,
  .ranking-table tr,
  .ranking-table td {
    display: block;
  }
  .ranking-table tr {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    padding: 10px 13px;
  }
  .ranking-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 5px 0;
    text-align: right;
  }
  .ranking-table td:before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    text-align: left;
  }
  .ranking-table td[colspan] {
    display: block;
    text-align: center;
  }
  .ranking-table td[colspan]:before {
    display: none;
  }
  .method-note {
    grid-template-columns: 1fr;
  }
  .detail-title {
    align-items: start;
    flex-wrap: wrap;
  }
  .detail-title .station-monogram {
    width: 54px;
    height: 54px;
  }
  .detail-title > div {
    min-width: calc(100% - 80px);
  }
  .detail-title .button {
    width: 100%;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-head {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .endpoint-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-row label {
    padding-top: 0;
  }
  .form-row small,
  .form-row .errorlist,
  .form-row ul {
    grid-column: 1;
  }
  .form-row ul {
    columns: 1;
  }
  .form-actions {
    flex-direction: column;
  }
  .footer-grid {
    gap: 22px;
  }
  .site-footer {
    padding-top: 36px;
  }
}
@media (max-width: 430px) {
  .hero h1 {
    font-size: 39px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .checker-panel {
    border-radius: 13px;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .auth-card {
    padding: 23px;
  }
  .page-head h1 {
    font-size: 38px;
  }
  .section-heading {
    display: block;
  }
  .section-heading .text-link {
    display: inline-block;
    margin-top: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
