﻿:root {
  color-scheme: light;
  --bg: oklch(0.962 0.020 78);
  --bg-2: oklch(0.930 0.026 74);
  --paper: oklch(0.985 0.012 78);
  --paper-2: oklch(0.955 0.018 76);
  --paper-3: oklch(0.925 0.022 74);
  --ink: oklch(0.205 0.022 67);
  --ink-soft: oklch(0.330 0.026 66);
  --muted: oklch(0.475 0.026 66);
  --faint: oklch(0.640 0.025 66);
  --line: oklch(0.835 0.026 74);
  --line-strong: oklch(0.700 0.038 70);
  --accent: oklch(0.560 0.125 39);
  --accent-strong: oklch(0.430 0.115 38);
  --accent-soft: oklch(0.905 0.050 48);
  --sage: oklch(0.570 0.060 142);
  --danger: oklch(0.540 0.165 31);
  --warning: oklch(0.690 0.120 78);
  --success: oklch(0.560 0.095 145);
  --info: oklch(0.560 0.070 225);
  --shadow: 0 28px 80px oklch(0.260 0.030 62 / 0.12);
  --shadow-tight: 0 12px 34px oklch(0.260 0.030 62 / 0.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Songti SC", "Noto Serif CJK SC", serif;
  --font-body: "Aptos", "Segoe UI", "PingFang SC", "Microsoft YaHei UI", sans-serif;
  --font-mono: "SF Mono", "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
  --dur-1: 150ms;
  --dur-2: 220ms;
  --ease-out: cubic-bezier(.2,.9,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% -8%, oklch(0.860 0.075 42 / 0.36), transparent 28rem),
    radial-gradient(circle at 92% 3%, oklch(0.880 0.048 145 / 0.24), transparent 27rem),
    linear-gradient(145deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, oklch(0.245 0.020 65 / 0.035) 1px, transparent 1px),
    linear-gradient(oklch(0.245 0.020 65 / 0.030) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(circle at 20% 30%, oklch(0.20 0.03 62 / 0.055) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 20%, oklch(1 0 0 / 0.35) 0 1px, transparent 1.5px);
  background-size: 18px 18px, 23px 23px;
  mix-blend-mode: multiply;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-tight);
  text-decoration: none;
  transition: transform var(--dur-1) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.app-shell {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 18px;
  width: min(1460px, calc(100% - 28px));
  margin: 14px auto;
}

.side-rail,
.hero-panel,
.workspace-panel,
.domain-card,
.source-dossier,
.citation-rail {
  border: 1px solid var(--line);
  background: oklch(0.985 0.012 78 / 0.88);
  box-shadow: var(--shadow-tight);
}

.side-rail {
  position: sticky;
  top: 14px;
  display: flex;
  min-height: calc(100vh - 28px);
  flex-direction: column;
  gap: 20px;
  border-radius: var(--radius-xl);
  padding: 18px;
}

.brand-block {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 4px 2px 12px;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid oklch(0.420 0.110 38 / 0.24);
  border-radius: 15px;
  color: var(--paper);
  background: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 24px;
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.22), 0 16px 34px oklch(0.43 0.10 38 / 0.20);
}

.brand-block strong,
.brand-block small,
.rail-panel strong,
.rail-panel small {
  display: block;
}

.brand-block strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand-block small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.nav-list {
  display: grid;
  gap: 7px;
}

.nav-list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}

.nav-list a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

.nav-list a:hover {
  border-color: var(--line);
  color: var(--ink-soft);
  background: oklch(1 0 0 / 0.45);
}

.nav-list a.active {
  border-color: oklch(0.600 0.085 39 / 0.35);
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.nav-list a.active::after {
  background: var(--accent);
}

.rail-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: oklch(0.970 0.014 78 / 0.72);
}

.status-panel {
  margin-top: auto;
}

.panel-label,
.kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.panel-label {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 11px;
}

.rail-panel strong {
  margin-top: 9px;
  font-size: 15px;
}

.rail-panel small,
.rail-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.status-panel .button {
  margin-top: 10px;
  width: 100%;
}

.main-stage {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  min-height: 438px;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 48px);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -155px;
  width: 380px;
  height: 380px;
  border: 1px solid oklch(0.600 0.080 39 / 0.20);
  border-radius: 999px;
  background: radial-gradient(circle, oklch(0.850 0.060 42 / 0.35), transparent 68%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.hero-panel h1,
.panel-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 520;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-panel h1 {
  max-width: 900px;
  margin-top: 14px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.96;
}

.hero-panel h1 span {
  display: block;
}

.hero-panel p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-actions,
.ask-actions,
.search-console,
.prompt-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 17px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 18px 38px oklch(0.22 0.025 65 / 0.20);
}

.button.secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: oklch(1 0 0 / 0.38);
}

.button.quiet {
  border-color: transparent;
  color: var(--muted);
  background: transparent;
}

.button.compact-button {
  min-height: 44px;
  padding: 0 12px;
  font-size: 13px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.hero-ledger {
  position: relative;
  z-index: 1;
  align-self: end;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: oklch(0.970 0.014 78 / 0.78);
}

.hero-ledger dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-ledger div {
  border-left: 1px solid var(--line);
  padding-left: 12px;
}

.hero-ledger dt {
  color: var(--muted);
  font-size: 12px;
}

.hero-ledger dd {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.hero-ledger p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.domain-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.domain-card {
  min-height: 212px;
  border-radius: var(--radius-lg);
  padding: 18px;
  cursor: pointer;
  text-align: left;
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}

.domain-card:hover {
  transform: translateY(-3px);
  border-color: oklch(0.600 0.085 39 / 0.42);
  background: oklch(0.995 0.010 78 / 0.95);
  box-shadow: var(--shadow);
}

.domain-index {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.domain-card strong,
.domain-card small,
.domain-card em,
.domain-card .domain-meta {
  display: block;
}

.domain-card strong {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.domain-card small {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.domain-card em {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.domain-meta {
  margin-top: 18px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 11px;
}

.workspace-panel {
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 34px);
}

.panel-heading {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tight-heading {
  margin-bottom: 16px;
}

.mode-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.panel-heading h2 {
  max-width: 900px;
  margin-top: 10px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.compact-field {
  min-width: 240px;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  background: oklch(0.995 0.010 78 / 0.82);
  outline: none;
  transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}

select {
  min-height: 46px;
  padding: 0 13px;
}

input {
  min-height: 54px;
  padding: 0 16px;
}

textarea {
  min-height: 156px;
  resize: vertical;
  padding: 15px 16px;
  line-height: 1.7;
}

::placeholder {
  color: oklch(0.500 0.026 66 / 0.72);
}

.search-field {
  flex: 1;
}

.knowledge-layout,
.ask-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 16px;
  align-items: start;
}

.search-column,
.ask-column {
  min-width: 0;
}

.result-list,
.citation-list {
  display: grid;
  gap: 10px;
}

.result-list {
  margin-top: 16px;
}

.result-item,
.answer-box,
.handoff-steps article,
.release-grid article,
.ai-disclosure {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.result-item {
  padding: 16px;
}

.result-open {
  display: grid;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  text-align: left;
}

.result-title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.result-heading {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.result-action {
  margin-top: 9px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 760;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.result-meta span,
.mode-pill {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border: 1px solid oklch(0.660 0.070 39 / 0.30);
  border-radius: 999px;
  padding: 0 9px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 760;
}

.result-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
  text-wrap: pretty;
}

.evidence-text {
  max-height: 340px;
  margin-top: 12px;
  overflow: auto;
  border: 1px solid oklch(0.710 0.048 72 / 0.25);
  border-radius: 14px;
  padding: 12px;
  color: var(--ink-soft);
  background: oklch(0.985 0.010 86 / 0.62);
  line-height: 1.72;
  white-space: pre-wrap;
}

.result-item code,
.source-preview code,
.release-grid code,
.citation-chip code {
  display: block;
  margin-top: 12px;
  color: var(--accent-strong);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.source-dossier,
.citation-rail {
  position: sticky;
  top: 14px;
  border-radius: var(--radius-lg);
  padding: 16px;
}

.dossier-head {
  display: grid;
  gap: 7px;
}

.dossier-head strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 520;
  letter-spacing: -0.035em;
}

.source-preview {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: oklch(1 0 0 / 0.42);
}

.source-title strong,
.source-title span {
  display: block;
}

.source-title strong {
  font-size: 15px;
  line-height: 1.4;
}

.source-title span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.source-preview p {
  max-height: 360px;
  margin: 12px 0 0;
  overflow: auto;
  color: var(--ink-soft);
  line-height: 1.72;
  white-space: pre-wrap;
}

.ai-disclosure {
  margin-bottom: 14px;
  padding: 13px 14px;
  background: oklch(0.955 0.018 76 / 0.64);
}

.ai-disclosure strong {
  color: var(--accent-strong);
  font-size: 13px;
}

.ai-disclosure p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.prompt-bar {
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 14px;
}

.prompt-bar button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  cursor: pointer;
  color: var(--ink-soft);
  background: oklch(1 0 0 / 0.38);
  font-size: 13px;
  transition: border-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}

.prompt-bar button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.ask-scope {
  margin-bottom: 12px;
}

.ask-options {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.ask-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.answer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.answer-toolbar .answer-status {
  flex: 1 1 320px;
  margin-top: 0;
}

.handoff-strip {
  margin-top: 18px;
}

.compact-heading {
  margin-bottom: 10px;
}

.compact-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-steps article {
  min-height: 150px;
}

.answer-box {
  min-height: 256px;
  margin-top: 16px;
  padding: 18px;
  color: var(--ink-soft);
  line-height: 1.78;
  white-space: pre-wrap;
}

.answer-status {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 13px;
  color: var(--muted);
  background: oklch(0.980 0.010 78 / 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.answer-status.success {
  border-color: oklch(0.620 0.080 150 / 0.36);
  color: oklch(0.360 0.060 150);
  background: oklch(0.960 0.030 150 / 0.62);
}

.answer-status.warning,
.warning-state {
  border-color: oklch(0.700 0.110 72 / 0.45);
  background: oklch(0.965 0.045 78 / 0.62);
}

.answer-status.warning {
  color: oklch(0.420 0.080 62);
}

.answer-status.error {
  border-color: oklch(0.620 0.120 31 / 0.42);
  color: var(--danger);
  background: oklch(0.955 0.035 31 / 0.58);
}

.citation-chip {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  width: 100%;
  gap: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
  background: oklch(1 0 0 / 0.42);
  text-align: left;
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}

.citation-chip:hover,
.citation-chip.active {
  transform: translateY(-1px);
  border-color: oklch(0.600 0.085 39 / 0.42);
  background: var(--accent-soft);
}

.citation-chip span {
  grid-row: span 3;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 760;
}

.citation-chip strong,
.citation-chip small,
.citation-chip code {
  min-width: 0;
}

.citation-chip strong {
  font-size: 13px;
  line-height: 1.42;
}

.citation-chip small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.citation-chip code {
  margin-top: 0;
  font-size: 11px;
}

.handoff-steps,
.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.handoff-steps article,
.release-grid article {
  min-height: 186px;
  padding: 18px;
}

.handoff-steps span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 760;
}

.handoff-steps strong,
.release-grid strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.handoff-steps p,
.release-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.empty-state,
.loading-state {
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
  background: oklch(0.970 0.014 78 / 0.56);
}

.loading-state {
  position: relative;
  overflow: hidden;
}

.loading-state::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, oklch(1 0 0 / 0.36), transparent);
  animation: shimmer 1.4s infinite;
}

.error-state {
  border-color: oklch(0.620 0.120 31 / 0.42);
  color: var(--danger);
  background: oklch(0.955 0.035 31 / 0.58);
}

select:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
.result-open:focus-visible,
.citation-chip:focus-visible {
  outline: 3px solid oklch(0.720 0.105 39 / 0.48);
  outline-offset: 3px;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .side-rail {
    position: relative;
    min-height: auto;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-list a {
    justify-content: center;
    text-align: center;
  }

  .nav-list a::after {
    display: none;
  }

  .hero-panel,
  .knowledge-layout,
  .ask-layout {
    grid-template-columns: 1fr;
  }

  .source-dossier,
  .citation-rail {
    position: static;
  }

  .domain-board,
  .handoff-steps,
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .app-shell {
    width: min(100% - 18px, 1460px);
    margin: 9px auto;
  }

  .side-rail,
  .hero-panel,
  .workspace-panel {
    border-radius: 22px;
    padding: 16px;
  }

  .brand-block {
    align-items: flex-start;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-panel p {
    font-size: 15px;
  }

  .hero-actions,
  .ask-actions,
  .search-console,
  .mode-actions,
  .answer-toolbar,
  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .prompt-bar button {
    width: 100%;
  }

  .ask-options {
    grid-template-columns: 1fr;
  }

  .compact-field {
    min-width: 0;
  }

  .hero-ledger dl,
  .domain-board,
  .handoff-steps,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .domain-card {
    min-height: 178px;
  }

  .panel-heading h2 {
    font-size: 36px;
  }

  .answer-toolbar .answer-status {
    flex-basis: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
