:root {
  --navy-950: #071827;
  --navy-900: #0b2238;
  --navy-800: #12324d;
  --navy-700: #1d4667;
  --navy-600: #2c5f86;
  --blue-100: #e8f1f7;
  --blue-50: #f3f8fb;
  --gold-500: #c7932e;
  --gold-400: #d9ac55;
  --gold-100: #f7ecd2;
  --green-700: #206541;
  --green-100: #e5f3eb;
  --red-700: #9c2f2f;
  --red-100: #f8e8e8;
  --amber-800: #8a5c12;
  --amber-100: #fff3d8;
  --gray-950: #161b22;
  --gray-800: #303946;
  --gray-700: #4a5563;
  --gray-600: #687482;
  --gray-500: #8994a1;
  --gray-400: #aeb7c1;
  --gray-300: #d2d8df;
  --gray-200: #e4e8ed;
  --gray-100: #f0f3f6;
  --gray-50: #f7f9fb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(7, 24, 39, .06), 0 1px 4px rgba(7, 24, 39, .04);
  --shadow-md: 0 12px 32px rgba(7, 24, 39, .09);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --max-width: 1180px;
  --transition: 160ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--gray-950);
  background: var(--gray-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
a { color: inherit; }
svg { display: block; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shell,
.header-shell { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(210, 216, 223, .9);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.header-shell {
  min-height: 74px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: var(--white);
}
.brand-mark svg { width: 28px; height: 28px; fill: none; stroke: var(--navy-800); stroke-width: 1.6; }
.brand > span:last-child { display: grid; line-height: 1.15; }
.brand strong { color: var(--navy-950); font-size: 15px; letter-spacing: -.01em; }
.brand small { margin-top: 4px; color: var(--gray-600); font-size: 11px; }
.primary-nav { display: flex; align-items: stretch; gap: 4px; }
.nav-tab {
  position: relative;
  border: 0;
  padding: 0 15px;
  color: var(--gray-600);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
}
.nav-tab::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
}
.nav-tab:hover { color: var(--navy-800); }
.nav-tab.is-active { color: var(--navy-950); }
.nav-tab.is-active::after { background: var(--gold-500); }
.nav-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-left: 5px;
  padding: 0 6px;
  border: 1px solid var(--gray-300);
  border-radius: 99px;
  color: var(--gray-700);
  background: var(--white);
  font-size: 10px;
  font-weight: 750;
}

.app-view { min-height: calc(100vh - 74px); }
.hero {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
  padding-block: 72px 58px;
}
.hero-copy h1,
.workspace-header h1 {
  margin: 8px 0 18px;
  max-width: 680px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.3vw, 70px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero-lede {
  max-width: 570px;
  margin: 0;
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.65;
}
.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-trust-row span {
  padding: 7px 10px;
  border: 1px solid var(--gray-300);
  border-radius: 99px;
  color: var(--gray-700);
  background: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 650;
}

.ask-card,
.public-card,
.analysis-card,
.registry-card,
.inspector-card,
.review-card,
.submission-form-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.ask-card { padding: 28px; box-shadow: var(--shadow-md); }
.ask-heading-row,
.card-label-row,
.analysis-label-row,
.registry-header,
.review-card-header,
.inspector-header,
.workspace-header,
.footer-shell,
.modal-header,
.modal-footer,
.form-footer,
.form-submit-row,
.ask-source-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ask-heading-row { align-items: flex-start; }
.ask-heading-row h2,
.answer-heading h2,
.workspace h2,
.method-heading h2,
.modal-header h2 {
  margin: 4px 0 0;
  color: var(--navy-950);
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.scope-badge,
.provenance-chip,
.meta-chip,
.status-chip,
.layer-chip,
.access-chip,
.citable-chip,
.review-chip {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}
.scope-badge { padding: 8px 10px; color: var(--navy-700); background: var(--blue-100); }

textarea,
input,
select {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--gray-950);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
textarea { resize: vertical; }
input, select { min-height: 42px; padding: 9px 11px; }
textarea { padding: 13px 14px; }
textarea:focus, input:focus, select:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(44, 95, 134, .14);
}
#question {
  min-height: 150px;
  margin-top: 20px;
  border-color: var(--gray-300);
  font-size: 16px;
  line-height: 1.6;
}
#question::placeholder { color: var(--gray-500); }
.form-footer { margin-top: 12px; }
.form-footer > span { color: var(--gray-500); font-size: 12px; }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 9px 15px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}
.button:hover:not(:disabled) { transform: translateY(-1px); }
.button-primary { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); }
.button-primary:hover:not(:disabled) { background: var(--navy-800); }
.button-secondary { color: var(--navy-900); background: var(--white); border-color: var(--gray-300); }
.button-secondary:hover:not(:disabled) { border-color: var(--navy-600); background: var(--blue-50); }
.button-danger { color: var(--red-700); background: var(--white); border-color: #e8bcbc; }
.button-danger:hover:not(:disabled) { background: var(--red-100); }
.button-quiet { border-color: transparent; }
.button-small { min-height: 36px; padding: 7px 11px; font-size: 12px; }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.ask-source-status {
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 11px;
  background: var(--gray-50);
}
.ask-source-status > div { display: grid; gap: 2px; }
.ask-source-status strong { color: var(--navy-900); font-size: 13px; }
.ask-source-status span { color: var(--gray-600); font-size: 12px; }
.examples { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
.examples > span { margin-right: 3px; color: var(--gray-500); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.examples button {
  border: 1px solid var(--gray-300);
  border-radius: 99px;
  padding: 6px 9px;
  color: var(--gray-700);
  background: var(--white);
  font-size: 11px;
}
.examples button:hover { color: var(--navy-900); border-color: var(--navy-600); }

.answer-shell { padding-block: 22px 78px; }
.answer-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 20px; }
.answer-heading h2 { max-width: 780px; font-size: 28px; }
.answer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.meta-chip { padding: 7px 9px; color: var(--gray-700); border: 1px solid var(--gray-300); background: var(--white); }
.public-card,
.analysis-card { padding: 30px; }
.public-card { border-radius: var(--radius-lg) var(--radius-lg) 8px 8px; background: #f7f9fa; box-shadow: none; }
.analysis-card { position: relative; margin-top: 14px; border-color: rgba(18, 50, 77, .16); box-shadow: var(--shadow-md); }
.analysis-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); background: var(--gold-500); }
.card-label-row { align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.card-label-row h3 { margin: 0; color: var(--navy-950); font-size: 20px; }
.card-label-row p { margin: 4px 0 0; color: var(--gray-600); font-size: 12px; }
.provenance-chip { padding: 8px 10px; color: var(--navy-700); border: 1px solid #c9dbe8; background: var(--blue-50); }
.verdict-chip { padding: 8px 10px; border-radius: 99px; font-size: 11px; font-weight: 780; text-transform: capitalize; }
.verdict-chip.full { color: var(--green-700); background: var(--green-100); }
.verdict-chip.framework-only { color: var(--navy-700); background: var(--blue-100); }
.verdict-chip.restricted { color: var(--amber-800); background: var(--amber-100); }
.verdict-chip.none { color: var(--red-700); background: var(--red-100); }
.prose { padding-top: 20px; color: var(--gray-800); font-size: 15px; line-height: 1.75; }
.prose p { margin: 0 0 15px; }
.prose p:last-child { margin-bottom: 0; }
.analysis-prose { font-size: 16px; }
.notice { margin-top: 17px; border-radius: 10px; padding: 12px 14px; font-size: 13px; line-height: 1.55; }
.notice-warning { border: 1px solid #ead39d; color: #684817; background: #fff9eb; }
.notice-neutral { border: 1px solid var(--gray-300); color: var(--gray-700); background: var(--gray-50); }
.notice-restriction { border: 1px solid #efc4c4; color: #7f2929; background: #fff5f5; }
.analysis-details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.detail-block { border: 1px solid var(--gray-200); border-radius: 11px; padding: 16px; background: var(--gray-50); }
.detail-label { display: block; margin-bottom: 7px; color: var(--gold-500); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.detail-block strong, .detail-block p { margin: 0; color: var(--gray-800); font-size: 13px; line-height: 1.55; }
.sources-block { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.sources-block h4 { margin: 0 0 10px; color: var(--navy-900); font-size: 13px; }
.sources-block ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sources-block li { display: grid; gap: 2px; padding: 10px 12px; border: 1px solid var(--gray-200); border-radius: 9px; background: var(--white); }
.sources-block li strong { font-size: 13px; }
.source-match-note { color: var(--gray-600); font-size: 11px; }
.evidence-stack { display: grid; gap: 10px; margin-top: 15px; }
.evidence-panel { border: 1px solid var(--gray-200); border-radius: 12px; background: var(--white); }
.evidence-panel summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; cursor: pointer; list-style: none; }
.evidence-panel summary::-webkit-details-marker { display: none; }
.evidence-panel summary > span { display: grid; gap: 2px; }
.evidence-panel summary strong { color: var(--navy-900); font-size: 14px; }
.evidence-panel summary small { color: var(--gray-600); font-size: 11px; }
.evidence-panel summary svg { width: 18px; height: 18px; fill: none; stroke: var(--gray-600); stroke-width: 1.7; transition: transform var(--transition); }
.evidence-panel[open] summary svg { transform: rotate(180deg); }
.evidence-content { padding: 0 18px 18px; color: var(--gray-700); font-size: 13px; line-height: 1.65; }
.evidence-content p { margin: 0 0 10px; }
.coverage-footer { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 28px; margin-top: 16px; padding: 28px; border: 1px solid var(--gray-200); border-radius: 14px; background: var(--navy-950); color: var(--white); }
.coverage-footer h3 { margin: 5px 0 12px; font-size: 23px; }
.coverage-footer ul { margin: 0; padding-left: 20px; color: #dce5ec; font-size: 13px; }
.coverage-footer .button-primary { border-color: var(--white); background: var(--white); color: var(--navy-950); }
.method-section { padding-block: 50px 82px; }
.method-heading { max-width: 750px; }
.method-heading h2 { font-size: 34px; }
.method-heading > p:last-child { color: var(--gray-700); }
.method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.method-grid article { border: 1px solid var(--gray-200); border-radius: 14px; padding: 22px; background: var(--white); }
.method-number { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-100); font-weight: 850; }
.method-grid h3 { margin: 18px 0 8px; color: var(--navy-950); font-size: 16px; }
.method-grid p { margin: 0; color: var(--gray-700); font-size: 13px; }

.workspace { padding-block: 48px 80px; }
.workspace-header { align-items: flex-end; margin-bottom: 24px; }
.workspace-header h1 { margin-bottom: 10px; font-size: clamp(38px, 5vw, 58px); }
.workspace-header p:last-child { max-width: 720px; margin: 0; color: var(--gray-700); }
.workspace-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.admin-warning { display: flex; gap: 14px; margin-bottom: 18px; padding: 12px 14px; border: 1px solid #ead39d; border-radius: 10px; color: #684817; background: #fff9eb; font-size: 12px; }
.admin-warning strong { white-space: nowrap; }
.corpus-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.metric-card { position: relative; min-height: 126px; display: grid; align-content: center; gap: 8px; overflow: hidden; border: 1px solid var(--gray-200); border-radius: 14px; padding: 20px; background: var(--white); }
.metric-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--gray-300); }
.metric-analysis::before { background: var(--gold-500); }
.metric-public::before { background: var(--navy-600); }
.metric-contributor::before { background: var(--green-700); }
.metric-review::before { background: var(--amber-800); }
.metric-kicker { color: var(--gray-600); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.metric-card strong { color: var(--navy-950); font-size: 17px; }
.metric-card > span:last-child { color: var(--gray-600); font-size: 12px; }
.registry-card,
.inspector-card,
.review-card,
.submission-form-card { padding: 24px; }
.registry-header,
.review-card-header,
.inspector-header { align-items: flex-end; margin-bottom: 18px; }
.registry-header h2,
.review-card-header h2,
.inspector-header h2,
.submission-form-heading h2 { margin: 0 0 5px; font-size: 24px; }
.registry-header p,
.review-card-header p,
.inspector-header p,
.submission-form-heading p { margin: 0; color: var(--gray-600); font-size: 12px; }
.registry-filter-row { display: grid; grid-template-columns: minmax(220px, 1.8fr) minmax(150px, 1fr) minmax(140px, 1fr); gap: 8px; width: min(100%, 660px); }
.registry-filter-row input,
.registry-filter-row select { min-height: 38px; font-size: 12px; }
.source-registry-list { border-top: 1px solid var(--gray-200); }
.source-record {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.source-record.is-muted { opacity: .62; }
.source-order { padding-top: 4px; color: var(--gray-500); font-size: 12px; font-variant-numeric: tabular-nums; }
.source-record-main { min-width: 0; }
.source-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.source-title-row h3 { min-width: 0; margin: 0; color: var(--navy-950); font-size: 15px; line-height: 1.35; }
.source-metadata { margin-top: 5px; color: var(--gray-600); font-size: 11px; }
.source-summary { max-width: 850px; margin: 9px 0 0; color: var(--gray-700); font-size: 12px; line-height: 1.55; }
.source-chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.layer-chip,
.access-chip,
.citable-chip,
.review-chip,
.status-chip { padding: 5px 7px; border: 1px solid var(--gray-300); color: var(--gray-700); background: var(--gray-50); }
.layer-chip.expert { color: #72500f; border-color: #ead39d; background: #fff9eb; }
.layer-chip.standards { color: var(--navy-700); border-color: #c9dbe8; background: var(--blue-50); }
.layer-chip.contributor { color: var(--green-700); border-color: #b9ddc7; background: #eff8f2; }
.status-chip.active { color: var(--green-700); border-color: #b9ddc7; background: var(--green-100); }
.status-chip.draft { color: var(--amber-800); border-color: #ead39d; background: var(--amber-100); }
.status-chip.superseded,
.status-chip.archived { color: var(--gray-700); background: var(--gray-100); }
.review-chip.issue { color: var(--red-700); border-color: #efc4c4; background: var(--red-100); }
.review-chip.ready { color: var(--green-700); border-color: #b9ddc7; background: var(--green-100); }
.source-record-actions { display: flex; gap: 5px; }
.icon-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-700);
  background: var(--white);
  font-size: 18px;
  line-height: 1;
}
.icon-button:hover:not(:disabled) { color: var(--navy-900); border-color: var(--navy-600); background: var(--blue-50); }
.icon-button.danger:hover:not(:disabled) { color: var(--red-700); border-color: #e8bcbc; background: var(--red-100); }
.source-details { grid-column: 2 / -1; margin-top: -4px; }
.source-details summary { width: max-content; color: var(--navy-700); font-size: 11px; font-weight: 700; cursor: pointer; }
.source-details pre { max-height: 260px; overflow: auto; margin: 10px 0 0; border: 1px solid var(--gray-200); border-radius: 9px; padding: 12px; color: var(--gray-800); background: var(--gray-50); white-space: pre-wrap; font: 11px/1.55 ui-monospace, SFMono-Regular, Menlo, monospace; }
.empty-state { display: grid; place-items: center; gap: 4px; min-height: 170px; padding: 32px; text-align: center; color: var(--gray-600); }
.empty-state strong { color: var(--navy-900); }
.inspector-card { margin-top: 18px; }
.inspector-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: end; margin-bottom: 16px; padding: 14px; border: 1px solid var(--gray-200); border-radius: 11px; background: var(--gray-50); }
.inspector-controls label:first-child { display: grid; gap: 6px; }
.inspector-controls label:first-child span { color: var(--gray-700); font-size: 11px; font-weight: 700; }
.checkbox-label { display: inline-flex !important; align-items: flex-start !important; gap: 9px !important; color: var(--gray-700); font-size: 12px; }
.checkbox-label input { width: 16px; min-height: 16px; height: 16px; margin: 2px 0 0; flex: 0 0 auto; }
.inspector-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.inspector-grid article { min-width: 0; border: 1px solid var(--gray-200); border-radius: 11px; overflow: hidden; background: var(--gray-50); }
.inspector-pane-heading { display: grid; gap: 2px; padding: 12px 14px; border-bottom: 1px solid var(--gray-200); background: var(--white); }
.inspector-pane-heading span { color: var(--gold-500); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.inspector-pane-heading strong { color: var(--navy-900); font-size: 13px; }
.inspector-grid pre { min-height: 280px; max-height: 500px; overflow: auto; margin: 0; padding: 14px; white-space: pre-wrap; word-break: break-word; color: var(--gray-800); font: 11px/1.58 ui-monospace, SFMono-Regular, Menlo, monospace; }

.review-card { margin-bottom: 18px; }
.submission-review-list { border-top: 1px solid var(--gray-200); }
.submission-record { padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
.submission-record:last-child { border-bottom: 0; }
.submission-topline { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.submission-topline h3 { margin: 0; color: var(--navy-950); font-size: 15px; }
.submission-byline { margin-top: 3px; color: var(--gray-600); font-size: 11px; }
.submission-summary { margin: 11px 0 0; color: var(--gray-700); font-size: 12px; line-height: 1.6; }
.submission-meta-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.submission-review-controls { display: grid; grid-template-columns: 130px minmax(220px, 1fr) auto auto auto; gap: 8px; align-items: end; margin-top: 14px; }
.submission-review-controls label { display: grid; gap: 5px; }
.submission-review-controls label span { color: var(--gray-600); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.submission-review-controls select,
.submission-review-controls input { min-height: 38px; font-size: 12px; }
.submission-form-heading { margin-bottom: 20px; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid label,
.contributor-form > label,
.content-field { display: grid; gap: 6px; }
.form-grid label > span,
.contributor-form > label > span,
.content-field > span { color: var(--gray-800); font-size: 11px; font-weight: 750; }
.form-grid label > small,
.content-field > small { color: var(--gray-600); font-size: 10px; line-height: 1.45; }
.span-two { grid-column: span 2; }
.contributor-form { display: grid; gap: 16px; }
.consent-label { padding: 12px; border: 1px solid var(--gray-200); border-radius: 9px; background: var(--gray-50); }
.form-submit-row { margin-top: 2px; }
.form-submit-row > span { color: var(--gray-600); font-size: 12px; }

.site-footer { border-top: 1px solid var(--gray-200); background: var(--white); }
.footer-shell { min-height: 84px; color: var(--gray-600); font-size: 11px; }
.footer-shell p { max-width: 780px; margin: 0; }

.modal-dialog {
  width: min(940px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: var(--shadow-md);
}
.modal-dialog::backdrop { background: rgba(7, 24, 39, .58); backdrop-filter: blur(2px); }
.modal-dialog-small { width: min(700px, calc(100% - 32px)); }
.modal-card { max-height: calc(100vh - 32px); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--gray-200); border-radius: 18px; background: var(--white); }
.modal-header { flex: 0 0 auto; padding: 20px 22px; border-bottom: 1px solid var(--gray-200); }
.modal-header h2 { font-size: 23px; }
.modal-body { overflow: auto; padding: 22px; }
.modal-footer { flex: 0 0 auto; padding: 15px 22px; border-top: 1px solid var(--gray-200); background: var(--gray-50); }
.modal-spacer { flex: 1; }
.modal-intro { margin: 0 0 18px; color: var(--gray-700); font-size: 13px; }
.content-field { margin-top: 18px; }
#source-content { font: 12px/1.58 ui-monospace, SFMono-Regular, Menlo, monospace; }
.file-metadata { margin-top: 14px; padding: 12px; border: 1px solid var(--gray-200); border-radius: 9px; color: var(--gray-700); background: var(--gray-50); font-size: 11px; }
.validation-panel { margin-top: 16px; border: 1px solid var(--gray-200); border-radius: 10px; padding: 14px; background: var(--gray-50); }
.validation-panel > div { display: flex; justify-content: space-between; gap: 16px; }
.validation-panel strong { color: var(--navy-900); font-size: 13px; }
.validation-panel span { color: var(--gray-600); font-size: 11px; }
.validation-panel ul { margin: 10px 0 0; padding-left: 20px; color: var(--gray-700); font-size: 11px; }
.validation-panel li.issue { color: var(--red-700); }
.validation-panel li.warning { color: var(--amber-800); }
.validation-panel li.pass { color: var(--green-700); }
.upload-drop-zone { min-height: 170px; display: grid; place-items: center; align-content: center; gap: 8px; margin-top: 18px; padding: 24px; border: 1.5px dashed var(--gray-300); border-radius: 12px; text-align: center; background: var(--gray-50); cursor: pointer; }
.upload-drop-zone:hover { border-color: var(--navy-600); background: var(--blue-50); }
.upload-drop-zone input { position: absolute; opacity: 0; pointer-events: none; }
.upload-drop-zone svg { width: 28px; height: 28px; fill: none; stroke: var(--navy-700); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.upload-drop-zone strong { color: var(--navy-900); font-size: 14px; }
.upload-drop-zone span { max-width: 520px; color: var(--gray-600); font-size: 11px; }
.inline-status { margin-top: 12px; color: var(--gray-600); font-size: 12px; }

.loading-state { display: grid; gap: 9px; }
.loading-state p { margin-top: 5px; color: var(--gray-600); font-size: 12px; }
.loading-line { height: 13px; border-radius: 6px; background: linear-gradient(90deg, var(--gray-100), var(--gray-200), var(--gray-100)); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.loading-line.short { width: 72%; }
@keyframes shimmer { to { background-position: -200% 0; } }
.error-state { border: 1px solid #efc4c4; border-radius: 10px; padding: 14px; color: var(--red-700); background: var(--red-100); }
.toast-region { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; gap: 8px; pointer-events: none; }
.toast { max-width: 420px; padding: 12px 14px; border: 1px solid var(--gray-300); border-radius: 10px; color: var(--navy-950); background: var(--white); box-shadow: var(--shadow-md); font-size: 12px; animation: toast-in 180ms ease; }
.toast.error { color: var(--red-700); border-color: #efc4c4; background: #fff8f8; }
.toast.success { color: var(--green-700); border-color: #b9ddc7; background: #f6fbf8; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 50px; }
  .hero-copy { max-width: 820px; }
  .hero-copy h1 { max-width: 800px; }
  .corpus-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inspector-grid { grid-template-columns: 1fr; }
  .inspector-grid pre { min-height: 180px; }
  .workspace-header { align-items: flex-start; flex-direction: column; }
  .workspace-actions { justify-content: flex-start; }
  .registry-header,
  .review-card-header { align-items: flex-start; flex-direction: column; }
  .registry-filter-row { width: 100%; }
  .submission-review-controls { grid-template-columns: 130px minmax(200px, 1fr) repeat(3, auto); }
}

@media (max-width: 760px) {
  .shell,
  .header-shell { width: min(calc(100% - 24px), var(--max-width)); }
  .site-header { position: static; }
  .header-shell { min-height: auto; flex-direction: column; align-items: stretch; gap: 0; }
  .brand { min-width: 0; padding: 14px 0 10px; }
  .primary-nav { overflow-x: auto; }
  .nav-tab { min-height: 48px; padding: 0 12px; }
  .hero { padding-block: 38px; }
  .hero-copy h1,
  .workspace-header h1 { font-size: 42px; }
  .ask-card,
  .public-card,
  .analysis-card,
  .registry-card,
  .inspector-card,
  .review-card,
  .submission-form-card { padding: 20px; border-radius: 14px; }
  .ask-heading-row,
  .card-label-row,
  .answer-heading,
  .coverage-footer,
  .footer-shell,
  .inspector-header,
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .scope-badge { align-self: flex-start; }
  .answer-meta { justify-content: flex-start; }
  .analysis-details,
  .method-grid,
  .coverage-footer,
  .form-grid.two-column,
  .corpus-metrics,
  .registry-filter-row,
  .inspector-controls { grid-template-columns: 1fr; }
  .span-two { grid-column: auto; }
  .coverage-footer { align-items: stretch; }
  .coverage-footer .button { width: 100%; }
  .source-record { grid-template-columns: 30px minmax(0, 1fr); }
  .source-record-actions { grid-column: 2; justify-content: flex-start; flex-wrap: wrap; }
  .source-details { grid-column: 2; }
  .submission-topline { flex-direction: column; }
  .submission-review-controls { grid-template-columns: 1fr; }
  .submission-review-controls .button { width: 100%; }
  .modal-footer { flex-wrap: wrap; }
  .modal-spacer { display: none; }
  .modal-footer .button { flex: 1 1 140px; }
  .admin-warning { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hero-copy h1,
  .workspace-header h1 { font-size: 36px; }
  .ask-card { padding: 17px; }
  .ask-source-status { align-items: flex-start; flex-direction: column; }
  .ask-source-status .button { width: 100%; }
  .workspace-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .workspace-actions .button { width: 100%; }
  .source-title-row { align-items: flex-start; }
  .toast-region { left: 12px; right: 12px; bottom: 12px; }
}

.file-extraction-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.file-extraction-row .file-metadata {
  flex: 1 1 420px;
}
.button-small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 0.82rem;
}
.extraction-progress {
  font-variant-numeric: tabular-nums;
}

.primary-nav > .button { align-self: center; margin-left: 8px; white-space: nowrap; }
.admin-secure-notice { border-color: #b9ddc7; background: #f6fbf8; }
.contribution-workspace { max-width: 920px; }
#login-form .modal-body > label { display: grid; gap: 7px; }
#login-form .modal-body > label > span { color: var(--gray-800); font-size: 11px; font-weight: 750; }
#login-status:not(:empty) { padding: 10px 12px; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--gray-50); }

@media (max-width: 760px) {
  .primary-nav > .button { margin: 6px 0 6px 4px; }
}


/* Mingra public experience — approved hero and navigation */
:root {
  --navy-950: #071b55;
  --navy-900: #0b2465;
  --navy-800: #123477;
  --navy-700: #294a83;
  --blue-100: #eaf1ff;
  --blue-50: #f7f9ff;
  --gold-500: #071b55;
  --max-width: 1460px;
  --shadow-md: 0 16px 42px rgba(7, 27, 85, .09);
}
body { background: #fff; color: #101b3f; }
.site-header { background: rgba(255,255,255,.96); border-bottom-color: #e1e6ef; }
.header-shell { min-height: 92px; align-items: stretch; }
.mingra-brand {
  min-width: 245px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 11px 0;
}
.mingra-brand strong {
  color: var(--navy-950);
  font-size: 27px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .25em;
}
.mingra-brand small {
  color: #455673;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0;
}
.primary-nav { align-items: stretch; gap: 12px; }
.nav-tab {
  padding: 0 17px;
  color: #17213f;
  font-size: 15px;
  font-weight: 550;
}
.nav-tab::after { left: 17px; right: 17px; height: 3px; }
.nav-tab.is-active::after { background: var(--navy-950); }
.header-auth-button { align-self: center; min-height: 48px; margin-left: 12px !important; padding-inline: 22px; font-size: 14px; }

#view-ask { overflow: hidden; }
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 92px);
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(52px, 7vw, 118px);
  align-items: center;
  padding-block: 82px 112px;
}
.hero-copy { position: relative; z-index: 2; padding-left: 26px; }
.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.2vw, 70px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.hero-lede {
  max-width: 700px;
  margin-top: 36px;
  color: #52617d;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.75;
}
.hero-wave {
  position: absolute;
  z-index: 0;
  left: -14vw;
  bottom: 1%;
  width: min(900px, 72vw);
  height: 480px;
  color: #c7d8ff;
  opacity: .64;
  pointer-events: none;
}
.hero-ask-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  justify-self: end;
  padding: 36px 34px 32px;
  border-color: #e5e9f1;
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(7, 27, 85, .09);
  text-align: center;
}
.ask-icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--navy-950);
  background: #edf3ff;
}
.ask-icon svg { width: 58px; height: 58px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.hero-ask-card h2 {
  margin: 0 0 28px;
  color: var(--navy-950);
  font-size: clamp(27px, 2.15vw, 36px);
  line-height: 1.22;
  letter-spacing: -.025em;
}
#question {
  min-height: 178px;
  margin-top: 0;
  padding: 20px 21px;
  border-color: #c9d3e4;
  border-radius: 12px;
  color: #17213f;
  background: #fff;
  font-size: 17px;
  line-height: 1.55;
}
.question-meta-row { min-height: 25px; display: flex; justify-content: flex-end; align-items: center; }
.question-meta-row span { color: #7c879b; font-size: 11px; }
.hero-ask-button { width: 100%; min-height: 62px; border-radius: 10px; font-size: 20px; font-weight: 600; }
.ask-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 24px 0 0;
  color: #53627c;
  font-size: 13px;
}
.ask-privacy svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.question-quota {
  margin: 9px 0 0;
  color: #69758a;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.hero-ask-card .ask-source-status { text-align: left; }

.answer-shell { border-top: 1px solid #e5e9f1; background: #fbfcff; }
.public-card, .analysis-card { background: #fff; }

.public-workspace { padding-block: 72px 96px; }
.simple-workspace-header { margin-bottom: 34px; }
.simple-workspace-header h1 { font-size: clamp(44px, 5vw, 68px); }
.simple-workspace-header p:last-child { max-width: 850px; margin: 0; color: #5b6880; font-size: 18px; line-height: 1.7; }
.portal-placeholder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  border: 1px solid #e1e6ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.placeholder-icon, .admin-hub-icon {
  width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: #edf3ff;
}
.placeholder-icon svg, .admin-hub-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.portal-placeholder-card h2 { margin: 3px 0 8px; color: var(--navy-950); font-size: 28px; }
.portal-placeholder-card p { max-width: 860px; margin: 0; color: #5b6880; }
.planned-datasets { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.planned-datasets span { padding: 8px 11px; border: 1px solid #d8dfeb; border-radius: 99px; color: #41516f; background: #fafbfe; font-size: 12px; }
.about-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.about-grid article { padding: 28px; border: 1px solid #e1e6ef; border-radius: 18px; background: #fff; }
.about-grid article > span { color: #8b99b0; font-size: 12px; font-weight: 750; letter-spacing: .12em; }
.about-grid h2 { margin: 18px 0 10px; color: var(--navy-950); font-size: 22px; }
.about-grid p { margin: 0; color: #5b6880; }
.about-boundary { margin-top: 20px; }
.admin-hub-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.admin-hub-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 26px;
  border: 1px solid #dfe5ef;
  border-radius: 18px;
  color: inherit;
  background: #fff;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.admin-hub-card:hover { border-color: #9fb2d2; transform: translateY(-1px); }
.admin-hub-card > span:nth-child(2) { display: grid; gap: 4px; }
.admin-hub-card strong { color: var(--navy-950); font-size: 19px; }
.admin-hub-card small { color: #65728a; font-size: 13px; line-height: 1.5; }
.admin-hub-card b { min-width: 36px; height: 36px; display: grid; place-items: center; border-radius: 99px; color: var(--navy-950); background: #edf3ff; font-size: 13px; }
.site-footer { background: #fff; }
.footer-shell span { color: var(--navy-950); font-weight: 650; }

@media (max-width: 1120px) {
  .header-shell { gap: 16px; }
  .primary-nav { gap: 1px; }
  .nav-tab { padding-inline: 10px; }
  .nav-tab::after { left: 10px; right: 10px; }
  .header-auth-button { margin-left: 5px !important; padding-inline: 15px; }
  .hero { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero-copy { padding-left: 0; }
}
@media (max-width: 900px) {
  .site-header { position: static; }
  .header-shell { min-height: auto; flex-direction: column; align-items: stretch; }
  .mingra-brand { min-width: 0; padding: 18px 0 12px; }
  .primary-nav { overflow-x: auto; }
  .nav-tab { min-height: 50px; white-space: nowrap; }
  .header-auth-button { margin: 6px 4px !important; white-space: nowrap; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 58px 76px; }
  .hero-copy h1 { max-width: 820px; }
  .hero-ask-card { max-width: 720px; justify-self: stretch; }
  .hero-wave { width: 110vw; left: -30vw; bottom: 30%; opacity: .36; }
  .about-grid, .admin-hub-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding-block: 42px 58px; }
  .hero-copy h1 { font-size: 43px; }
  .hero-lede { margin-top: 24px; font-size: 18px; }
  .hero-ask-card { padding: 26px 20px 24px; }
  .ask-icon { width: 72px; height: 72px; }
  .ask-icon svg { width: 47px; height: 47px; }
  .hero-ask-card h2 { font-size: 27px; }
  #question { min-height: 148px; }
  .portal-placeholder-card { grid-template-columns: 1fr; padding: 24px; }
  .admin-hub-card { grid-template-columns: auto minmax(0,1fr); }
  .admin-hub-card b { grid-column: 2; width: max-content; }
}


/* Mingra follow-up, company-link, and legal terms */
.mingra-brand { display:flex; flex-direction:column; align-items:flex-start; gap:2px; }
.mingra-home-link, .gessnet-company-link { text-decoration:none; }
.mingra-home-link { color:inherit; }
.gessnet-company-link { color:var(--slate-600); font-size:.82rem; font-weight:600; }
.gessnet-company-link:hover, .site-footer a:hover, .about-boundary a:hover { color:var(--navy-900); text-decoration:underline; }
.site-footer a, .about-boundary a { color:inherit; }
.contribution-terms-summary { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:15px 17px; border:1px solid var(--line); border-radius:14px; background:var(--surface-muted); }
.contribution-terms-summary div { display:grid; gap:3px; }
.contribution-terms-summary span { color:var(--slate-600); font-size:.9rem; }
.inline-link-button { border:0; background:transparent; color:var(--navy-800); padding:0; font:inherit; text-decoration:underline; cursor:pointer; }
.legal-dialog { max-width:900px; }
.legal-terms-body { max-height:min(68vh,760px); overflow:auto; line-height:1.58; }
.legal-terms-body h3 { margin:18px 0 6px; font-size:1rem; color:var(--navy-900); }
.legal-terms-body p { margin:0 0 10px; }
.legal-note { padding:12px 14px; border-left:3px solid var(--gold-600); background:var(--surface-muted); font-weight:600; }
.enquiry-record { display:grid; gap:10px; }
.enquiry-contact { display:flex; flex-wrap:wrap; gap:8px 18px; color:var(--slate-600); font-size:.9rem; }

/* Managed regulatory register */
.regulatory-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 22px;
}
.regulatory-metrics article {
  background: #fff;
  border: 1px solid var(--line, #d8e1ec);
  border-radius: 16px;
  padding: 17px 18px;
  box-shadow: 0 8px 22px rgba(20, 42, 72, .045);
}
.regulatory-metrics span,
.regulatory-metrics small { display: block; color: var(--muted, #627086); }
.regulatory-metrics span { font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.regulatory-metrics strong { display: block; margin: 8px 0 3px; color: var(--navy, #102c54); font-size: 1.28rem; }
.regulatory-metrics small { font-size: .8rem; line-height: 1.4; }
.regulatory-source-fields {
  margin-top: 4px;
  padding: 16px;
  border: 1px solid #cbd9e9;
  border-radius: 14px;
  background: #f6f9fd;
}
.regulatory-field-heading { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; margin-bottom: 14px; }
.regulatory-field-heading strong { color: var(--navy, #102c54); }
.regulatory-field-heading small { color: var(--muted, #627086); text-align: right; }
.regulatory-chip,
.verification-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: .7rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}
.regulatory-chip { color: #204f78; background: #e8f1fa; border: 1px solid #c6dcee; }
.verification-chip { color: #4d5b6d; background: #eef1f5; border: 1px solid #d8dee7; }
.verification-chip.verified { color: #17623b; background: #eaf7ef; border-color: #bfe1cc; }
.verification-chip.review_required { color: #8d4b07; background: #fff3df; border-color: #efd0a0; }
.verification-chip.unverified { color: #6f5a1e; background: #f8f3e4; border-color: #e4d8ae; }
.official-source-link { display: inline-flex; margin-top: 7px; color: #174f83; font-weight: 700; font-size: .82rem; text-decoration: none; }
.official-source-link:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .regulatory-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .regulatory-metrics { grid-template-columns: 1fr; }
  .regulatory-field-heading { display: block; }
  .regulatory-field-heading small { margin-top: 4px; text-align: left; }
}

.source-title-line {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.answer-source-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.answer-source-link:hover,
.answer-source-link:focus-visible {
  color: var(--blue);
}

.answer-source-metadata {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.enquiry-delivery { display:flex; flex-wrap:wrap; align-items:center; gap:8px 12px; color:var(--slate-600); }
.enquiry-delivery small { font-size:.8rem; }
.enquiry-delivery .delivery-error { flex-basis:100%; color:var(--danger); }
.button-small { min-height:32px; padding:6px 10px; font-size:.78rem; }
.modal-intro a { color:var(--navy-700); font-weight:700; text-underline-offset:3px; }

/* Launch feedback and contributor-access controls */
.response-feedback{margin-top:24px;padding:22px;border:1px solid var(--border-color,#d9e0e7);border-radius:18px;background:#fff;display:grid;gap:16px}.response-feedback h3{margin:0 0 4px}.response-feedback p{margin:0;color:var(--muted,#5f6b76)}.response-feedback-actions{display:flex;gap:10px;flex-wrap:wrap}.feedback-detail-form{display:grid;gap:14px;padding-top:14px;border-top:1px solid var(--border-color,#d9e0e7)}.feedback-detail-form label{display:grid;gap:6px}.portal-feedback-button{position:fixed;right:18px;bottom:18px;z-index:40;border:1px solid #17385f;border-radius:999px;background:#fff;color:#17385f;padding:10px 16px;font:inherit;font-weight:700;box-shadow:0 8px 24px rgba(20,42,68,.14);cursor:pointer}.portal-feedback-button:hover{background:#f4f7fa}.contribution-launch-notice{display:grid;gap:5px;margin:20px 0}.contribution-process-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:20px 0}.contribution-process-grid article{display:grid;gap:7px;padding:18px;border:1px solid var(--border-color,#d9e0e7);border-radius:14px;background:#fafbfd}.contribution-process-grid span{color:var(--muted,#5f6b76);line-height:1.5}.contribution-access-actions{justify-content:flex-end}.filter-row{display:flex;gap:16px;flex-wrap:wrap;margin:16px 0 24px}.filter-row label{display:grid;gap:6px;min-width:180px}@media(max-width:760px){.contribution-process-grid{grid-template-columns:1fr}.portal-feedback-button{right:12px;bottom:12px}.response-feedback-actions{display:grid;grid-template-columns:1fr 1fr}}
