.subpage main > section,
.subpage main > article {
  border-bottom: 4px solid var(--ink);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding-top: clamp(34px, 4vw, 48px);
  padding-bottom: clamp(52px, 6vw, 76px);
  background-color: var(--paper);
  background-image: linear-gradient(var(--surface-high) 1px, transparent 1px),
    linear-gradient(90deg, var(--surface-high) 1px, transparent 1px);
  background-size: 34px 34px;
}

.page-hero-inner,
.content-inner,
.article-shell,
.page-cta-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 clamp(38px, 4vw, 48px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumbs a {
  border-bottom: 2px solid var(--ink);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: end;
}

.page-kicker,
.status-badge {
  display: inline-block;
  width: fit-content;
  border: 3px solid var(--ink);
  padding: 8px 12px;
  background: var(--red);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 930px;
  margin: 18px 0 0;
  font-size: clamp(52px, 6.2vw, 82px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.page-hero h1 .red-word {
  color: var(--red);
}

.page-hero h1 .keep-together {
  white-space: nowrap;
}

.page-hero-aside {
  border-top: 4px solid var(--ink);
  padding-top: 20px;
}

.page-hero-aside p {
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 750;
  line-height: 1.46;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero-actions .button {
  padding: 13px 18px;
}

.content-band {
  padding-top: clamp(58px, 8vw, 96px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.content-band.dark {
  background: var(--ink);
  color: var(--white);
}

.content-band.red {
  background: var(--red);
  color: var(--white);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  margin-bottom: clamp(40px, 7vw, 78px);
}

.section-intro h2,
.page-cta h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-intro p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 650;
  line-height: 1.55;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.catalog-item {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  color: var(--ink);
}

.catalog-item:nth-child(3n + 2) {
  background: var(--surface-high);
}

.catalog-item-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-item h2,
.catalog-item h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.catalog-item p {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.catalog-item-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid var(--ink);
  padding-top: 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-item:hover .catalog-arrow {
  color: var(--red);
  transform: translateX(5px);
}

.catalog-arrow {
  font-size: 24px;
  transition: transform 180ms ease, color 180ms ease;
}

.feature-rows {
  border-top: 4px solid currentColor;
}

.feature-row {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 3px solid currentColor;
}

.feature-row > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.content-band.dark .feature-row > span,
.content-band.red .feature-row > span {
  color: var(--white);
}

.feature-row h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.feature-row p {
  max-width: 670px;
  margin: 0;
  color: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  opacity: 0.86;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 64px;
  color: var(--red);
  content: "0" counter(process);
  font-size: 14px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.faq-list {
  border-top: 4px solid var(--ink);
}

.faq-list details {
  border-bottom: 3px solid var(--ink);
}

.faq-list summary {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: clamp(19px, 2.5vw, 27px);
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--red);
  content: "+";
  font-size: 34px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 850px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.page-cta {
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: clamp(60px, 9vw, 110px);
  background-color: var(--red);
  background-image: radial-gradient(var(--ink) 2px, transparent 2px);
  background-size: 26px 26px;
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.page-cta h2 {
  color: var(--white);
  text-shadow: 4px 4px 0 var(--ink);
}

.page-cta .button {
  padding: 16px 22px;
  background: var(--paper);
  color: var(--ink);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: center;
}

.founder-photo {
  position: relative;
  margin: 0;
}

.founder-photo::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--ink);
  background: var(--red);
  content: "";
}

.founder-photo img {
  width: 100%;
  border: 4px solid var(--ink);
  filter: grayscale(1) contrast(1.06);
}

.founder-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.founder-copy p {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.article-header {
  padding-top: clamp(44px, 7vw, 80px);
  padding-bottom: clamp(46px, 8vw, 94px);
  background: var(--paper);
}

.article-header .breadcrumbs {
  margin-bottom: clamp(40px, 7vw, 70px);
}

.article-header h1 {
  max-width: 1020px;
  margin: 16px 0 24px;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.article-deck {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 650;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  border-top: 3px solid var(--ink);
  padding-top: 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-body {
  padding-top: clamp(52px, 8vw, 92px);
  padding-bottom: clamp(60px, 9vw, 110px);
  background: var(--surface-low);
}

.article-prose {
  max-width: 790px;
  margin: 0 auto;
}

.article-prose h2 {
  margin: 64px 0 18px;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.article-prose h3 {
  margin: 40px 0 12px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
}

.article-prose p,
.article-prose li {
  color: #303235;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.75;
}

.article-prose a {
  border-bottom: 2px solid var(--red);
  font-weight: 800;
}

.article-prose ul,
.article-prose ol {
  padding-left: 25px;
}

.article-note {
  margin: 36px 0;
  border: 3px solid var(--ink);
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  text-transform: uppercase;
}

.article-note p {
  margin: 0;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.related-links a {
  border: 3px solid var(--ink);
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.related-links a:hover {
  background: var(--red);
  color: var(--white);
}

.scope-hero {
  min-height: 490px;
}

.scope-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scope-trust span {
  border: 2px solid var(--ink);
  padding: 7px 9px;
  background: var(--surface);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-lab {
  padding: clamp(56px, 7vw, 92px) 0 clamp(70px, 8vw, 110px);
  background: var(--surface-low);
}

.scope-lab-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.scope-lab-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: 36px;
}

.scope-lab-head h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.scope-lab-head > p {
  margin: 0;
  border-top: 4px solid var(--ink);
  padding-top: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.scope-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.scope-form,
.scope-result {
  background: var(--paper);
}

.scope-form {
  min-width: 0;
  min-height: 760px;
}

.scope-progress {
  border-bottom: 3px solid var(--ink);
  padding: 24px clamp(18px, 3vw, 32px) 0;
}

.scope-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-progress-track {
  height: 14px;
  border: 3px solid var(--ink);
  background: var(--surface-high);
}

.scope-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--red);
  transition: width 220ms ease;
}

.scope-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.scope-tab {
  min-height: 48px;
  border: 0;
  border-right: 2px solid var(--ink);
  padding: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-tab:last-child {
  border-right: 0;
}

.scope-tab:hover,
.scope-tab:focus-visible,
.scope-tab.is-active {
  background: var(--ink);
  color: var(--white);
  outline: 0;
}

.scope-form-body {
  padding: clamp(24px, 4vw, 42px);
}

.scope-step {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.scope-step[hidden] {
  display: none;
}

.scope-step legend {
  max-width: 720px;
  padding: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.scope-step-intro {
  max-width: 680px;
  margin: 12px 0 30px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: grid;
  min-width: 0;
  gap: 9px;
  align-content: start;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field > span small {
  color: var(--muted);
  font-size: 11px;
}

.field input[type="text"],
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border: 3px solid var(--ink);
  border-radius: 0;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.45;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 4px solid color-mix(in srgb, var(--red) 34%, transparent);
  outline-offset: 0;
}

.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: var(--red);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.choice-grid-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice {
  position: relative;
  display: block;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 3px solid var(--ink);
  padding: 8px;
  background: var(--surface);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.choice input:checked + span {
  background: var(--red);
  color: var(--white);
}

.choice input:focus-visible + span {
  outline: 4px solid color-mix(in srgb, var(--red) 34%, transparent);
}

.field-error {
  min-height: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.range-field input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}

.range-field output {
  color: var(--red);
}

.scope-actions {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 38px;
  border-top: 3px solid var(--ink);
  padding-top: 22px;
}

.scope-actions .button {
  padding: 12px 16px;
}

.scope-result {
  position: sticky;
  top: 118px;
  min-width: 0;
  overflow: hidden;
}

.scope-result-head {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  border-bottom: 3px solid var(--ink);
  padding: 24px;
}

.scope-result-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-result-head h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.scope-clear {
  border-bottom: 2px solid var(--ink);
  padding: 3px 0;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-clear:hover,
.scope-clear:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: 0;
}

.scope-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.scope-scoreboard > div {
  display: grid;
  gap: 5px;
  min-width: 0;
  border-right: 2px solid var(--white);
  padding: 15px;
}

.scope-scoreboard > div:last-child {
  border-right: 0;
}

.scope-scoreboard span {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-scoreboard strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 18px;
  line-height: 1.05;
}

.brief-preview {
  padding: 8px 24px;
}

.brief-preview section {
  border-bottom: 2px solid var(--ink);
  padding: 17px 0;
}

.brief-preview section:last-child {
  border-bottom: 0;
}

.brief-preview span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.48;
}

.scope-export {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-top: 3px solid var(--ink);
  padding: 24px;
  background: var(--surface);
}

.scope-export .button {
  min-width: 0;
  padding: 9px 10px;
  font-size: 11px;
}

.scope-export .button:nth-child(3),
.scope-export p {
  grid-column: 1 / -1;
}

.scope-export button:disabled,
.scope-export .is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.scope-export p {
  min-height: 18px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
}

.cost-table-wrap {
  margin: 38px calc((100vw - min(100vw, 1080px)) / -2);
  overflow-x: auto;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cost-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.cost-table th,
.cost-table td {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

.cost-table th:last-child,
.cost-table td:last-child {
  border-right: 0;
}

.cost-table tbody tr:last-child td {
  border-bottom: 0;
}

.cost-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cost-table td {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.cost-table td:first-child,
.cost-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 900;
}

.cost-estimator {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  max-width: 1080px;
  margin: 72px auto;
  overflow: hidden;
  background: var(--paper);
}

.cost-estimator-form {
  padding: clamp(28px, 5vw, 52px);
}

.cost-estimator-form h2 {
  margin: 20px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.cost-estimator-form > p {
  max-width: 670px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.cost-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cost-estimator-result {
  display: grid;
  align-content: start;
  border-left: 3px solid var(--ink);
  padding: clamp(28px, 4vw, 42px);
  background: var(--ink);
  color: var(--white);
}

.cost-result-label,
.cost-drivers > span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cost-estimator-result > strong {
  margin: 8px 0 28px;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.96;
}

.cost-result-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.cost-result-meta > div {
  display: grid;
  gap: 5px;
  border-right: 2px solid var(--white);
  padding: 17px 12px 17px 0;
}

.cost-result-meta > div:last-child {
  border-right: 0;
  padding-left: 14px;
}

.cost-result-meta span {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.cost-result-meta b {
  font-size: 15px;
}

.cost-drivers {
  margin: 26px 0;
}

.cost-drivers ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.cost-drivers li {
  margin: 0 0 8px;
  color: #e4e4e4;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.cost-estimator-result .button {
  background: var(--red);
}

.cost-estimator-result > small {
  margin-top: 20px;
  color: #c8c8c8;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: auto;
  }

  .page-hero-grid,
  .section-intro,
  .founder-grid,
  .page-cta-inner,
  .scope-lab-head,
  .scope-workspace,
  .cost-estimator {
    grid-template-columns: 1fr;
  }

  .cost-estimator-result {
    border-top: 3px solid var(--ink);
    border-left: 0;
  }

  .scope-form {
    min-height: auto;
  }

  .scope-result {
    position: static;
  }

  .page-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .page-hero h1 .keep-together {
    white-space: normal;
  }

  .catalog-grid,
  .process-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 46px 1fr;
  }

  .feature-row p {
    grid-column: 2;
  }

  .page-cta .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .breadcrumbs {
    margin-bottom: 42px;
  }

  .page-hero h1,
  .article-header h1 {
    overflow-wrap: anywhere;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row p {
    grid-column: 1;
  }

  .scope-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scope-tab:nth-child(2) {
    border-right: 0;
  }

  .scope-tab:nth-child(-n + 2) {
    border-bottom: 2px solid var(--ink);
  }

  .field-grid,
  .choice-grid,
  .choice-grid-wide,
  .scope-export,
  .cost-fields {
    grid-template-columns: 1fr;
  }

  .cost-table-wrap {
    margin-right: 0;
    margin-left: 0;
  }

  .field-wide,
  .scope-export .button:nth-child(3),
  .scope-export p {
    grid-column: 1;
  }

  .scope-form-body {
    padding: 24px 18px;
  }

  .scope-actions {
    flex-direction: column-reverse;
  }

  .scope-actions .button {
    width: 100%;
  }
}
