/* src/styles.css */
:root {
  color: #0f172a;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #0f172a;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(34, 197, 94, 0.14),
      transparent 34%),
    radial-gradient(
      circle at 100% 0%,
      rgba(14, 165, 233, 0.16),
      transparent 28%),
    linear-gradient(
      180deg,
      #eef4ff 0%,
      #f7faff 42%,
      #f5f7fb 100%);
  font-family:
    "Avenir Next",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}
a {
  color: #0f4c81;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button,
input,
select,
textarea {
  font: inherit;
}
.app-shell {
  min-height: 100vh;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(248, 250, 252, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.brand-copy {
  display: grid;
  gap: 6px;
}
.brand-copy strong {
  display: block;
  font-size: 22px;
  line-height: 1.08;
}
.topbar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 8px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9),
      rgba(248, 250, 252, 0.78));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}
.topbar-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 12px;
}
.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #475569;
  min-height: 42px;
  padding: 0 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.18s ease, transform 0.18s ease;
}
.nav-link:hover {
  transform: translateY(-1px);
  color: #0f172a;
}
.nav-link.active {
  color: #0f172a;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.18s ease, transform 0.18s ease;
  transform: scaleX(0.35);
}
.nav-link.active::after {
  background:
    linear-gradient(
      90deg,
      #0f4c81,
      #2563eb);
  transform: scaleX(1);
}
.topbar-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(241, 245, 249, 0.94));
  border: 1px solid #dbe3f0;
  color: #334155;
  cursor: pointer;
  appearance: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-actions .action-button,
.topbar-actions .topbar-user {
  min-height: 48px;
  padding-inline: 16px;
}
.topbar-control {
  flex: 0 1 auto;
}
.app-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  display: grid;
  gap: 20px;
}
.panel {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}
.hero-banner {
  display: grid;
  gap: 22px;
  color: #fff;
  background:
    linear-gradient(
      155deg,
      rgba(15, 23, 42, 0.98),
      rgba(15, 76, 129, 0.92)),
    #0f172a;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 34px;
  align-items: center;
}
.hero-copy-block,
.hero-visual-shell,
.panel-copy,
.section-copy,
.brand-copy {
  display: grid;
}
.hero-copy-block {
  gap: 12px;
  max-width: 660px;
}
.hero-copy-block h1,
.panel-copy h2,
.section-copy h3,
.panel-copy p,
.section-copy p {
  margin: 0;
}
.hero-copy-block h1 {
  font-size: clamp(32px, 3.35vw, 50px);
  line-height: 1.02;
}
.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
}
.hero-copy,
.muted-text {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}
.hero-banner .hero-copy,
.hero-banner .muted-text,
.muted-text-inverse {
  color: rgba(255, 255, 255, 0.82);
}
.field-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}
.field-help {
  margin: -2px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: #64748b;
}
.field-label-light {
  color: rgba(255, 255, 255, 0.72);
}
.chip-row,
.toolbar-row,
.checkbox-row,
.totals-strip,
.hero-actions,
.panel-head {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.panel-head {
  justify-content: space-between;
  align-items: flex-start;
}
.status-badge,
.result-pill,
.finding-chip,
.file-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.08);
  color: #334155;
}
.inverted-badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-account-card {
  display: grid;
  gap: 6px;
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}
.hero-account-card strong,
.metric-card strong {
  font-size: 18px;
}
.hero-visual-shell {
  gap: 12px;
  align-items: center;
}
.hero-visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.28);
}
.hero-visual-caption {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.74);
}
.notice-inline,
.notice-bar {
  border-radius: 20px;
  padding: 14px 16px;
}
.notice-inline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.notice-inline p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.88);
}
.notice-bar {
  border: 1px solid #fde68a;
  background: #fff8dc;
  color: #92400e;
}
.notice-bar-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.28);
}
.tab-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.05);
}
.workspace-switcher {
  width: max-content;
  max-width: 100%;
}
.tab-button {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}
.tab-button:hover:not(.active) {
  background: rgba(15, 23, 42, 0.05);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.16);
}
.tab-button.active {
  color: #fff;
  background: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}
.compact-tab-strip .tab-button {
  padding: 10px 12px;
  font-size: 13px;
}
.workbench-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.94fr);
  gap: 20px;
  align-items: start;
}
.editor-stage-panel {
  color: #e2e8f0;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(56, 189, 248, 0.16),
      transparent 24%),
    radial-gradient(
      circle at 0% 100%,
      rgba(37, 99, 235, 0.14),
      transparent 28%),
    linear-gradient(
      160deg,
      rgba(15, 23, 42, 0.98),
      rgba(15, 76, 129, 0.92));
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}
.editor-stage-panel .editor-shell-head .muted-text,
.editor-stage-panel .entry-mode-inline-note {
  color: rgba(226, 232, 240, 0.72);
}
.editor-stage-panel .editor-shell-meta .status-badge {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.editor-shell-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}
.editor-guide-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.editor-guide-button:hover:not([disabled]) {
  background: rgba(255, 255, 255, 0.14);
}
.editor-stage-tools {
  display: grid;
  gap: 14px;
}
.editor-stage-panel .entry-mode-inline {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.editor-stage-panel .entry-mode-inline strong {
  color: #fff;
}
.editor-stage-panel .entry-mode-pill {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.42);
  color: #e2e8f0;
}
.editor-stage-panel .entry-mode-pill.active {
  background: #fff;
  color: #0f172a;
  border-color: #fff;
}
.editor-canvas-shell {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(15, 23, 42, 0.22));
}
.editor-canvas {
  display: grid;
  gap: 14px;
  min-height: 540px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99),
      rgba(248, 250, 252, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.editor-toolbar-shell {
  display: grid;
  gap: 8px;
}
.editor-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.editor-toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
}
.editor-step-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.editor-step-item {
  appearance: none;
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.3);
  color: #e2e8f0;
  text-align: left;
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}
.editor-step-item-active {
  border-color: rgba(125, 211, 252, 0.32);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}
.editor-step-item-complete {
  background: rgba(22, 163, 74, 0.12);
}
.editor-step-item-open {
  background: rgba(234, 179, 8, 0.1);
}
.editor-step-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}
.editor-step-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
}
.editor-step-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.editor-step-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}
.editor-step-state {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.78);
  white-space: nowrap;
}
.editor-step-state-ready {
  color: #dcfce7;
}
.editor-stage-panel .editor-tab-strip {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}
.editor-stage-panel .tab-button {
  color: rgba(226, 232, 240, 0.76);
}
.editor-stage-panel .tab-button:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.editor-stage-panel .tab-button.active {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}
.workflow-header {
  display: grid;
  gap: 20px;
  padding: 26px;
  border-color: rgba(15, 76, 129, 0.16);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(239, 246, 255, 0.92)),
    rgba(255, 255, 255, 0.94);
}
.workspace-header {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(14, 165, 233, 0.12),
      transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(241, 245, 249, 0.96));
}
.workflow-header-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: end;
}
.workflow-header .panel-copy {
  gap: 10px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.entry-mode-inline {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid #dbe3f0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.9),
      rgba(241, 245, 249, 0.96));
}
.entry-mode-inline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.entry-mode-pill-row {
  display: inline-flex;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.entry-mode-pill {
  appearance: none;
  border: 1px solid #dbe3f0;
  background: #fff;
  color: #334155;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}
.entry-mode-pill:hover {
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
}
.entry-mode-pill.active {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
}
.entry-mode-inline-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}
.draft-progress-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.draft-progress-card {
  appearance: none;
  display: grid;
  gap: 8px;
  padding: 16px;
  text-align: left;
  border-radius: 22px;
  border: 1px solid #dbe3f0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.94),
      rgba(255, 255, 255, 0.98));
  color: #0f172a;
  cursor: pointer;
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}
.draft-progress-card:hover {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}
.draft-progress-card-active {
  border-color: rgba(15, 76, 129, 0.36);
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.12);
}
.draft-progress-card-open {
  background:
    linear-gradient(
      180deg,
      rgba(255, 251, 235, 0.96),
      rgba(255, 255, 255, 0.98));
}
.draft-progress-card-complete {
  background:
    linear-gradient(
      180deg,
      rgba(240, 253, 244, 0.98),
      rgba(255, 255, 255, 0.98));
}
.draft-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.draft-progress-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #64748b;
}
.draft-progress-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 11px;
  font-weight: 800;
}
.draft-progress-card strong,
.draft-progress-card p {
  margin: 0;
}
.draft-progress-card strong {
  font-size: 15px;
  line-height: 1.32;
}
.draft-progress-card p {
  color: #475569;
  line-height: 1.55;
}
.workflow-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #dbe3f0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 250, 252, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.workflow-card strong {
  font-size: 17px;
  line-height: 1.35;
}
.workflow-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}
.workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(
      180deg,
      rgba(15, 76, 129, 0.12),
      rgba(37, 99, 235, 0.08));
  color: #0f4c81;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.page-stack,
.sidebar-stack,
.home-panel,
.history-panel,
.verification-card {
  display: grid;
  gap: 20px;
}
.editor-panel,
.sidebar-panel,
.section-stack {
  display: grid;
  gap: 18px;
}
.editor-shell-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.editor-section-shell {
  gap: 12px;
}
.editor-section-lead {
  gap: 6px;
  padding: 2px 2px 0;
}
.editor-section-body,
.editor-form-shell,
.editor-list-shell {
  display: grid;
  gap: 12px;
}
.editor-section-card {
  border-radius: 22px;
  border: 1px solid #dbe3f0;
  padding: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 12px 24px rgba(15, 23, 42, 0.04);
}
.editor-guide-shell {
  background:
    linear-gradient(
      180deg,
      rgba(247, 250, 255, 0.98),
      rgba(255, 255, 255, 0.98));
}
.editor-summary-strip {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(
      180deg,
      rgba(241, 245, 249, 0.92),
      rgba(255, 255, 255, 0.98));
}
.editor-shell-meta {
  justify-content: flex-end;
}
.sticky-sidebar {
  position: static;
  top: auto;
  max-height: none;
  overflow: visible;
}
.split-panel-grid,
.metric-grid,
.source-grid {
  display: grid;
  gap: 16px;
}
.split-panel-grid,
.metric-grid,
.source-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.subpanel,
.result-summary-card,
.metric-card,
.item-card,
.activity-card,
.source-card,
.threshold-card {
  border-radius: 22px;
  border: 1px solid #dbe3f0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.94));
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.guide-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.guide-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(
      180deg,
      rgba(241, 245, 249, 0.96),
      rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.guide-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f4c81;
}
.guide-card strong,
.guide-card p {
  margin: 0;
}
.guide-card p {
  color: #475569;
  line-height: 1.7;
}
.form-grid,
.item-list,
.finding-list,
.threshold-list,
.activity-list {
  display: grid;
  gap: 14px;
}
.form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field-span-2 {
  grid-column: span 2;
}
.field {
  display: grid;
  gap: 8px;
}
.field-ready .field-label {
  color: #166534;
}
.field-ready .field-input,
.field-ready .field-textarea {
  border-color: rgba(22, 163, 74, 0.34);
  background: rgba(240, 253, 244, 0.92);
}
.field-missing .field-label {
  color: #9a3412;
}
.field-missing .field-input,
.field-missing .field-textarea {
  border-color: rgba(245, 158, 11, 0.52);
  background: rgba(255, 251, 235, 0.96);
}
.field-input,
.field-textarea,
.compact-select {
  width: 100%;
  border: 1px solid #d7e1ef;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.field-input:hover,
.field-textarea:hover,
.compact-select:hover {
  border-color: #bfd1e5;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
}
.field-input,
.compact-select {
  min-height: 50px;
  padding: 0 15px;
}
.field-textarea {
  min-height: 150px;
  padding: 13px 15px;
  resize: vertical;
}
.field-input:focus,
.field-textarea:focus,
.compact-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.compact-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px 0 14px;
  border-radius: 16px;
  border: 1px solid #dbe3f0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(241, 245, 249, 0.94));
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.compact-field:focus-within {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.compact-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}
.file-input {
  padding: 10px 14px;
  background: rgba(248, 250, 252, 0.94);
}
.compact-field .compact-select {
  min-height: auto;
  width: auto;
  min-width: 104px;
  padding: 0 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #0f172a;
  font-weight: 700;
}
.compact-field.topbar-control .compact-label {
  min-width: 58px;
}
.compact-field.topbar-control .compact-select {
  min-width: 132px;
}
.compact-field .compact-select:focus {
  box-shadow: none;
}
.upload-panel {
  display: grid;
  gap: 14px;
}
.upload-file-pill {
  width: max-content;
  max-width: 100%;
}
.upload-action-row {
  margin-top: 4px;
}
.intake-status-bar {
  padding: 12px 14px;
}
.checkbox-row {
  gap: 12px;
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #dbe3f0;
  background: #fff;
  font-weight: 600;
  color: #334155;
}
.item-card-head,
.activity-card-head,
.finding-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.totals-strip {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.05);
}
.action-button,
.icon-button {
  appearance: none;
  transition:
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid #0f172a;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}
.action-button:hover:not([disabled]),
.icon-button:hover {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}
.action-button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.secondary-button {
  border-color: #d7e1ef;
  background: #fff;
  color: #0f172a;
  box-shadow: none;
}
.tertiary-button {
  border-color: transparent;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  box-shadow: none;
}
.subtle-button {
  min-height: 40px;
  padding: 0 12px;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #d7e1ef;
  background: #fff;
  color: #334155;
  cursor: pointer;
}
.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quick-action-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.review-sidebar {
  gap: 12px;
}
.review-sidebar-head {
  padding-bottom: 0;
  align-items: center;
}
.review-sidebar-head .section-copy {
  gap: 2px;
}
.review-sidebar-footer {
  justify-content: flex-start;
}
.result-metric-grid,
.threshold-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.compact-metric-card {
  gap: 6px;
}
.compact-metric-card small {
  color: #64748b;
  line-height: 1.6;
}
.result-detail-strip {
  align-self: flex-start;
}
.result-more-button {
  justify-self: flex-start;
}
.result-summary-card,
.finding {
  display: grid;
  gap: 12px;
}
.result-summary-chips {
  gap: 8px;
}
.result-summary-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.result-summary-copy {
  gap: 6px;
}
.result-summary-copy h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.result-summary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.result-summary-actions .action-button {
  width: 100%;
  min-height: 42px;
  padding-inline: 14px;
  border-radius: 14px;
  white-space: nowrap;
  box-shadow: none;
}
.result-summary-actions .secondary-button {
  box-shadow: none;
}
.result-summary-meta {
  color: #64748b;
  line-height: 1.45;
}
.result-summary-chips {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
}
.finding {
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid #dbe3f0;
}
.finding p,
.finding small,
.source-card p,
.activity-card p,
.threshold-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}
.finding-task-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.finding-task-copy {
  display: grid;
  gap: 6px;
}
.finding-task-location {
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.finding-task-button {
  white-space: nowrap;
}
.finding-status-chip {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}
.finding-status-chip-resolved {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}
.card-action-row {
  margin-top: 4px;
}
.finding-error {
  background: rgba(254, 242, 242, 0.92);
  border-color: #fecaca;
}
.finding-warning {
  background: rgba(254, 249, 195, 0.92);
  border-color: #fde68a;
}
.finding-info {
  background: rgba(239, 246, 255, 0.95);
  border-color: #bfdbfe;
}
.finding-resolved {
  background: rgba(240, 253, 244, 0.96);
  border-color: #86efac;
}
.result-pass {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.18);
}
.result-review {
  color: #854d0e;
  background: rgba(234, 179, 8, 0.18);
  border-color: rgba(234, 179, 8, 0.2);
}
.result-fail {
  color: #991b1b;
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.18);
}
.preview-frame {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}
.preview-modal-panel .preview-frame {
  min-height: min(78vh, 900px);
}
.preview-shell {
  border: 1px solid #dbe3f0;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.section-copy-compact {
  gap: 6px;
}
.editor-panel .section-copy h3,
.editor-panel .panel-copy h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.editor-stage-panel .field-help {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition:
    max-height 0.18s ease,
    opacity 0.18s ease,
    margin 0.18s ease;
}
.editor-stage-panel .field:focus-within .field-help {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}
.guide-drawer-backdrop {
  justify-items: end;
  padding: 0;
  background: rgba(15, 23, 42, 0.42);
}
.guide-drawer-card {
  width: min(480px, calc(100vw - 20px));
  height: 100vh;
  max-height: 100vh;
}
.guide-drawer-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99),
      rgba(248, 250, 252, 0.98));
  border-left: 1px solid rgba(219, 227, 240, 0.92);
  box-shadow: -24px 0 56px rgba(15, 23, 42, 0.18);
}
.guide-drawer-head {
  align-items: flex-start;
}
.guide-drawer-scroll,
.guide-drawer-content {
  display: grid;
  gap: 18px;
}
.guide-drawer-scroll {
  overflow: auto;
  padding-right: 6px;
}
.guide-drawer-section {
  display: grid;
  gap: 12px;
}
.guide-drawer-section .guide-grid {
  grid-template-columns: 1fr;
}
.empty-state {
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  color: #64748b;
  background: rgba(248, 250, 252, 0.78);
}
.empty-state-compact {
  padding: 16px;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(10px);
}
.modal-card {
  width: min(1040px, 100%);
}
.preview-modal-card {
  width: min(1240px, calc(100vw - 32px));
}
.modal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 22px;
}
.modal-lead {
  display: grid;
  align-content: start;
  gap: 14px;
  border-radius: 28px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(
      160deg,
      rgba(15, 23, 42, 0.98),
      rgba(15, 76, 129, 0.92));
}
.modal-panel {
  min-height: 100%;
  display: grid;
  gap: 16px;
}
.preview-modal-panel {
  gap: 14px;
}
.auth-shell {
  display: grid;
  gap: 14px;
}
.segmented-control {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: #eef2ff;
}
.segmented-button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  color: #334155;
  font-weight: 700;
}
.segmented-button.active {
  background: #0f172a;
  color: #fff;
}
.auth-alt-row {
  justify-content: space-between;
  align-items: center;
}
.text-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #0f4c81;
  font-weight: 700;
  cursor: pointer;
}
.text-button:hover {
  text-decoration: underline;
}
.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.metric-card {
  display: grid;
  gap: 6px;
}
.metric-card small {
  color: #64748b;
  line-height: 1.6;
}
.source-panel {
  display: grid;
  gap: 22px;
}
.page-masthead {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(37, 99, 235, 0.08),
      transparent 30%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(247, 250, 255, 0.94));
}
.page-masthead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: start;
}
.workspace-masthead-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.workspace-masthead-copy {
  gap: 6px;
  min-width: 220px;
}
.workspace-head-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: stretch;
  overflow: hidden;
}
.workspace-head-pill {
  flex: 0 0 auto;
  display: grid;
  gap: 4px;
  min-width: 118px;
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid rgba(219, 227, 240, 0.92);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.94));
}
.workspace-head-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}
.workspace-head-pill strong {
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
}
.page-masthead-copy {
  gap: 10px;
}
.page-masthead-copy h2 {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.06;
}
.page-masthead-chips {
  margin-top: 6px;
}
.page-summary-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-summary-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(219, 227, 240, 0.92);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.page-summary-card strong {
  font-size: 24px;
  line-height: 1.05;
}
.page-summary-card small {
  color: #64748b;
  line-height: 1.6;
}
.home-showcase {
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(37, 99, 235, 0.08),
      transparent 30%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(247, 250, 255, 0.94));
}
.home-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.sidebar-identity {
  justify-content: flex-end;
}
.source-library-grid {
  display: grid;
  gap: 20px;
}
.source-library-section {
  gap: 18px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(15, 76, 129, 0.04),
      transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.94));
}
.source-library-head {
  gap: 8px;
}
.source-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.source-section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.source-meta {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}
.source-link {
  font-weight: 700;
  word-break: break-word;
}
.source-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: #0f4c81;
}
.history-tab-strip {
  align-self: flex-start;
  margin-bottom: 2px;
}
.activity-card,
.source-card {
  display: grid;
  gap: 12px;
  position: relative;
}
.history-panel {
  display: grid;
  gap: 18px;
}
.history-section {
  display: grid;
  gap: 16px;
}
.home-grid,
.history-grid {
  display: grid;
  gap: 20px;
}
.history-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-grid,
.pricing-grid,
.coverage-grid {
  display: grid;
  gap: 16px;
}
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.coverage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.static-page-panel {
  display: grid;
  gap: 20px;
}
.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.policy-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #dbe3f0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.92));
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}
.policy-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}
.policy-card p {
  margin: 0;
}
.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  display: grid;
  gap: 10px;
  line-height: 1.6;
}
.legal-footnote {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  background: rgba(248, 250, 252, 0.75);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-card strong {
  font-size: 18px;
  line-height: 1.2;
  word-break: break-word;
}
.site-footer {
  max-width: 1440px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.footer-panel {
  padding-block: 22px;
}
.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 10px;
}
.footer-brand strong {
  font-size: 22px;
  line-height: 1.08;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.footer-group {
  display: grid;
  gap: 10px;
}
.footer-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #334155;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font-weight: 600;
}
.footer-link:hover {
  color: #0f172a;
  text-decoration: underline;
}
.footer-link.active {
  color: #0f172a;
}
.footer-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(219, 227, 240, 0.92);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 13px;
}
.feature-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #dbe3f0;
  padding: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.92));
  display: grid;
  gap: 12px;
}
.feature-card,
.pricing-card,
.page-summary-card,
.source-library-section,
.source-card,
.activity-card,
.metric-card,
.result-summary-card,
.threshold-card,
.item-card,
.verification-card,
.editor-section-card,
.guide-card,
.topbar-user {
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.feature-card:hover,
.pricing-card:hover,
.page-summary-card:hover,
.source-library-section:hover,
.source-card:hover,
.activity-card:hover,
.metric-card:hover,
.result-summary-card:hover,
.threshold-card:hover,
.item-card:hover,
.verification-card:hover,
.editor-section-card:hover,
.guide-card:hover,
.topbar-user:hover {
  border-color: rgba(15, 76, 129, 0.22);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.09);
}
.feature-card::before {
  content: none;
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(239, 246, 255, 0.94),
      rgba(219, 234, 254, 0.82));
  color: #0f4c81;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.feature-card-icon svg {
  width: 24px;
  height: 24px;
}
.feature-card-icon-my {
  color: #2563eb;
}
.feature-card-icon-id {
  color: #0f766e;
}
.feature-card-icon-th {
  color: #b45309;
}
.coverage-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.feature-card strong {
  font-size: 18px;
  line-height: 1.25;
}
.coverage-card-active {
  border-color: rgba(15, 76, 129, 0.28);
  box-shadow: 0 18px 42px rgba(15, 76, 129, 0.1);
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: rgba(148, 163, 184, 0.26);
}
.feature-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}
.source-card strong,
.activity-card strong {
  font-size: 17px;
  line-height: 1.3;
}
.pricing-title-block {
  display: grid;
  gap: 6px;
}
.pricing-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pricing-tier-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #64748b;
}
.pricing-highlight-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.07);
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-price {
  color: #0f4c81;
  font-size: 15px;
  font-weight: 800;
}
.pricing-tagline {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}
.pricing-card-current {
  border-color: rgba(15, 76, 129, 0.35);
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.12);
}
.pricing-card-starter {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.94));
}
.pricing-card-starter::before {
  background:
    linear-gradient(
      90deg,
      rgba(148, 163, 184, 0.42),
      rgba(203, 213, 225, 0.18));
}
.pricing-card-growth {
  border-color: rgba(37, 99, 235, 0.18);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(59, 130, 246, 0.12),
      transparent 34%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(239, 246, 255, 0.94));
  box-shadow: 0 18px 38px rgba(59, 130, 246, 0.08);
}
.home-footnote {
  margin: 2px 0 0;
  font-size: 14px;
}
.pricing-card-growth::before {
  background:
    linear-gradient(
      90deg,
      #2563eb,
      rgba(96, 165, 250, 0.45));
}
.pricing-card-growth .pricing-highlight-pill {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}
.pricing-card-scale {
  border-color: rgba(217, 119, 6, 0.18);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(251, 191, 36, 0.16),
      transparent 34%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99),
      rgba(255, 251, 235, 0.95));
  box-shadow: 0 22px 44px rgba(217, 119, 6, 0.1);
}
.pricing-card-scale::before {
  background:
    linear-gradient(
      90deg,
      #d97706,
      rgba(245, 158, 11, 0.52));
}
.pricing-card-scale .pricing-price {
  color: #9a3412;
}
.pricing-card-scale .pricing-highlight-pill {
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
}
.source-card .source-cta,
.activity-card .card-action-row {
  margin-top: 4px;
}
.pricing-card-head,
.pricing-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.pricing-list {
  display: grid;
  gap: 10px;
}
.pricing-line span {
  color: #64748b;
}
.verification-layout {
  display: grid;
  gap: 14px;
}
.verification-actions {
  justify-content: flex-start;
}
.file-pill {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.06);
}
.captcha-anchor,
.captcha-trigger-hidden {
  position: fixed;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1120px) {
  .hero-layout,
  .page-masthead-layout,
  .page-summary-grid,
  .editor-shell-head,
  .result-summary-head,
  .workflow-header-top,
  .workbench-layout,
  .split-panel-grid,
  .metric-grid,
  .source-grid,
  .modal-shell,
  .history-grid,
  .feature-grid,
  .coverage-grid,
  .policy-grid,
  .contact-grid,
  .footer-layout,
  .footer-grid,
  .draft-progress-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .sticky-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .editor-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .editor-guide-button {
    justify-self: start;
  }
}
@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 16px;
  }
  .topbar-nav,
  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .app-main {
    padding: 20px 14px 36px;
  }
  .panel,
  .modal-lead,
  .modal-panel {
    padding: 18px;
  }
  .form-grid-2,
  .page-summary-grid,
  .quick-action-grid,
  .result-metric-grid,
  .threshold-grid,
  .source-grid,
  .metric-grid,
  .pricing-grid,
  .coverage-grid,
  .policy-grid,
  .contact-grid,
  .draft-progress-grid {
    grid-template-columns: 1fr;
  }
  .field-span-2 {
    grid-column: auto;
  }
  .workspace-switcher {
    width: 100%;
  }
  .tab-button {
    flex: 1 1 auto;
    text-align: center;
  }
  .editor-shell-meta,
  .quick-action-inline,
  .sidebar-identity {
    justify-content: flex-start;
  }
  .result-summary-actions {
    grid-template-columns: minmax(0, 1fr);
  }
  .editor-shell-actions {
    justify-items: start;
  }
  .editor-canvas-shell,
  .editor-canvas {
    padding: 16px;
  }
  .editor-step-strip {
    grid-template-columns: 1fr;
  }
  .entry-mode-pill-row {
    width: 100%;
  }
  .entry-mode-pill {
    flex: 1 1 0;
    justify-content: center;
  }
  .workspace-head-strip {
    flex-wrap: wrap;
  }
  .guide-drawer-card {
    width: 100vw;
  }
  .guide-drawer-shell {
    padding: 18px;
  }
  .preview-frame {
    min-height: 460px;
  }
  .modal-backdrop {
    padding: 12px;
  }
}
/*# sourceMappingURL=main.css.map */
