:root {
  --ink: #15191e;
  --ink-2: #2c343c;
  --ink-mute: #76808a;
  --ink-soft: #a5adb6;
  --rule: #15191e;
  --rule-soft: #c9bfa6;
  --rule-fade: #e5dbc1;
  --paper: #f5f0e1;
  --paper-2: #efe7d2;
  --paper-warm: #fbf6e9;
  --card: #fffcf3;
  --brand: #1a3a8c;
  --accent: #ff5b1f;
  --accent-soft: #ffe6d6;
  --ok: #1c6f4f;
  --ok-soft: #d6e9dd;
  --warn: #c47a0c;
  --warn-soft: #f7e7c4;
  --alert: #b8302c;
  --alert-soft: #f3d6d4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 14px; }
body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-feature-settings: "ss01", "tnum", "cv11";
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ------- Brand wordmark ------- */
.wordmark {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-variation-settings: "opsz" 96, "wght" 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
}
.wordmark::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  transform: translateY(-9px);
}

/* ------- Common app shell (admin) ------- */
.shell {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 100vh;
  background: var(--paper);
  align-items: start;
}
.shell__sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--rule);
  padding: 22px 18px;
  background: var(--paper);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.shell__main { padding: 28px 36px 56px; min-width: 0; }

.nav { display: flex; flex-direction: column; gap: 2px; margin-top: 24px; }
.nav a {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  color: var(--ink); text-decoration: none;
  font-weight: 500; letter-spacing: -0.005em;
  border-left: 2px solid transparent;
}
.nav a:hover { background: var(--paper-2); }
.nav a.is-active {
  border-left-color: var(--accent);
  background: var(--paper-warm);
  font-weight: 600;
}
.nav .lbl { flex: 1; }
.nav .ct {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; color: var(--ink-mute);
}
.nav__group {
  margin-top: 28px;
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0 12px 8px;
  border-bottom: 1px dashed var(--rule-soft);
  margin-bottom: 8px;
}

.sidebar__user {
  margin-top: auto; border-top: 1px solid var(--rule-soft);
  padding-top: 14px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar__user .av {
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: "Bricolage Grotesque";
  font-variation-settings: "wght" 700;
  font-size: 12px;
}
.sidebar__user .who {
  font-size: 12px; line-height: 1.2;
  flex: 1; min-width: 0;
}
.sidebar__user .who strong {
  display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sidebar__user .who small { display: block; color: var(--ink-mute); font-size: 10.5px; }

/* ------- Page header (within main) ------- */
.page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-head::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  border-bottom: 1px solid var(--rule);
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.page-head h1 {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "opsz" 64, "wght" 600;
  font-size: 38px; line-height: 1; letter-spacing: -0.025em;
}
.page-head .meta {
  text-align: right;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 0 14px;
  min-height: 36px;
  line-height: 1;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: transform .08s, box-shadow .08s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { box-shadow: 3px 3px 0 var(--ink); transform: translate(-1px, -1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--accent { background: var(--accent); color: #fff; border-color: var(--ink); }
.btn--ghost { background: transparent; border-color: transparent; min-height: 28px; padding: 0 6px; }
.btn--sm { padding: 0 10px; font-size: 12px; min-height: 28px; }
.btn i, .btn svg {
  width: 14px; height: 14px; flex-shrink: 0;
}
.btn--sm i, .btn--sm svg,
.btn--ghost i, .btn--ghost svg {
  width: 13px; height: 13px;
}
.btn .sub {
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  opacity: 0.65; margin-left: 4px;
}

/* ------- KPI cards ------- */
.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 3px double var(--rule);
  margin: 24px 0 36px;
}
.kpi {
  padding: 22px 24px 20px;
  border-right: 1px dashed var(--rule-soft);
  position: relative;
}
.kpi:last-child { border-right: 0; }
.kpi__lbl {
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.kpi__lbl .tag {
  padding: 1px 5px; background: var(--accent-soft);
  color: var(--accent); border: 1px solid var(--accent);
  font-size: 9.5px; letter-spacing: 0.06em;
}
.kpi__num {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 56px; line-height: 0.95;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.kpi__num .unit {
  font-size: 22px; font-variation-settings: "wght" 400;
  color: var(--ink-mute); margin-right: 4px;
}
.kpi__delta {
  margin-top: 8px;
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  color: var(--ok);
}
.kpi__delta.is-down { color: var(--alert); }

/* ------- Date range pill ------- */
.daterange {
  display: inline-flex; align-items: center;
  border: 1px solid var(--rule);
  background: var(--card);
  font-family: "JetBrains Mono", monospace; font-size: 12px;
}
.daterange__seg {
  padding: 7px 12px;
  display: flex; align-items: center; gap: 6px;
}
.daterange__seg + .daterange__seg { border-left: 1px solid var(--rule-soft); }
.daterange__lbl { color: var(--ink-mute); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.daterange__btn {
  align-self: stretch;
  background: var(--ink); color: var(--paper);
  padding: 0 16px; cursor: pointer;
  border: 0; border-left: 1px solid var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 500;
  line-height: 1;
}
.daterange__btn:hover { background: #2a3138; }

/* ------- Cards / panels ------- */
.panel {
  background: var(--card);
  border: 1px solid var(--rule);
  position: relative;
}
.panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.panel__head h3 {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "opsz" 24, "wght" 600;
  font-size: 16px; letter-spacing: -0.01em;
}
.panel__head .small {
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  color: var(--ink-mute);
}

/* corner brackets */
.has-brackets::before, .has-brackets::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1.5px solid var(--ink);
}
.has-brackets::before {
  top: -1px; left: -1px;
  border-right: 0; border-bottom: 0;
}
.has-brackets::after {
  bottom: -1px; right: -1px;
  border-left: 0; border-top: 0;
}

/* ------- Charts (visual only) ------- */
.chart {
  padding: 20px 22px;
  height: 220px;
  position: relative;
}
.chart svg { width: 100%; height: 100%; }
.chart__legend {
  position: absolute; top: 18px; right: 22px;
  display: flex; gap: 14px;
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  color: var(--ink-mute);
}
.chart__legend i {
  display: inline-block; width: 8px; height: 8px;
  margin-right: 6px; transform: translateY(-1px);
}

/* ------- Tables ------- */
.ledger {
  width: 100%; border-collapse: collapse;
  table-layout: fixed;
  font-size: 13.5px;
}
.ledger td, .ledger th {
  overflow: hidden; text-overflow: ellipsis;
}
.ledger thead th {
  text-align: left; padding: 9px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.ledger tbody td {
  padding: 11px 14px;
  border-bottom: 1px dashed var(--rule-soft);
  vertical-align: middle;
}
.ledger tbody tr:hover td { background: var(--paper-warm); }
.ledger tbody tr:last-child td { border-bottom: 1px solid var(--rule); }

.mono { font-family: "JetBrains Mono", monospace; font-feature-settings: "tnum"; }
.mono--id { letter-spacing: 0.04em; font-weight: 500; }

/* ------- Status dots ------- */
.dots { display: inline-flex; gap: 4px; }
.dot {
  width: 9px; height: 9px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 60%, var(--ink));
  position: relative;
}
.dot--ok { background: var(--ok); color: var(--ok); }
.dot--warn { background: var(--warn); color: var(--warn); }
.dot--bad { background: var(--alert); color: var(--alert); }
.dot[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--ink); color: var(--paper);
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  padding: 4px 7px; white-space: nowrap;
  border: 1px solid var(--ink);
}

/* ------- Avatar circle ------- */
.av {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-family: "Bricolage Grotesque"; font-variation-settings: "wght" 600;
  font-size: 12px; color: var(--ink-2);
  flex-shrink: 0;
}
img.av {
  width: 34px; height: 34px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ------- Search input ------- */
.search {
  display: flex; align-items: center;
  border: 1px solid var(--rule); background: var(--card);
  padding: 0 12px;
}
.search input {
  border: 0; outline: 0; padding: 8px 0;
  flex: 1; font-family: inherit; font-size: 13px; background: transparent;
}
.search .kbd {
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  padding: 2px 5px; border: 1px solid var(--rule-soft);
  background: var(--paper); color: var(--ink-mute);
}

/* ------- Tabs (admin) ------- */
.tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--rule);
}
.tabs__t {
  padding: 10px 16px;
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 2px solid transparent;
  cursor: pointer; background: transparent; border-left: 0; border-right: 0; border-top: 0;
}
.tabs__t.is-active { color: var(--ink); border-bottom-color: var(--accent); font-weight: 600; }

/* ------- Form (filing form aesthetic) ------- */
.form-grid {
  display: grid; grid-template-columns: 220px 1fr; gap: 0;
  border: 1px solid var(--rule);
  background: var(--card);
}
.form-row {
  display: contents;
}
.form-row .lbl {
  padding: 14px 18px;
  background: var(--paper-warm);
  border-bottom: 1px dashed var(--rule-soft);
  border-right: 1px solid var(--rule);
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center;
}
.form-row .val {
  padding: 0 18px;
  border-bottom: 1px dashed var(--rule-soft);
  display: flex; align-items: center; gap: 10px;
  min-height: 50px;
}
.form-row:last-child .lbl, .form-row:last-child .val { border-bottom: 0; }
.form-row .val input, .form-row .val select, .form-row .val textarea {
  flex: 1; border: 0; outline: 0; padding: 10px 0;
  font-family: inherit; font-size: 14px; background: transparent;
  color: var(--ink);
}
.form-row .val input::placeholder { color: var(--ink-soft); font-style: italic; }
.form-row .val .hint {
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  color: var(--ink-mute);
}

/* ------- Pagination ------- */
.pager {
  display: flex; gap: 4px; align-items: center;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
}
.pager a, .pager span {
  padding: 5px 10px; border: 1px solid var(--rule-soft);
  color: var(--ink-mute); text-decoration: none; background: var(--card);
}
.pager .is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ------- Public verification page ------- */
.doc {
  max-width: 980px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 56px 64px;
  position: relative;
}
.doc__edge {
  position: absolute; inset: 8px; pointer-events: none;
  border: 1px dashed var(--rule-soft);
}
.doc__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
  padding-bottom: 28px;
  border-bottom: 3px double var(--rule);
}
.doc__head .left { display: flex; flex-direction: column; align-items: flex-start; }
.doc__head .left .wordmark { line-height: 1; }
.doc__head .left .stamp { margin-top: 12px; }
.doc__head .right {
  text-align: right;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  line-height: 1.55; color: var(--ink-2);
}
.doc__head .right strong {
  font-family: "Hanken Grotesk"; font-weight: 700; font-size: 14px;
  color: var(--ink); display: block; margin-bottom: 6px;
}

.approval-row {
  display: grid; grid-template-columns: 90px 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule-soft);
  align-items: start;
}
.approval-row:last-child { border-bottom: 0; }
.approval-row .code {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 0;
  border-bottom: 1px solid var(--rule);
  width: max-content;
}
.approval-row .title {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "opsz" 24, "wght" 600;
  font-size: 18px; line-height: 1.2;
  letter-spacing: -0.01em;
}
.approval-row .sub { color: var(--ink-mute); font-size: 12.5px; margin-top: 2px; }
.approval-row .dates {
  text-align: right;
  font-family: "JetBrains Mono", monospace; font-size: 11.5px;
  line-height: 1.5;
}
.approval-row .dates .lbl { color: var(--ink-mute); margin-right: 4px; }
.approval-row .dates .expired { color: var(--alert); }

.section-rule {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 12px;
  margin-top: 36px; margin-bottom: 8px;
}
.section-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--rule);
}
.section-rule .count {
  color: var(--accent); font-weight: 600;
}

/* ------- Login page ------- */
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.login__hero {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 64px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.login__hero::after {
  content: "";
  position: absolute; right: -20%; top: -20%;
  width: 600px; height: 600px;
  background:
    repeating-linear-gradient(45deg, var(--accent) 0 18px, var(--ink) 18px 36px);
  opacity: 0.08;
  transform: rotate(8deg);
}
.login__hero .wordmark { color: var(--paper); font-size: 28px; }
.login__hero h2 {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 64px; line-height: 0.95; letter-spacing: -0.04em;
  max-width: 12ch;
  position: relative; z-index: 2;
}
.login__hero .seal {
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.55;
  position: relative; z-index: 2;
}
.login__hero .seal strong { color: var(--accent); opacity: 1; }
.login__form {
  padding: 56px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.login__form .eyebrow { margin-bottom: 8px; }
.login__form h1 {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "opsz" 64, "wght" 600;
  font-size: 40px; letter-spacing: -0.02em; margin-bottom: 28px;
}
.login__form .field {
  margin-bottom: 16px;
}
.login__form .field label {
  display: block;
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 4px;
}
.login__form .field input {
  width: 100%;
  border: 0; border-bottom: 1.5px solid var(--ink);
  padding: 8px 0; font-family: inherit; font-size: 16px;
  background: transparent; color: var(--ink); outline: 0;
}
.login__form .footer-note {
  margin-top: 22px;
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  color: var(--ink-mute); letter-spacing: 0.06em;
}

/* ------- Public landing ------- */
.public-stage {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: 80px 24px;
  background: var(--paper);
  position: relative;
}
.public-stage::before {
  content: "";
  position: absolute; top: 32px; left: 32px; right: 32px;
  border-top: 4px solid var(--ink);
}
.public-stage::after {
  content: "";
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  border-top: 4px solid var(--ink);
}
.public-card {
  width: 100%; max-width: 480px;
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 48px 48px 36px;
  position: relative;
}
.public-card .wordmark { font-size: 36px; }
.public-card h2 {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "opsz" 64, "wght" 500;
  font-size: 32px; line-height: 1.05; letter-spacing: -0.02em;
  margin-top: 24px;
}
.public-card p {
  color: var(--ink-mute); margin-top: 8px;
  font-size: 13.5px;
}
.public-card .field { margin-top: 20px; }
.public-card .field label {
  display: block;
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 4px;
}
.public-card .field input {
  width: 100%;
  border: 0; border-bottom: 1.5px solid var(--ink);
  padding: 8px 0; font-family: inherit; font-size: 16px;
  background: transparent; outline: 0;
}
.public-card .submit {
  margin-top: 24px;
  width: 100%;
  background: var(--ink); color: var(--paper);
  border: 0; padding: 14px;
  font-family: "Bricolage Grotesque";
  font-variation-settings: "wght" 600;
  font-size: 14px; letter-spacing: 0.02em; cursor: pointer;
}
.public-card .submit::after {
  content: " →";
  font-family: "Hanken Grotesk";
}
.public-card .seal {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule-soft);
  font-family: "JetBrains Mono", monospace; font-size: 10.5px;
  color: var(--ink-mute); letter-spacing: 0.04em;
  display: flex; justify-content: space-between;
}

/* ------- Misc utils ------- */
.row { display: flex; align-items: center; }
.row-gap-3 { gap: 12px; }
.row-gap-4 { gap: 18px; }
.ml-auto { margin-left: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 18px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 18px; }
.mt-5 { margin-top: 28px; }

.rule {
  height: 1px; background: var(--rule); opacity: 0.18; margin: 22px 0;
}
.double-rule {
  height: 4px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin: 24px 0;
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 8px; min-height: 22px; font-size: 11px;
  border: 1px solid var(--rule);
  background: var(--card);
  font-family: "JetBrains Mono", monospace; letter-spacing: 0.04em;
  line-height: 1;
}
.pill i, .pill svg {
  width: 12px; height: 12px; flex-shrink: 0;
}
.pill--lg {
  min-height: 36px; padding: 0 12px; font-size: 12px;
  gap: 7px;
}
.pill--lg i, .pill--lg svg { width: 14px; height: 14px; }
.pill--ok { background: var(--ok-soft); color: var(--ok); border-color: var(--ok); }
.pill--warn { background: var(--warn-soft); color: var(--warn); border-color: var(--warn); }
.pill--bad { background: var(--alert-soft); color: var(--alert); border-color: var(--alert); }
.pill--accent { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }

.stat-tile {
  border: 1px solid var(--rule);
  padding: 16px 18px;
  background: var(--card);
}
.stat-tile .l {
  font-family: "JetBrains Mono", monospace; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}
.stat-tile .v {
  font-family: "Bricolage Grotesque";
  font-variation-settings: "wght" 600;
  font-size: 24px; margin-top: 6px;
}

/* hi-vis stripe */
.stripe-tape {
  height: 14px;
  background: repeating-linear-gradient(
    135deg,
    var(--accent) 0 10px,
    var(--ink) 10px 20px
  );
  opacity: 0.85;
}

[x-cloak] { display: none !important; }
