/*
 * procenu /flat/ — premium analytics light UI
 *
 * Design system: light, calm, "real estate intelligence" feel.
 * Aligned with site-wide palette in /shared/styles.css (procenu blue family),
 * but NOT importing it — that file forces overflow:hidden on body for /land/
 * Mini App and would break the public scrollable page.
 *
 * Typography: system-fonts only. Tabular-nums for prices/numbers.
 * Performance: no external fonts, no third-party CSS, no images-as-decoration.
 */

/* ========================================================================== */
/* Tokens                                                                     */
/* ========================================================================== */
:root {
  /* Surface */
  --bg:           #f7f8fa;
  --bg-card:      #ffffff;
  --bg-subtle:    #f1f5f9;
  --bg-elevated:  #fafbfc;

  /* Foreground */
  --fg:           #0f172a;  /* slate-900 — body text */
  --fg-strong:    #020617;  /* slate-950 — final numbers */
  --fg-muted:     #64748b;  /* slate-500 — secondary */
  --fg-faint:     #94a3b8;  /* slate-400 — placeholder */

  /* Borders */
  --border:        #e2e8f0; /* slate-200 */
  --border-strong: #cbd5e1; /* slate-300 — input idle */

  /* Accent (procenu blue family, premium-leaning, not crypto-bright) */
  --accent:        #1e40af; /* blue-800 */
  --accent-hover:  #1e3a8a; /* blue-900 */
  --accent-tint:   #eff6ff; /* blue-50  — focus ring fill */
  --accent-on:     #ffffff;

  /* Status */
  --ok:        #047857;  /* emerald-700 */
  --ok-tint:   #ecfdf5;
  --warn:      #b45309;  /* amber-700 */
  --warn-tint: #fffbeb;
  --err:       #b91c1c;  /* red-700 */
  --err-tint:  #fef2f2;

  /* Shape */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 12px;

  /* Shadows (subtle) */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.03);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);

  /* Layout */
  --container-max: 1180px;
  --topbar-h:      52px;
}

/* ========================================================================== */
/* Reset                                                                      */
/* ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(247,248,250,0) 34%),
    linear-gradient(90deg, rgba(30,64,175,0.04), rgba(5,150,105,0.03)),
    var(--bg);
  color: var(--fg);
  font: 15px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}
button { cursor: pointer; }

/* Better number rendering across system fonts */
.tabular { font-variant-numeric: tabular-nums; }

/* Focus — high-contrast, accessible */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========================================================================== */
/* Topbar                                                                     */
/* ========================================================================== */
.topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--fg);
  text-decoration: none;
}

.topbar__logo::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, #0f172a 0%, #1e40af 60%, #059669 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.topbar__nav { display: flex; gap: 16px; }
.topbar__link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.topbar__link:hover { color: var(--fg); }

/* ========================================================================== */
/* Page header                                                                */
/* ========================================================================== */
.page {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px 16px 64px;
}

.page__header {
  margin-bottom: 28px;
  display: grid;
  gap: 14px;
}

.page__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 600;
}

.page__eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page__eyebrow span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
}

.page__title {
  font-size: 32px;
  letter-spacing: 0;
  margin: 0;
  font-weight: 760;
  color: var(--fg-strong);
  line-height: 1.05;
}
.page__lede {
  color: var(--fg-muted);
  margin: 0;
  font-size: 15px;
  max-width: 720px;
  line-height: 1.6;
}

.page__signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 4px 0 0;
  max-width: 720px;
}

.page__signals div {
  margin: 0;
  border: 1px solid rgba(203,213,225,0.78);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  padding: 12px 14px;
  box-shadow: var(--shadow-xs);
}

.page__signals dt {
  margin: 0;
  color: var(--fg-strong);
  font-weight: 700;
  font-size: 14px;
}

.page__signals dd {
  margin: 2px 0 0;
  color: var(--fg-muted);
  font-size: 12px;
}

@media (min-width: 768px) {
  .page { padding: 48px 24px 80px; }
  .page__title { font-size: 48px; max-width: 760px; }
  .page__lede { font-size: 16px; }
  .page__signals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ========================================================================== */
/* Layout                                                                     */
/* ========================================================================== */
.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 1024px) {
  .layout {
    grid-template-columns: minmax(360px, 410px) minmax(0, 1fr);
    gap: 34px;
  }
}

/* ========================================================================== */
/* Form                                                                       */
/* ========================================================================== */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: visible;
}

.form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--ok));
}

@media (min-width: 768px) {
  .form { padding: 28px; }
}

@media (min-width: 1024px) {
  .form {
    position: sticky;
    top: calc(var(--topbar-h) + 24px);
  }
}

.form__group {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.form__legend {
  padding: 0;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--fg-muted);
}

.form__row {
  display: grid;
  gap: 12px;
}
.form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form__row--year-reno {
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
}

@media (max-width: 480px) {
  .form__row--year-reno { grid-template-columns: 1fr; }
}

.form__caption {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
}

/* ========================================================================== */
/* Field                                                                      */
/* ========================================================================== */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.field__hint {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 400;
  text-transform: lowercase;
}

.field__error {
  font-size: 12px;
  color: var(--err);
  margin: 4px 0 0;
}

.field input,
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--fg);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.field input::placeholder { color: var(--fg-faint); }

.field input:hover,
.field select:hover {
  border-color: #94a3b8; /* slate-400 */
}

.field input:focus,
.field select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.field input:disabled,
.field select:disabled {
  background: var(--bg-subtle);
  color: var(--fg-muted);
  cursor: not-allowed;
  opacity: 0.7;
}

.field input[aria-invalid="true"] {
  border-color: var(--err);
  box-shadow: 0 0 0 3px var(--err-tint);
}

.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M4 6.5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

/* Combobox */
.field--combobox { position: relative; }
.field__combobox { position: relative; }

#suggestList {
  position: absolute;
  left: 0;
  width: min(640px, calc(100vw - 32px));
  top: calc(100% + 4px);
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
}

#suggestList li {
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--fg);
  display: grid;
  gap: 3px;
  white-space: normal;
  user-select: none;
}

.suggest__main {
  display: block;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.suggest__meta {
  display: block;
  font-size: 12px;
  line-height: 1.25;
  color: var(--fg-muted);
}

#suggestList li:hover,
#suggestList li[aria-selected="true"] {
  background: var(--accent-tint);
  color: var(--accent-hover);
}

#suggestList li:hover .suggest__meta,
#suggestList li[aria-selected="true"] .suggest__meta {
  color: var(--fg-muted);
}

#suggestList .suggest__status {
  cursor: default;
  color: var(--fg-muted);
  background: transparent;
}

#suggestList .suggest__status:hover {
  color: var(--fg-muted);
  background: transparent;
}

#suggestList:empty { display: none; }

/* ========================================================================== */
/* Button                                                                     */
/* ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s,
              transform 0.05s;
  touch-action: manipulation;
  appearance: none;
  -webkit-appearance: none;
}

.btn:active:not(:disabled) { transform: translateY(0.5px); }

.btn--primary {
  background: linear-gradient(135deg, var(--fg-strong), #172554);
  color: var(--bg-card);
  box-shadow: 0 10px 24px rgba(15,23,42,0.14);
}
.btn--primary:hover:not(:disabled) { background: linear-gradient(135deg, #020617, #1e3a8a); }
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--ghost {
  background: var(--bg-card);
  color: var(--fg);
  border-color: var(--border-strong);
  width: auto;
  padding: 0 16px;
  height: 40px;
  font-size: 14px;
}
.btn--ghost:hover { background: var(--bg-subtle); }

.btn__loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--bg-card);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================================================== */
/* Result panel                                                               */
/* ========================================================================== */
.result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  /* CLS reservation: same height across placeholder / loading / error / data */
  min-height: 420px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .result {
    padding: 32px;
    min-height: 480px;
  }
}

/* Empty state — premium minimalist */
.result__placeholder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.placeholder__report {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248,250,252,0.92), rgba(255,255,255,0.98)),
    repeating-linear-gradient(90deg, rgba(15,23,42,0.035) 0 1px, transparent 1px 72px);
  padding: 16px;
  display: grid;
  gap: 12px;
  margin-bottom: 4px;
}

.placeholder__report-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 600;
}

.placeholder__price-line {
  width: min(300px, 72%);
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--fg-strong), #334155);
}

.placeholder__corridor-line {
  width: min(240px, 56%);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--ok));
}

.placeholder__chart {
  height: 96px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.placeholder__chart span {
  display: block;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, rgba(30,64,175,0.75), rgba(5,150,105,0.45));
}

.placeholder__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  color: var(--fg);
}

.placeholder__desc {
  color: var(--fg-muted);
  margin: 0 0 8px;
  font-size: 14px;
  max-width: 540px;
}

.placeholder__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
}

.placeholder__list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.placeholder__list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.placeholder__num {
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  color: var(--fg-faint);
}

.placeholder__txt { color: var(--fg-muted); }

/* Loading skeleton */
.result__loading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skel {
  background: linear-gradient(
    90deg,
    var(--bg-subtle) 0%,
    #e2e8f0 50%,
    var(--bg-subtle) 100%
  );
  background-size: 200% 100%;
  animation: skel-loop 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}

@keyframes skel-loop {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skel--price    { height: 52px; width: 65%; }
.skel--corridor { height: 18px; width: 45%; }
.skel--row      { height: 44px; width: 100%; }
.skel-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

@media (prefers-reduced-motion: reduce) {
  .skel { animation: none; opacity: 0.7; }
  .spinner { animation-duration: 2.4s; }
}

/* Error state */
.result__error {
  padding: 16px 0;
}

.error__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 8px;
  color: var(--err);
}

.error__desc {
  color: var(--fg);
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 540px;
}

/* ========================================================================== */
/* Result data — the report look                                              */
/* ========================================================================== */
.result__data {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Headline */
.result-headline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 8px;
}

.result-headline__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 600;
}

.result-headline__price {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--fg-strong);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 480px) {
  .result-headline__price { font-size: 44px; }
}

@media (min-width: 768px) {
  .result-headline__price { font-size: 52px; }
}

.result-headline__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  font-size: 14px;
  color: var(--fg-muted);
}

.result-headline__corridor {
  font-variant-numeric: tabular-nums;
  color: var(--fg);
  font-weight: 500;
}

.result-headline__corridor span {
  color: var(--fg-muted);
  font-weight: 400;
}

.result-headline__ppm {
  font-variant-numeric: tabular-nums;
  color: var(--fg-muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.chip--high   { background: var(--ok-tint);     color: var(--ok); }
.chip--medium { background: var(--accent-tint); color: var(--accent); }
.chip--low    { background: var(--warn-tint);   color: var(--warn); }

/* Value band */
.value-band {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248,250,252,0.92), rgba(255,255,255,0.98)),
    repeating-linear-gradient(90deg, rgba(15,23,42,0.035) 0 1px, transparent 1px 68px);
}

.value-band__track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.value-band__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(30,64,175,0.25), var(--accent), var(--ok));
}

.value-band__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 5px solid var(--fg-strong);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(15,23,42,0.22);
}

.value-band__labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.value-band__labels span:nth-child(2) {
  color: var(--fg-strong);
  font-weight: 700;
}

.value-band__labels span:last-child {
  text-align: right;
}

/* Section */
.result-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-section__title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--fg-muted);
  margin: 0;
}

/* Subject — key/value grid */
.subject-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 0;
  padding: 0;
}

@media (min-width: 480px) {
  .subject-grid { grid-template-columns: repeat(3, 1fr); }
}

.subject-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.subject-item dt {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--fg-muted);
  margin: 0;
}

.subject-item dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin: 0;
  font-variant-numeric: tabular-nums;
  word-wrap: break-word;
}

/* Factors */
.factor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.factor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.factor-row:first-child { border-top: 0; padding-top: 0; }

.factor-row__label {
  color: var(--fg);
  flex: 1 1 auto;
  min-width: 0;
}

.factor-row__value {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}

.factor-row__value--positive { color: var(--ok); }
.factor-row__value--negative { color: var(--err); }
.factor-row__value--neutral  { color: var(--fg-muted); font-weight: 500; }

/* Comps */
.comp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comp-row {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: grid;
  gap: 4px 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  font-size: 14px;
  transition: border-color 0.15s;
}

.comp-row:hover { border-color: var(--border-strong); }

.comp-row__addr {
  font-weight: 500;
  color: var(--fg);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comp-row__price {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--fg-strong);
  white-space: nowrap;
}

.comp-row__meta {
  grid-column: 1 / -1;
  color: var(--fg-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.comp-row__meta-sep { color: var(--fg-faint); }

/* Result-level disclaimer (smaller, after data) */
.result__inline-note {
  margin: 8px 0 0;
  padding: 12px 14px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  color: var(--fg-muted);
  font-size: 12px;
  line-height: 1.55;
}

/* ========================================================================== */
/* Page disclaimer                                                            */
/* ========================================================================== */
.page__disclaimer {
  margin-top: 56px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  line-height: 1.7;
  max-width: 800px;
}

.page__disclaimer p { margin: 0 0 10px; }
.page__disclaimer p:last-child { margin: 0; }
.page__disclaimer strong { color: var(--fg); font-weight: 600; }

/* ========================================================================== */
/* Utility                                                                    */
/* ========================================================================== */
.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;
}
