:root {
  --ink: #17201d;
  --ink-soft: #58615d;
  --paper: #f5f3ec;
  --paper-deep: #ebe7dc;
  --white: #fffefa;
  --line: rgba(23, 32, 29, 0.15);
  --signal: #ef6034;
  --signal-dark: #ca3f1f;
  --mint: #c8f0d5;
  --green: #2a7556;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(21, 29, 26, 0.12);
  --shell: min(1160px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(23, 32, 29, 0.055) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(239, 96, 52, 0.65);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  width: 3px;
  border-radius: 99px;
  background: var(--signal);
  content: "";
}

.brand-mark::before {
  height: 7px;
  transform: translate(-5px, 5px);
}

.brand-mark span {
  height: 14px;
  transform: translateY(-1px);
}

.brand-mark::after {
  height: 10px;
  transform: translate(5px, -9px);
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

nav > a:not(.button) {
  color: var(--ink-soft);
}

nav > a:not(.button):hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button-primary {
  background: var(--signal);
  box-shadow: 0 10px 28px rgba(239, 96, 52, 0.23);
  color: #fff;
}

.button-primary:hover {
  background: var(--signal-dark);
  box-shadow: 0 14px 32px rgba(202, 63, 31, 0.3);
}

.button-ghost {
  border-color: var(--ink);
  background: transparent;
}

.button-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  border-radius: 8px;
  font-size: 13px;
}

.hero {
  padding-top: 92px;
  padding-bottom: 102px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 68px;
  align-items: center;
}

.eyebrow,
.kicker,
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--green);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #36a66f;
  box-shadow: 0 0 0 5px rgba(54, 166, 111, 0.13);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(52px, 5.4vw, 78px);
  font-weight: 740;
}

.hero h1 em {
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  list-style: none;
}

.trust-row li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.run-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(23, 32, 29, 0.11);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.run-card::after {
  position: absolute;
  top: -62px;
  right: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(239, 96, 52, 0.09);
  content: "";
}

.run-card-top,
.evidence-meta,
.evidence-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.muted {
  color: #89908d;
}

.run-card h2 {
  margin: 9px 0 0;
  font-size: 22px;
}

.run-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 99px;
  background: #e8f6ed;
  color: var(--green);
  font: 700 10px ui-monospace, monospace;
  text-transform: uppercase;
}

.run-state::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.run-steps {
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.run-steps li {
  display: grid;
  grid-template-columns: 29px 1fr auto;
  gap: 13px;
  min-height: 62px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #a3a8a6;
}

.run-steps li > span {
  padding-top: 2px;
  font: 700 10px ui-monospace, monospace;
}

.run-steps strong,
.run-steps small {
  display: block;
}

.run-steps strong {
  color: inherit;
  font-size: 13px;
}

.run-steps small {
  margin-top: 3px;
  color: #969c99;
  font-size: 11px;
}

.run-steps b {
  color: var(--green);
  font-size: 12px;
}

.run-steps .done {
  color: var(--ink);
}

.run-steps .active {
  color: var(--ink);
}

.run-steps .active > span,
.run-steps .active b {
  color: var(--signal);
}

.boundary-note {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #efd59d;
  border-radius: 10px;
  background: #fff8e9;
  color: #70592c;
}

.boundary-note > span {
  color: #d39416;
}

.boundary-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.signal-strip {
  padding-block: 17px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--signal);
}

.section {
  padding-block: 118px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--signal);
}

.section-heading h2,
.section-contrast h2,
.cta-section h2,
.contact-intro h1 {
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 57px);
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  min-height: 290px;
  padding: 27px 28px 20px 0;
  border-right: 1px solid var(--line);
}

.process-grid article:not(:first-child) {
  padding-left: 28px;
}

.process-grid article:last-child {
  border-right: 0;
}

.step-number {
  color: #929896;
  font: 650 10px ui-monospace, monospace;
}

.line-icon {
  margin: 43px 0 32px;
  color: var(--signal);
  font-size: 36px;
  line-height: 1;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-grid p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.section-contrast {
  background: var(--ink);
  color: var(--white);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: center;
}

.section-contrast .lead {
  max-width: 590px;
  margin: 28px 0 38px;
  color: #aeb6b2;
  font-size: 17px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.check-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(200, 240, 213, 0.36);
  border-radius: 50%;
  color: var(--mint);
  font-size: 11px;
}

.check-list strong {
  font-size: 14px;
}

.check-list p {
  margin: 4px 0 0;
  color: #aeb6b2;
  font-size: 12px;
}

.evidence-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #f7f6f0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  color: var(--ink);
  transform: rotate(1deg);
}

.evidence-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding-inline: 15px;
  border-bottom: 1px solid #dfe1dc;
  background: #e9e9e4;
}

.evidence-toolbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b3b7b3;
}

.evidence-toolbar span:first-child {
  background: var(--signal);
}

.evidence-toolbar b {
  margin-left: 7px;
  color: #858a87;
  font: 600 9px ui-monospace, monospace;
}

.evidence-body {
  padding: 28px;
}

.evidence-meta > span {
  color: #7d8581;
  font: 650 9px ui-monospace, monospace;
  text-transform: uppercase;
}

.evidence-meta b {
  padding: 4px 7px;
  border-radius: 4px;
  background: #e5f4ea;
  color: var(--green);
  font: 750 8px ui-monospace, monospace;
}

.evidence-body h3 {
  margin: 14px 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

.evidence-body > p {
  color: var(--ink-soft);
  font-size: 12px;
}

.evidence-shot {
  margin: 22px 0 19px;
  padding: 16px;
  border: 1px solid #d8dad5;
  border-radius: 8px;
  background: #fff;
}

.shot-bar,
.shot-row,
.shot-button {
  border-radius: 3px;
  background: #e5e7e2;
}

.shot-bar {
  width: 40%;
  height: 8px;
  margin-bottom: 19px;
  background: #242e2a;
}

.shot-row {
  height: 32px;
  margin-bottom: 9px;
  border: 1px solid #e1e3de;
  background: #fafaf7;
}

.shot-row.short {
  width: 70%;
}

.shot-button {
  width: 43%;
  margin-top: 18px;
  padding: 8px;
  background: var(--signal);
  color: #fff;
  font-size: 8px;
  text-align: center;
}

.evidence-footer {
  color: #7a817d;
  font: 600 8px ui-monospace, monospace;
  text-transform: uppercase;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
  padding-block: 110px;
}

.cta-section p {
  max-width: 660px;
  margin: 21px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.site-footer {
  padding-block: 45px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  color: var(--ink-soft);
  font-size: 12px;
}

.footer-grid > p {
  margin: 0;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-grid a:not(.brand) {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.footer-grid small {
  color: #929895;
}

/* Contact */
.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 80px;
  padding-top: 74px;
  padding-bottom: 104px;
}

.back-link {
  margin-bottom: 63px;
  color: var(--ink-soft);
  font-size: 12px;
}

.contact-intro h1 {
  max-width: 570px;
  margin-bottom: 25px;
}

.contact-intro > .lead {
  color: var(--ink-soft);
  font-size: 17px;
}

.expectation-card {
  margin-top: 45px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.45);
}

.expectation-card h2 {
  margin-bottom: 19px;
  font-size: 15px;
}

.expectation-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expectation-card li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.expectation-card li > span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-deep);
  font: 700 9px ui-monospace, monospace;
}

.expectation-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.expectation-card strong {
  color: var(--ink);
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 12px;
}

.contact-direct p {
  margin: 0;
}

.contact-direct a {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.form-panel {
  padding: 38px;
  border: 1px solid rgba(23, 32, 29, 0.11);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  margin: 8px 0 8px;
  font-size: 29px;
}

.form-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 720;
}

.field label span {
  color: var(--signal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cacdc8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field input,
.field select {
  min-height: 46px;
  padding: 0 13px;
}

.field textarea {
  min-height: 145px;
  padding: 12px 13px;
  line-height: 1.55;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(239, 96, 52, 0.11);
  outline: none;
}

.field [aria-invalid="true"] {
  border-color: #b72d23;
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: #a32820;
  font-size: 10px;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  color: #8d9490;
  font-size: 10px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.submit-row p {
  max-width: 210px;
  margin: 0;
  color: #818884;
  font-size: 10px;
  text-align: right;
}

.form-error {
  margin-bottom: 16px;
  padding: 11px 13px;
  border: 1px solid #e8b6b2;
  border-radius: 7px;
  background: #fff0ef;
  color: #8d211a;
  font-size: 12px;
}

.success-panel {
  min-height: 390px;
  padding-top: 58px;
  text-align: center;
}

.success-panel > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 23px;
}

.success-panel h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.success-panel p {
  color: var(--ink-soft);
}

.success-panel small {
  color: #8e9692;
  font: 600 10px ui-monospace, monospace;
}

.compact {
  padding-block: 35px;
}

/* Synthetic QA lab */
.qa-body {
  background: #ecefe9;
}

.qa-banner {
  padding: 10px 20px;
  background: #f5c94a;
  color: #352b0d;
  font: 760 11px ui-monospace, monospace;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.qa-main {
  padding-block: 62px 90px;
}

.qa-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}

.qa-heading h1 {
  max-width: 740px;
  margin: 12px 0 0;
  font-size: clamp(41px, 5vw, 66px);
}

.qa-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.qa-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}

.qa-sidebar,
.qa-fixture {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.qa-sidebar {
  align-self: start;
  padding: 23px;
}

.qa-sidebar h2 {
  margin-bottom: 15px;
  font-size: 17px;
}

.scenario-list {
  display: grid;
  gap: 8px;
}

.scenario-button {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 680;
  text-align: left;
  cursor: pointer;
}

.scenario-button:hover,
.scenario-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.qa-note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #777f7b;
  font-size: 11px;
}

.qa-fixture {
  min-height: 580px;
  overflow: hidden;
}

.fixture-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 25px;
  border-bottom: 1px solid var(--line);
  background: #f8f8f4;
}

.fixture-header h2 {
  margin: 4px 0 0;
  font-size: 20px;
}

.fixture-state {
  padding: 5px 8px;
  border-radius: 99px;
  background: #e4eee6;
  color: var(--green);
  font: 700 9px ui-monospace, monospace;
  text-transform: uppercase;
}

.fixture-body {
  max-width: 650px;
  padding: 34px;
}

.fixture-body h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.fixture-body > p {
  margin-bottom: 27px;
  color: var(--ink-soft);
  font-size: 13px;
}

.qa-result {
  margin-top: 19px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f8f5;
  font: 600 11px/1.5 ui-monospace, monospace;
  white-space: pre-wrap;
}

.qa-result[data-kind="success"] {
  border-color: #9ac8aa;
  background: #edf8f0;
  color: #1f6748;
}

.qa-result[data-kind="error"] {
  border-color: #e2aaa4;
  background: #fff0ef;
  color: #92261e;
}

@media (max-width: 960px) {
  .hero-grid,
  .section-heading,
  .evidence-grid,
  .contact-main,
  .qa-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .section-heading,
  .evidence-grid,
  .contact-main,
  .qa-heading {
    gap: 42px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 690px;
  }

  .form-panel {
    max-width: 760px;
  }

  .qa-grid {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 30px, 1160px);
  }

  nav > a:not(.button) {
    display: none;
  }

  .hero {
    padding-block: 64px 74px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-actions,
  .cta-section,
  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-section .button,
  .submit-row .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .signal-row {
    justify-content: flex-start;
    overflow: hidden;
  }

  .section {
    padding-block: 82px;
  }

  .process-grid,
  .field-grid,
  .footer-grid,
  .qa-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:not(:first-child) {
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .line-icon {
    margin-block: 25px 18px;
  }

  .cta-section {
    display: flex;
    gap: 32px;
    padding-block: 80px;
  }

  .footer-grid {
    gap: 27px;
  }

  .footer-grid > div {
    align-items: flex-start;
  }

  .contact-main {
    padding-top: 48px;
  }

  .back-link {
    margin-bottom: 45px;
  }

  .form-panel {
    padding: 25px 19px;
  }

  .submit-row p {
    max-width: none;
    text-align: left;
  }

  .qa-main {
    padding-top: 45px;
  }

  .qa-sidebar {
    overflow-x: auto;
  }

  .scenario-list {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .fixture-body {
    padding: 25px 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
