@charset "UTF-8";
:root {
  --bg: #f7f8fa;
  --surface: #fff;
  --ink: #19212d;
  --muted: #657285;
  --line: #e5e8ed;
  --accent: #245be7;
  --accent-soft: #edf2ff;
  --danger: #ad3b44;
  --font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: #173fa4;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
button,
a {
  transition:
    background 0.16s,
    color 0.16s,
    transform 0.16s,
    border-color 0.16s;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #9bb4ff;
  outline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.3;
  font-weight: 650;
}
h2 {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 650;
}
h3 {
  font-size: 15px;
  font-weight: 600;
}
p {
  overflow-wrap: anywhere;
}
ul,
ol {
  padding-left: 22px;
}
code,
.mono {
  font-family: var(--mono);
  font-size: 0.9em;
}
code {
  overflow-wrap: anywhere;
}
small {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.muted,
.subtitle {
  color: var(--muted);
}
.subtitle {
  margin-top: 10px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.8;
}
.accent-text,
.heading-dot {
  color: var(--accent);
}
.danger-text,
.danger-link {
  color: var(--danger) !important;
}
.nowrap {
  white-space: nowrap;
}
.small-label,
.footnote,
.helptext {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.footnote {
  margin-top: 20px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 730;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.brand-light {
  font-weight: 450;
}
.brand-symbol {
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: white;
  width: 29px;
  height: 29px;
  font-weight: 800;
  font-size: 19px;
  border-radius: 7px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 9px 17px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 550;
  white-space: nowrap;
  line-height: 1.5;
  text-align: center;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 2px 3px #245be715;
}
.button-primary:hover {
  background: #1d4ed0;
  color: #fff;
  border-color: #1d4ed0;
}
.button-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.button-secondary:hover {
  border-color: #bdc7d7;
  color: var(--ink);
}
.button-quiet {
  background: transparent;
  color: var(--muted);
}
.button-quiet:hover {
  background: #eff1f5;
  color: var(--ink);
}
.button-danger {
  background: var(--danger);
  color: #fff;
}
.button-danger:hover {
  background: #8e2d35;
  color: #fff;
}
.button-full {
  width: 100%;
}
.text-button {
  border: 0;
  padding: 0;
  background: none;
  color: var(--accent);
  font-size: 13px;
}
.text-button:hover {
  text-decoration: underline;
}
.icon-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 32px;
  min-height: 32px;
  font-size: 19px;
  border-radius: 5px;
}
.icon-button:hover {
  background: var(--line);
  color: var(--ink);
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.actions form {
  margin: 0;
  display: flex;
}
.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;
}
.skip-link {
  position: fixed;
  left: 10px;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 10px;
  z-index: 200;
}
.skip-link:focus {
  top: 10px;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 226px;
  padding: 30px 21px 0;
  background: #f0f2f5;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.workspace-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 33px 0 30px;
  font-size: 12px;
  color: #596574;
}
.workspace-dot {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-caption {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #969da9;
  padding: 0 10px;
  margin-bottom: 10px;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 -5px;
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  color: #687180;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 500;
}
.side-nav a:hover {
  background: #e8ebf0;
  color: var(--ink);
}
.side-nav a.active {
  background: white;
  color: var(--accent);
  box-shadow: 0 1px 4px #19212d06;
}
.nav-icon {
  width: 18px;
  text-align: center;
  font-size: 17px;
}
.sidebar-note {
  margin-top: auto;
  padding: 30px 6px;
}
.sidebar-note p {
  margin: 10px 0 12px;
  font-size: 12px;
  color: #8c94a1;
  line-height: 1.9;
}
.sidebar-note > a {
  font-size: 11px;
  color: #69778f;
}
.sidebar-account {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #dfe3e9;
  margin: 0 -5px;
  padding: 19px 0;
}
.avatar {
  background: #e1e7f4;
  color: #416398;
  font-weight: 600;
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 12px;
}
.account-caption {
  min-width: 0;
  flex: 1;
  line-height: 1.7;
}
.account-caption strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 550;
}
.account-caption > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.app-frame {
  margin-left: 226px;
  min-height: 100vh;
}
.topbar {
  height: 65px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 42px;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff70;
}
.breadcrumbs {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
  font-size: 12px;
  color: #b1b7c2;
}
.breadcrumbs a {
  color: #748093;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs a:last-child {
  color: var(--ink);
}
.topbar-note {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #8a94a3;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
}
.content {
  max-width: 1480px;
  padding: 42px 44px 0;
  margin: 0 auto;
  animation: page-enter 0.38s ease both;
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  margin-bottom: 32px;
}
.page-heading > div:first-child {
  min-width: 0;
}
.page-heading h1 {
  overflow-wrap: anywhere;
}
.page-heading .actions {
  flex-shrink: 0;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 36px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics > div {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.metrics > div:first-child {
  padding-left: 0;
}
.metrics > div:last-child {
  border: 0;
}
.metrics dt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.metrics dt a {
  color: inherit;
}
.metrics dd {
  font-size: 34px;
  font-weight: 450;
  letter-spacing: -1px;
  font-family: var(--mono);
  line-height: 1.2;
  margin: 0;
}
.metrics.compact {
  margin-top: 0;
  padding: 25px 0;
}
.compact dd {
  font-size: 29px;
}
.section {
  margin-bottom: 35px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
}
.section-heading > .muted,
.section-heading > a {
  font-size: 11px;
}
.section-heading .count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 8px;
}
.project-list {
  border-top: 1px solid var(--line);
}
.project-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.project-row:hover {
  background: #fff;
  transform: translateX(3px);
  color: var(--ink);
}
.project-mark {
  color: #98a7c1;
  font-size: 12px;
  font-family: var(--mono);
  width: 30px;
}
.project-copy {
  flex: 1;
  min-width: 0;
}
.project-copy h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.project-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.project-facts {
  display: flex;
  gap: 27px;
  color: #8b94a3;
  font-size: 11px;
  white-space: nowrap;
}
.project-facts strong {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: #4a586d;
  margin-right: 3px;
}
.project-arrow {
  color: var(--muted);
  font-size: 20px;
  margin-left: 20px;
}
.inline-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.app-footer {
  margin-top: auto;
  padding: 35px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #a0a7b2;
  letter-spacing: 0.4px;
}
.table-scroll {
  width: 100%;
  overflow: auto;
}
table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-size: 12px;
}
thead {
  background: #eef1f5;
}
th {
  font-size: 10px;
  color: #8290a2;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 11px 16px;
  white-space: nowrap;
}
td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  overflow-wrap: anywhere;
}
th:first-child,
td:first-child {
  padding-left: 17px;
}
tbody tr {
  transition: background 0.18s;
}
tbody tr:hover {
  background: #ffffffa0;
}
.link-strong {
  font-weight: 550;
  color: var(--ink);
}
.link-strong:hover {
  color: var(--accent);
}
.cell-detail {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}
.table-arrow {
  display: block;
  color: #9aa5b6;
  font-size: 20px;
  min-width: 25px;
  min-height: 30px;
  text-align: right;
}
.table-arrow:hover {
  color: var(--accent);
  transform: translate(2px, -2px);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  white-space: nowrap;
  font-weight: 500;
  color: #6b778b;
}
.status:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-succeeded {
  color: #397a62;
}
.status-queued,
.status-running,
.status-example {
  color: var(--accent);
}
.status-running:before {
  animation: pulse 1.3s infinite;
}
.status-attention {
  color: #aa7c34;
}
.status-failed {
  color: var(--danger);
}
.status-cancelled {
  color: #919aa7;
}
.label-code {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  overflow-wrap: anywhere;
  color: #516482;
}
.empty-cell {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
  font-size: 12px;
}
.empty-state {
  text-align: center;
  padding: 65px 20px;
}
.empty-state h2 {
  font-size: 23px;
  margin: 12px 0;
}
.empty-state p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 auto 23px;
  max-width: 520px;
}
.empty-workspace {
  display: flex;
  gap: 48px;
  align-items: center;
  background: #fff;
  padding: 46px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.empty-workspace h2 {
  font-size: 22px;
  margin: 8px 0 12px;
}
.empty-workspace p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.empty-glyph {
  position: relative;
  flex-shrink: 0;
  width: 95px;
  height: 113px;
  border: 1px solid #d7dfee;
  border-top: 3px solid var(--accent);
  transform: rotate(-6deg);
  padding: 31px 15px;
  background: #fcfdff;
}
.empty-glyph:before {
  content: "";
  position: absolute;
  inset: -6px -6px 5px 5px;
  border: 1px solid #e4e9f3;
  z-index: -1;
}
.empty-glyph span {
  display: block;
  height: 3px;
  background: #d7e0f0;
  margin-bottom: 13px;
}
.empty-glyph span:last-child {
  width: 50%;
  background: #789ef2;
}
.empty-check {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 24px;
  margin: 0 auto 20px;
}
.tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  margin: 0 0 28px;
  overflow-x: auto;
}
.tabs a {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  padding: 13px 2px;
  border-bottom: 2px solid transparent;
}
.tabs a.active {
  border-color: var(--accent);
  color: var(--accent);
}
.setup-strip,
.notice,
.inline-note {
  line-height: 1.8;
}
.setup-strip {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-soft);
  padding: 21px 25px;
  margin: 0 0 30px;
  border-radius: 6px;
}
.setup-strip strong {
  font-size: 13px;
  color: #3a5b9f;
}
.setup-strip p {
  color: #7789ac;
  font-size: 12px;
  margin-top: 4px;
}
.label-list {
  border-top: 1px solid var(--line);
}
.label-list > div {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 17px 3px;
  border-bottom: 1px solid var(--line);
}
.label-list .label-code {
  min-width: 180px;
}
.label-list p {
  flex: 1;
  color: #778392;
  font-size: 12px;
}
.page-end {
  margin-top: 30px;
  font-size: 11px;
}
.rule-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 29px 0;
}
.rule-index {
  color: #9caabd;
  width: 25px;
  padding-top: 5px;
}
.rule-copy {
  flex: 1;
  min-width: 0;
}
.rule-heading {
  display: flex;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
}
.rule-copy p {
  font-size: 13px;
  color: #687689;
  margin: 14px 0;
}
.rule-row .actions {
  flex-shrink: 0;
  gap: 16px;
}
.rule-disabled .rule-copy {
  opacity: 0.6;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
select,
textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #dce1e9;
  border-radius: 5px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  min-height: 42px;
  outline: 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
input::placeholder,
textarea::placeholder {
  color: #a7aeb9;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #809ff0 !important;
  box-shadow: 0 0 0 3px #245be70d;
}
textarea {
  resize: vertical;
  line-height: 1.9;
}
input[type="file"] {
  padding: 30px 20px !important;
  background: #fff;
  border-style: dashed !important;
}
input[type="file"]::file-selector-button {
  background: var(--accent-soft);
  color: var(--accent);
  border: 0;
  border-radius: 4px;
  padding: 9px 12px;
  margin-right: 15px;
  cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 550;
  margin-bottom: 8px;
}
.field {
  margin-bottom: 24px;
}
.helptext {
  margin-top: 7px;
}
.helptext ul {
  padding-left: 17px;
  margin: 6px 0;
}
.field-checkbox > label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  line-height: 1.8;
}
.field-checkbox input {
  margin-top: 3px;
}
.field ul.errorlist,
.errorlist {
  list-style: none;
  padding: 0;
  margin: 7px 0;
  color: var(--danger);
  font-size: 12px;
}
.form-errors {
  margin: 0 0 20px;
  background: #fbeff0;
  border-radius: 5px;
  padding: 12px 16px;
}
.form-errors .errorlist {
  margin: 0;
}
.field-invalid input,
.field-invalid textarea,
.field-invalid select {
  border-color: #d9999e;
}
.editor-form {
  width: 100%;
  max-width: 670px;
  margin: 5px 0 35px;
}
.editor-form #id_label_text {
  font-family: var(--mono);
  font-size: 12px;
}
.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 30px;
}
.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(240px, 1fr);
  gap: 65px;
  align-items: start;
}
.context-panel {
  border-left: 1px solid var(--line);
  padding-left: 30px;
  margin-top: 5px;
  font-size: 12px;
  color: #6f7b8c;
}
.context-panel h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 14px;
}
.definition-list dt {
  font-family: var(--mono);
  font-size: 11px;
  color: #456189;
  margin: 22px 0 5px;
}
.definition-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}
.summary-list {
  font-size: 12px;
  margin: 0;
}
.summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.summary-list dt {
  color: var(--muted);
}
.summary-list dd {
  margin: 0;
  color: #48546a;
  font-family: var(--mono);
  font-size: 11px;
  text-align: right;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 5px 0 22px;
  flex-wrap: wrap;
}
.filter-bar label {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}
.filter-bar select {
  width: auto;
  max-width: 220px;
  min-height: 37px;
  padding: 7px 12px;
  font-size: 12px;
}
.filter-bar .button {
  min-height: 37px;
  font-size: 12px;
}
.search-field {
  flex: 1;
  min-width: 160px;
}
.search-field input {
  max-width: 330px;
  min-height: 37px !important;
  font-size: 12px !important;
}
.pagination {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 22px 0;
  color: var(--muted);
  font-size: 11px;
}
.pagination > div {
  display: flex;
  gap: 8px;
}
.pagination .button {
  font-size: 11px;
  min-height: 33px;
  padding: 6px 10px;
}
.notice {
  font-size: 12px;
  background: #edf2fc;
  color: #536e9b;
  border-left: 2px solid #91ace5;
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: 0 4px 4px 0;
}
.notice-danger {
  background: #fbf0f0;
  border-color: #cc9499;
  color: #a4565e;
}
.notice a {
  font-weight: 550;
}
.run-steps {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 0 0 32px;
  color: #6e7e96;
  font-size: 12px;
}
.run-steps span:not(:last-child):after {
  content: "→";
  color: #adb8c9;
  margin-left: 25px;
}
.run-progress {
  padding: 20px 0 27px;
}
.progress-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.run-progress .footnote {
  margin-top: 8px;
}
progress {
  display: block;
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 3px;
  background: #e5eaf4;
  color: var(--accent);
  accent-color: var(--accent);
  overflow: hidden;
}
progress::-webkit-progress-bar {
  background: #e5eaf4;
}
progress::-webkit-progress-value {
  background: var(--accent);
  transition: width 0.45s;
}
progress::-moz-progress-bar {
  background: var(--accent);
}
.confidence {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 90px;
  font-size: 11px;
  color: #7a8aa1;
}
.confidence meter {
  width: 56px;
  height: 5px;
  border: 0;
  border-radius: 5px;
  background: #e6eaf1;
}
.confidence meter::-webkit-meter-bar {
  background: #e6eaf1;
  border: 0;
  height: 5px;
}
.confidence meter::-webkit-meter-optimum-value {
  background: #95acf0;
}
.confidence meter::-moz-meter-bar {
  background: #95acf0;
}
.confidence.large meter {
  width: 100%;
  height: 6px;
}
.confidence.large {
  margin: 17px 0 4px;
  font-size: 14px;
}
.technical-details {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-size: 12px;
  color: var(--muted);
}
summary {
  cursor: pointer;
  color: #66758c;
  font-size: 12px;
}
details[open] > summary {
  margin-bottom: 18px;
}
.technical-details .summary-list {
  max-width: 440px;
}
.diagnostic-rule {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.diagnostic-rule p {
  margin: 7px 0;
  color: #556276;
}
.large-count {
  font-size: 34px;
  color: var(--accent);
}
.large-count small {
  font-family: var(--font);
  font-size: 12px;
}
.audit-details > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.audit-details code {
  color: #778caf;
  margin-right: 8px;
}
.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: start;
}
.document-surface {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 35px;
  border-radius: 5px;
  min-width: 0;
}
.document-surface .section-heading h2 {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.document-surface .section-heading > .muted {
  font-size: 10px;
}
.document-title {
  font-size: 20px;
  margin: 35px 0 23px;
}
.document-text {
  white-space: pre-wrap;
  font-size: 15px;
  line-height: 2.4;
  color: #49556a;
  overflow-wrap: anywhere;
}
mark {
  background: #e5edff;
  color: #245be7;
  padding: 2px 0;
  border-bottom: 1px solid #c4d5ff;
}
.evidence-section {
  border-top: 1px solid var(--line);
  margin-top: 33px;
  padding-top: 23px;
}
.evidence-section > h3 {
  font-size: 13px;
  margin-bottom: 16px;
}
.evidence-section > p,
.evidence-section .muted {
  font-size: 12px;
  color: #738095;
}
.evidence-list {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
}
.evidence-list li {
  padding: 5px 10px;
  background: #f3f5f9;
  color: #6982b7;
  border-radius: 3px;
  overflow-wrap: anywhere;
}
.matched-rule {
  border-left: 2px solid #d3def4;
  padding-left: 15px;
  margin: 18px 0;
}
.matched-rule p {
  font-size: 12px;
  color: #7b8697;
  line-height: 1.9;
  margin-top: 5px;
}
.decision-path {
  font-size: 12px;
  color: #71829a;
  line-height: 2.1;
}
.review-inspector {
  position: sticky;
  top: 25px;
}
.inspector-summary {
  border-bottom: 1px solid var(--line);
  padding: 4px 0 27px;
  margin-bottom: 25px;
}
.inspector-summary .label-code {
  font-size: 17px;
  font-weight: 600;
}
.inspector-summary .footnote {
  margin: 8px 0 18px;
  font-size: 10px;
}
.review-form > h2 {
  margin-bottom: 25px;
  font-size: 15px;
}
.review-form .field {
  margin-bottom: 20px;
}
.review-history article {
  display: flex;
  gap: 20px;
  padding: 0 0 28px;
  position: relative;
}
.review-history p {
  font-size: 12px;
  margin-top: 8px;
  color: #7b8696;
}
.history-dot {
  margin-top: 5px;
  height: 8px;
  width: 8px;
  flex-shrink: 0;
  border: 2px solid #9cb0d9;
  border-radius: 50%;
}
.settings-list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}
.settings-list section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.settings-list h2 {
  font-size: 15px;
  margin-bottom: 7px;
}
.settings-list p {
  font-size: 12px;
  color: var(--muted);
  max-width: 550px;
}
.messages {
  position: fixed;
  z-index: 100;
  right: 24px;
  top: 20px;
  max-width: 520px;
  width: calc(100% - 48px);
  pointer-events: none;
}
.message {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  background: #fff;
  border: 1px solid #d7e1f4;
  box-shadow: 0 5px 30px #26334812;
  border-left: 3px solid var(--accent);
  font-size: 12px;
  color: #5c708e;
  padding: 13px 16px;
  margin-bottom: 9px;
  border-radius: 5px;
  pointer-events: auto;
  animation: page-enter 0.25s ease both;
}
.message.error {
  border-left-color: var(--danger);
  color: var(--danger);
}
.message button {
  background: none;
  border: 0;
  color: #8692a3;
  font-size: 19px;
  line-height: 1;
  padding: 0 0 2px 8px;
}
.is-submitting {
  opacity: 0.65;
}
.auth-body {
  background: #f4f6fa;
}
.auth-shell {
  width: min(470px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 26px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.auth-shell > .brand {
  align-self: center;
  font-size: 21px;
}
.auth-content {
  margin: 65px 0 40px;
  animation: page-enter 0.5s ease both;
}
.auth-eyebrow {
  color: #a0aabd;
  font: 9px var(--mono);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.auth-content h1 {
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: -1px;
}
.auth-intro,
.auth-content > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 27px;
}
.auth-form {
  margin-top: 28px;
}
.auth-form .field {
  margin-bottom: 20px;
}
.auth-form .helptext {
  font-size: 11px;
}
.auth-form .field-checkbox {
  font-size: 12px;
  margin-top: 25px;
}
.auth-form .button-full {
  margin-top: 8px;
  min-height: 46px;
}
.auth-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}
.auth-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  font-size: 11px;
  color: var(--muted);
}
.auth-footer a {
  color: var(--muted);
}
.auth-content > form:not(.auth-form) p {
  margin: 22px 0;
}
.auth-content > form:not(.auth-form) button:not(.button) {
  border: 0;
  border-radius: 5px;
  padding: 10px 17px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  margin: 6px 6px 6px 0;
}
.auth-content > form:not(.auth-form) p > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.auth-content > form:not(.auth-form) p:has(input[type="checkbox"]) label,
.auth-content > form:not(.auth-form) p:has(input[type="radio"]) label {
  display: inline;
}
.auth-content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0;
}
.local-mail {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 11px;
}
.mail-symbol {
  display: block;
  color: var(--accent);
  font-size: 44px;
  margin-bottom: 20px;
}
.landing-body {
  background: #f7f8fa;
}
.public-header {
  height: 83px;
  padding: 0 clamp(24px, 6vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e8ef;
}
.public-header nav {
  display: flex;
  gap: 38px;
  font-size: 12px;
}
.public-header nav a {
  color: #657389;
}
.hero {
  position: relative;
  width: 100%;
  background: #f1f4f9;
  min-height: calc(100svh - 83px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
  padding: 50px clamp(24px, 8vw, 120px) 40px;
  flex: 1;
  max-width: 1600px;
  margin: auto;
}
.hero-copy {
  animation: page-enter 0.7s 0.08s ease both;
}
.hero-copy .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 23px;
  color: #8a99b1;
}
.hero-wordmark {
  font-size: clamp(62px, 7.8vw, 118px);
  font-weight: 750;
  letter-spacing: -7px;
  line-height: 0.99;
  color: #23334a;
  margin-bottom: 25px;
}
.hero-wordmark span {
  color: var(--accent);
}
.hero-copy h1 {
  font-size: clamp(19px, 2.2vw, 29px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0;
}
.hero-description {
  font-size: 12px;
  color: #61738d;
  line-height: 2;
  margin-top: 15px;
}
.hero-cta {
  margin-top: 24px;
  padding: 12px 23px;
  gap: 48px;
  min-height: 46px;
}
.hero-caption {
  font-size: 10px;
  color: #64758f;
  margin-top: 16px;
  letter-spacing: 0.5px;
}
.hero-visual {
  max-width: 480px;
  width: 100%;
  padding: 28px 0;
  animation: visual-enter 0.8s 0.18s ease both;
}
.visual-index {
  font-size: 9px;
  color: #8b9bb5;
  letter-spacing: 2px;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.visual-index:before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 1px;
  background: #acb9d0;
}
.specimen {
  padding: 0 0 25px 43px;
  border-left: 1px solid #b8c9e6;
}
.specimen-kicker {
  font: 9px var(--mono);
  letter-spacing: 1.3px;
  color: #90a1bd;
}
.specimen h2 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #62718a;
}
.specimen p {
  font-size: clamp(18px, 2.05vw, 29px);
  line-height: 2;
  letter-spacing: 1px;
  margin: 16px 0 26px;
  color: #394c6a;
}
.specimen mark {
  background: #dce7ff;
  color: #3a66d0;
  border: 0;
  padding: 2px 3px;
}
.specimen-line {
  height: 3px;
  width: 70%;
  background: #e1e6ef;
  margin-top: 11px;
}
.specimen-line.short {
  width: 40%;
}
.visual-connector {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 65px;
  border-left: 1px solid #b8c9e6;
}
.visual-connector > span:first-child {
  width: 44px;
  height: 1px;
  background: #b8c9e6;
}
.visual-connector .mono {
  font-size: 9px;
  color: #7f97bb;
  letter-spacing: 1px;
}
.visual-rule {
  padding: 0 0 24px 43px;
  border-left: 1px solid #b8c9e6;
}
.visual-rule p {
  font-size: 12px;
  color: #7588a7;
  line-height: 2;
  margin-top: 8px;
}
.visual-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #cbd7eb;
  border-bottom: 1px solid #cbd7eb;
  padding: 16px 0;
  color: var(--accent);
  margin-left: 43px;
  font-size: 16px;
  font-weight: 500;
}
.visual-result > span:last-child {
  font-size: 25px;
}
.visual-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 18px 0 0 43px;
  color: #8b9bb4;
  font-size: 9px;
}
.visual-caption .mono {
  margin-left: auto;
  font-size: 9px;
}
.hero-baseline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 clamp(24px, 6vw, 100px);
  border-top: 1px solid #dde4ef;
  padding: 16px 0;
  font: 8px var(--mono);
  letter-spacing: 1.5px;
  color: #93a0b5;
}
.hero-baseline a {
  font: 10px var(--font);
  color: #7b8ba3;
  letter-spacing: 0;
}
.workflow-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 115px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.workflow-heading {
  position: sticky;
  top: 60px;
  align-self: start;
}
.workflow-heading h2 {
  font-size: 31px;
  line-height: 1.7;
  letter-spacing: -0.7px;
  margin-top: 24px;
}
.workflow-list article {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.workflow-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.workflow-list article > span {
  font-size: 11px;
  color: #9aaac1;
  padding-top: 5px;
}
.workflow-list h3 {
  font-size: 16px;
  line-height: 1.8;
}
.workflow-list p {
  font-size: 12px;
  color: #8290a3;
  line-height: 2;
  margin-top: 11px;
}
.final-cta {
  text-align: center;
  background: #edf2fa;
  padding: 65px 25px;
}
.final-cta h2 {
  font-size: 29px;
  margin-bottom: 24px;
}
.final-cta .eyebrow {
  font-size: 9px;
}
.final-cta p {
  font-size: 11px;
  color: #8b9ab0;
  margin-top: 20px;
}
.public-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 25px clamp(24px, 6vw, 100px);
  font-size: 10px;
  color: #8e9aaa;
}
.public-footer strong {
  font-size: 13px;
  color: #6e7c90;
}
.public-footer a {
  color: #778ba9;
}
.reading-page {
  max-width: 800px;
  padding: 65px 30px 100px;
  margin: 0 auto;
}
.reading-page section {
  margin: 40px 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.reading-page section h2 {
  font-size: 18px;
  margin-bottom: 15px;
}
.reading-page section p {
  font-size: 14px;
  line-height: 2;
  color: #798494;
  margin-bottom: 15px;
}
.error-page {
  max-width: 700px;
  margin: auto;
  padding: 60px 25px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.error-page > .brand {
  margin-bottom: 60px;
}
.error-code {
  font-size: 48px;
  color: #aabbdc;
  margin-bottom: 15px;
}
.error-page p {
  color: var(--muted);
  margin: 20px 0 30px;
  max-width: 550px;
  line-height: 2;
}
@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes visual-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}
@media (min-width: 1500px) {
  .hero-inner {
    padding-top: 65px;
    padding-bottom: 60px;
  }
  .hero-visual {
    max-width: 520px;
  }
  .specimen p {
    font-size: 30px;
  }
}
@media (max-width: 1150px) {
  .sidebar {
    width: 205px;
    padding-left: 17px;
    padding-right: 17px;
  }
  .app-frame {
    margin-left: 205px;
  }
  .topbar {
    padding: 0 28px;
  }
  .content {
    padding: 32px 28px 0;
  }
  .page-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .project-facts {
    gap: 13px;
  }
  .editor-layout {
    gap: 30px;
    grid-template-columns: minmax(0, 1.6fr) minmax(210px, 1fr);
  }
  .review-layout {
    gap: 25px;
  }
  .document-surface {
    padding: 23px;
  }
  .hero-inner {
    gap: 45px;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .hero-wordmark {
    font-size: 90px;
  }
  .workflow-section {
    gap: 50px;
    padding: 80px 40px;
  }
  .run-steps {
    font-size: 11px;
  }
  .run-steps span:not(:last-child):after {
    margin-left: 8px;
  }
}
@media (max-width: 800px) {
  .sidebar {
    position: static;
    width: 100%;
    padding: 16px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workspace-label,
  .nav-caption,
  .sidebar-note,
  .sidebar-account {
    display: none;
  }
  .side-nav {
    flex-direction: row;
    gap: 5px;
    margin-top: 16px;
  }
  .side-nav a {
    font-size: 12px;
    padding: 8px 12px;
  }
  .app-frame {
    margin: 0;
  }
  .topbar {
    height: 56px;
    padding: 0 22px;
  }
  .content {
    min-height: calc(100vh - 56px);
    padding: 30px 22px 0;
  }
  .js .sidebar {
    position: fixed;
    width: 235px;
    inset: 0 auto 0 0;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 50;
    padding: 27px 20px;
    box-shadow: 25px 0 70px #19212d12;
  }
  .js .sidebar .workspace-label,
  .js .sidebar .sidebar-note,
  .js .sidebar .sidebar-account {
    display: flex;
  }
  .js .sidebar .sidebar-note {
    display: block;
  }
  .js .sidebar .side-nav {
    flex-direction: column;
    margin-top: 0;
  }
  .js .menu-toggle {
    display: block;
  }
  .js .nav-open .sidebar {
    transform: translateX(0);
  }
  .js .nav-open:before {
    content: "";
    position: fixed;
    inset: 0;
    background: #1a273c45;
    z-index: 45;
  }
  .breadcrumbs {
    flex: 1;
  }
  .topbar-note {
    font-size: 9px;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    gap: 30px;
    padding: 45px 30px;
  }
  .hero-wordmark {
    font-size: 78px;
    letter-spacing: -5px;
  }
  .hero-copy h1 {
    font-size: 22px;
  }
  .hero-description {
    font-size: 11px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-visual {
    padding: 0;
  }
  .specimen {
    padding-left: 23px;
  }
  .specimen p {
    font-size: 20px;
  }
  .visual-rule {
    padding-left: 23px;
  }
  .visual-result,
  .visual-caption {
    margin-left: 23px;
  }
  .visual-index {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .visual-rule p {
    font-size: 11px;
  }
  .workflow-section {
    padding: 65px 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .workflow-heading {
    position: static;
  }
  .workflow-heading h2 {
    font-size: 28px;
  }
  .workflow-heading h2 br {
    display: none;
  }
  .workflow-list article {
    padding: 24px 0;
  }
  .review-layout {
    grid-template-columns: 1fr;
  }
  .review-inspector {
    position: static;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .review-form {
    max-width: 650px;
  }
  .review-inspector .inspector-summary {
    max-width: 650px;
  }
  .document-surface {
    padding: 27px;
  }
  .metrics > div {
    padding: 0 20px;
  }
  .project-row {
    gap: 14px;
  }
  .project-arrow {
    margin-left: 5px;
  }
  .editor-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .context-panel {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    max-width: 650px;
    margin: 0 0 30px;
  }
  .context-panel h2 {
    margin-bottom: 14px;
  }
  .run-steps {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .run-steps span {
    flex-basis: calc(50% - 15px);
  }
  .run-steps span:after {
    display: none;
  }
  .tabs {
    gap: 23px;
  }
  .sidebar-note p {
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 27px;
  }
  .page-heading {
    margin-bottom: 25px;
    gap: 18px;
  }
  .page-heading .eyebrow {
    font-size: 9px;
  }
  .subtitle {
    font-size: 12px;
  }
  .page-heading .actions {
    gap: 8px;
    flex-wrap: wrap;
  }
  .content {
    padding: 27px 18px 0;
  }
  .topbar {
    padding: 0 15px;
  }
  .topbar-note {
    display: none;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
    padding: 21px 0;
    margin-bottom: 28px;
  }
  .metrics > div {
    padding: 0 17px !important;
    border-right: 0;
  }
  .metrics > div:nth-child(odd) {
    padding-left: 0 !important;
    border-right: 1px solid var(--line);
  }
  .metrics dd {
    font-size: 29px;
  }
  .metrics dt {
    font-size: 11px;
  }
  .compact dd {
    font-size: 26px;
  }
  .section-heading > .muted {
    display: none;
  }
  .project-row {
    align-items: flex-start;
    padding: 23px 0;
    gap: 11px;
    flex-wrap: wrap;
  }
  .project-mark {
    width: 23px;
    padding-top: 3px;
    font-size: 10px;
  }
  .project-copy {
    flex-basis: calc(100% - 64px);
  }
  .project-copy h3 {
    font-size: 14px;
  }
  .project-copy p {
    font-size: 11px;
  }
  .project-facts {
    margin-left: 34px;
    order: 5;
    flex-basis: 100%;
    gap: 23px;
    font-size: 10px;
  }
  .project-arrow {
    margin: 0;
    font-size: 17px;
    position: relative;
  }
  .empty-workspace {
    padding: 35px 22px;
    gap: 26px;
    flex-direction: column;
    align-items: flex-start;
  }
  .empty-workspace h2 {
    font-size: 20px;
  }
  .empty-workspace p {
    font-size: 12px;
  }
  .empty-glyph {
    width: 62px;
    height: 77px;
    padding: 20px 10px;
  }
  .empty-glyph span {
    height: 2px;
    margin-bottom: 10px;
  }
  .inline-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .label-list > div {
    flex-wrap: wrap;
    gap: 7px;
  }
  .label-list .label-code {
    flex-basis: 100%;
  }
  .setup-strip {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .rule-row {
    gap: 13px;
    flex-wrap: wrap;
  }
  .rule-index {
    width: 20px;
    font-size: 10px;
  }
  .rule-copy {
    flex-basis: calc(100% - 40px);
  }
  .rule-row .actions {
    margin-left: 33px;
  }
  .rule-heading {
    gap: 8px;
  }
  .rule-heading h2 {
    font-size: 15px;
    flex-basis: 100%;
  }
  .rule-copy p {
    font-size: 12px;
  }
  .tabs {
    gap: 19px;
  }
  .tabs a {
    font-size: 11px;
  }
  .filter-bar {
    gap: 8px;
  }
  .filter-bar select {
    max-width: 180px;
    font-size: 11px;
  }
  .filter-bar .search-field {
    flex-basis: 100%;
  }
  .search-field input {
    max-width: none;
  }
  .filter-bar > label:not(.sr-only) {
    font-size: 11px;
  }
  .pagination {
    align-items: flex-start;
    flex-direction: column;
  }
  .settings-list section {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .document-surface {
    padding: 22px 19px;
  }
  .document-text {
    font-size: 14px;
  }
  .document-surface .section-heading {
    gap: 8px;
    flex-wrap: wrap;
  }
  .public-header {
    height: 68px;
    padding: 0 22px;
  }
  .public-header .brand {
    font-size: 16px;
  }
  .public-header nav {
    gap: 15px;
    font-size: 11px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 24px 20px;
    gap: 20px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    margin-bottom: 14px;
  }
  .hero-wordmark {
    font-size: clamp(35px, 11vw, 48px);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 14px;
  }
  .hero-wordmark span {
    margin-left: 8px;
  }
  .hero-wordmark br,
  .hero-copy h1 br,
  .specimen p br,
  .visual-rule p br {
    display: none;
  }
  .hero-copy h1 {
    font-size: 20px;
    line-height: 1.6;
  }
  .hero-description {
    display: none;
  }
  .hero-cta {
    margin-top: 18px;
    min-height: 44px;
  }
  .hero-caption {
    margin-top: 12px;
  }
  .hero-visual {
    max-width: 100%;
    padding: 18px 0 0;
    border-top: 1px solid #dbe3ef;
  }
  .visual-index,
  .specimen h2,
  .specimen-line,
  .visual-connector {
    display: none;
  }
  .specimen {
    padding: 0;
    border: 0;
  }
  .specimen p {
    font-size: 18px;
    line-height: 1.75;
    margin: 8px 0 12px;
  }
  .visual-rule {
    padding: 0 0 14px 15px;
    border-left: 2px solid #b8c9e6;
  }
  .visual-rule p {
    margin-top: 5px;
    line-height: 1.8;
    color: #61738d;
  }
  .visual-result {
    margin-left: 0;
    padding: 8px 0;
    font-size: 13px;
  }
  .visual-caption {
    margin: 10px 0 0;
    color: #64758f;
  }
  .hero-baseline {
    font-size: 6px;
    letter-spacing: 1px;
    margin: 0 25px;
  }
  .hero-baseline a {
    font-size: 9px;
  }
  .workflow-section {
    padding: 60px 25px;
  }
  .workflow-heading h2 {
    font-size: 25px;
  }
  .workflow-list h3 {
    font-size: 15px;
  }
  .workflow-list article {
    gap: 18px;
  }
  .final-cta {
    padding: 45px 22px;
  }
  .final-cta h2 {
    font-size: 23px;
  }
  .public-footer {
    padding: 23px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .public-footer > span {
    display: none;
  }
  .auth-shell {
    width: calc(100% - 44px);
    padding-top: 32px;
  }
  .auth-content {
    margin: 45px 0 35px;
  }
  .auth-content h1 {
    font-size: 27px;
  }
  .auth-links {
    font-size: 11px;
  }
  .app-footer {
    font-size: 9px;
    gap: 10px;
  }
  .reading-page {
    padding: 45px 24px 70px;
  }
  .reading-page section p {
    font-size: 13px;
  }
  .messages {
    right: 15px;
    top: auto;
    bottom: 16px;
    width: calc(100% - 30px);
  }
  .editor-form {
    margin-bottom: 25px;
  }
}
@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 18px;
  }
  .hero-inner {
    padding-top: 16px;
    padding-bottom: 12px;
    gap: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
