.project-brief-shell {
  --brief-accent: #087b59;
  --brief-accent-dark: #055d44;
  --brief-ink: #17201c;
  --brief-muted: #68736d;
  --brief-line: #d9dfdb;
  --brief-soft: #f4f6f4;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 22px clamp(20px, 3.2vw, 54px) 60px;
  color: var(--brief-ink);
}

.project-brief-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: 18px 0 26px;
  border-bottom: 1px solid var(--brief-line);
}

.project-brief-heading h1 {
  max-width: 920px;
  margin: 10px 0 8px;
  color: var(--brief-ink);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.project-brief-heading p {
  max-width: 820px;
  margin: 0;
  color: var(--brief-muted);
  font-size: 16px;
  line-height: 1.55;
}

.project-brief-workspace {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 580px;
  margin-top: 24px;
  border: 1px solid var(--brief-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.project-brief-steps {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 0 20px;
  border-right: 1px solid var(--brief-line);
  background: var(--brief-soft);
}

.project-brief-steps ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-brief-steps button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  width: 100%;
  min-height: 76px;
  padding: 14px 20px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: var(--brief-muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.project-brief-steps button:hover,
.project-brief-steps button:focus-visible {
  background: #e9eeeb;
  color: var(--brief-ink);
}

.project-brief-steps button.is-active {
  border-left-color: var(--brief-accent);
  background: #fff;
  color: var(--brief-ink);
}

.project-brief-steps button.is-complete span {
  border-color: var(--brief-accent);
  background: var(--brief-accent);
  color: #fff;
}

.project-brief-steps button span {
  display: grid;
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #c6cec9;
  border-radius: 50%;
  background: #fff;
  color: var(--brief-muted);
  font-size: 10px;
  font-weight: 800;
}

.project-brief-steps button strong {
  align-self: end;
  color: currentColor;
  font-size: 14px;
  line-height: 1.25;
}

.project-brief-steps button small {
  margin-top: 3px;
  color: var(--brief-muted);
  font-size: 11px;
  line-height: 1.3;
}

.project-brief-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 28px 20px 0;
  color: var(--brief-muted);
  font-size: 11px;
}

.project-brief-progress strong {
  color: var(--brief-ink);
}

.project-brief-progress i {
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  background: #d9dfdb;
}

.project-brief-progress b {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--brief-accent);
  transition: width 180ms ease;
}

.project-brief-form {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
}

.project-brief-step {
  padding: clamp(26px, 3.4vw, 48px);
}

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

.project-brief-step-head {
  max-width: 880px;
  margin-bottom: 30px;
}

.project-brief-step-head > span {
  color: var(--brief-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-brief-step-head h2 {
  margin: 8px 0;
  color: var(--brief-ink);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: 0;
}

.project-brief-step-head p {
  margin: 0;
  color: var(--brief-muted);
  font-size: 15px;
  line-height: 1.55;
}

.project-brief-fields {
  display: grid;
  gap: 22px;
}

.project-brief-fields-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-brief-form label,
.project-brief-primary-task {
  display: grid;
  gap: 8px;
  color: #414b46;
  font-size: 12px;
  font-weight: 750;
}

.project-brief-form select,
.project-brief-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd3ce;
  border-radius: 4px;
  background: #fff;
  color: var(--brief-ink);
  font: 500 14px/1.4 "Onest", sans-serif;
}

.project-brief-form textarea {
  min-height: 112px;
  resize: vertical;
}

.project-brief-form select:focus,
.project-brief-form textarea:focus {
  border-color: var(--brief-accent);
  outline: 3px solid rgba(8, 123, 89, .12);
}

.project-brief-primary-task {
  max-width: 720px;
  margin-bottom: 28px;
}

.project-brief-choice-fieldset {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.project-brief-choice-fieldset legend {
  margin-bottom: 12px;
  color: var(--brief-ink);
  font-size: 13px;
  font-weight: 800;
}

.project-brief-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--brief-line);
  border-left: 1px solid var(--brief-line);
}

.project-brief-choice-grid label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  min-height: 76px;
  padding: 14px;
  border-right: 1px solid var(--brief-line);
  border-bottom: 1px solid var(--brief-line);
  background: #fff;
  cursor: pointer;
}

.project-brief-choice-grid label:hover {
  background: #f7f9f7;
}

.project-brief-choice-grid label:has(input:checked) {
  box-shadow: inset 3px 0 var(--brief-accent);
  background: #eef6f2;
}

.project-brief-choice-grid input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--brief-accent);
}

.project-brief-choice-grid span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.project-brief-choice-grid strong {
  color: var(--brief-ink);
  font-size: 13px;
  line-height: 1.35;
}

.project-brief-choice-grid small {
  color: var(--brief-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.project-brief-directions {
  display: grid;
  gap: 24px;
}

.project-brief-direction-group {
  display: grid;
  gap: 10px;
}

.project-brief-direction-group > header {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: baseline;
}

.project-brief-direction-group h3,
.project-brief-direction-group p {
  margin: 0;
}

.project-brief-direction-group h3 {
  color: var(--brief-ink);
  font-size: 13px;
  line-height: 1.35;
}

.project-brief-direction-group p {
  color: var(--brief-muted);
  font-size: 11px;
  line-height: 1.45;
}

.project-brief-direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--brief-line);
  border-left: 1px solid var(--brief-line);
}

.project-brief-direction-card {
  min-width: 0;
  border-right: 1px solid var(--brief-line);
  border-bottom: 1px solid var(--brief-line);
  background: #fff;
}

.project-brief-direction-card:has(input:checked) {
  background: #eef6f2;
  box-shadow: inset 3px 0 var(--brief-accent);
}

.project-brief-direction-card > label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  min-height: 76px;
  padding: 14px;
  cursor: pointer;
}

.project-brief-direction-card > label:hover {
  background: rgba(8, 123, 89, .035);
}

.project-brief-direction-card input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--brief-accent);
}

.project-brief-direction-card label > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.project-brief-direction-card strong {
  color: var(--brief-ink);
  font-size: 13px;
  line-height: 1.35;
}

.project-brief-direction-card label small {
  color: var(--brief-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.project-brief-direction-card details {
  margin: 0 14px;
  border-top: 1px solid var(--brief-line);
}

.project-brief-direction-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0 11px 32px;
  color: var(--brief-accent-dark);
  font-size: 11px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.project-brief-direction-card summary::-webkit-details-marker {
  display: none;
}

.project-brief-direction-card summary::after {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--brief-line);
  border-radius: 50%;
  color: var(--brief-muted);
  content: "+";
}

.project-brief-direction-card details[open] summary::after {
  content: "-";
}

.project-brief-direction-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 0 14px 32px;
  list-style: none;
}

.project-brief-direction-card li {
  position: relative;
  padding-left: 12px;
  color: var(--brief-muted);
  font-size: 11px;
  line-height: 1.4;
}

.project-brief-direction-card li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brief-accent);
  content: "";
}

.project-brief-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(26px, 3.4vw, 48px);
  border-top: 1px solid var(--brief-line);
  background: #fafbfa;
}

.project-brief-controls p {
  margin: 0;
  color: #a33c2f;
  font-size: 12px;
  text-align: right;
}

.project-brief-controls .button {
  min-width: 112px;
}

.project-brief-result {
  padding-bottom: 34px;
}

.project-brief-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: none;
  gap: 28px;
  align-items: end;
}

.project-brief-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.project-brief-status {
  min-height: 20px;
  margin: -14px 0 20px;
  color: var(--brief-muted);
  font-size: 12px;
}

.project-brief-status[data-state="error"] {
  color: #a33c2f;
}

.project-brief-status[data-state="success"] {
  color: var(--brief-accent-dark);
}

.project-brief-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--brief-line);
  border-left: 1px solid var(--brief-line);
}

.project-brief-result-grid > section {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--brief-line);
  border-bottom: 1px solid var(--brief-line);
}

.project-brief-result-grid h3 {
  margin: 0 0 14px;
  color: var(--brief-ink);
  font-size: 14px;
}

.project-brief-result-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-brief-result-grid li {
  position: relative;
  padding-left: 14px;
  color: #4f5a54;
  font-size: 12px;
  line-height: 1.45;
}

.project-brief-result-grid li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brief-accent);
  content: "";
}

.project-brief-system-groups {
  display: grid;
  gap: 8px;
}

.project-brief-system-groups details {
  border-top: 1px solid #e0e5e1;
  padding-top: 8px;
}

.project-brief-system-groups details:first-child {
  border-top: 0;
  padding-top: 0;
}

.project-brief-system-groups summary {
  color: var(--brief-ink);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.project-brief-system-groups p {
  margin: 7px 0 0;
  color: var(--brief-muted);
  font-size: 11px;
  line-height: 1.45;
}

.project-brief-link-list {
  display: grid;
  gap: 8px;
}

.project-brief-link-list a {
  display: grid;
  gap: 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e9e6;
  color: var(--brief-ink);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.project-brief-link-list a::after {
  color: var(--brief-accent);
  font-size: 10px;
  font-weight: 650;
  content: "Открыть →";
}

.project-brief-handoff {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.7fr) auto;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
  padding: 20px;
  border-top: 1px solid var(--brief-line);
  border-bottom: 1px solid var(--brief-line);
  background: var(--brief-soft);
}

.project-brief-handoff header > span {
  color: var(--brief-accent-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-brief-handoff h3 {
  margin: 5px 0 7px;
  color: var(--brief-ink);
  font-size: 17px;
  line-height: 1.25;
}

.project-brief-handoff p {
  margin: 0;
  color: var(--brief-muted);
  font-size: 11px;
  line-height: 1.45;
}

.project-brief-handoff ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-brief-handoff li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 9px;
}

.project-brief-handoff li > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--brief-line);
  border-radius: 50%;
  color: var(--brief-accent-dark);
  font-size: 9px;
  font-weight: 800;
}

.project-brief-handoff li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brief-ink);
  font-size: 11px;
  line-height: 1.35;
}

.project-brief-handoff > .button {
  align-self: center;
  white-space: nowrap;
}

/* Kinetic theme: the configurator is one dark work surface, not a light embed. */
html[data-view-mode="kinetic"] .project-brief-shell {
  --brief-accent: #c9f54a;
  --brief-accent-dark: #d8ff67;
  --brief-ink: #f5f6ee;
  --brief-muted: #aeb3a5;
  --brief-line: #3a3d32;
  --brief-soft: #171814;
  color: var(--brief-ink);
  color-scheme: dark;
}

html[data-view-mode="kinetic"] .project-brief-heading {
  border-color: var(--brief-line);
}

html[data-view-mode="kinetic"] .project-brief-heading h1,
html[data-view-mode="kinetic"] .project-brief-step-head h2,
html[data-view-mode="kinetic"] .project-brief-choice-fieldset legend,
html[data-view-mode="kinetic"] .project-brief-result-grid h3,
html[data-view-mode="kinetic"] .project-brief-system-groups summary,
html[data-view-mode="kinetic"] .project-brief-direction-group h3,
html[data-view-mode="kinetic"] .project-brief-direction-card strong,
html[data-view-mode="kinetic"] .project-brief-handoff h3,
html[data-view-mode="kinetic"] .project-brief-handoff li strong {
  color: #f5f6ee;
}

html[data-view-mode="kinetic"] .project-brief-heading p,
html[data-view-mode="kinetic"] .project-brief-step-head p,
html[data-view-mode="kinetic"] .project-brief-choice-grid small,
html[data-view-mode="kinetic"] .project-brief-result-grid li,
html[data-view-mode="kinetic"] .project-brief-system-groups p,
html[data-view-mode="kinetic"] .project-brief-direction-group p,
html[data-view-mode="kinetic"] .project-brief-direction-card label small,
html[data-view-mode="kinetic"] .project-brief-direction-card li,
html[data-view-mode="kinetic"] .project-brief-handoff p,
html[data-view-mode="kinetic"] .project-brief-status {
  color: #aeb3a5;
}

html[data-view-mode="kinetic"] .project-brief-workspace {
  border-color: #414438;
  background: #12130f;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

html[data-view-mode="kinetic"] .project-brief-steps {
  border-color: #414438;
  background: #151611;
}

html[data-view-mode="kinetic"] .project-brief-steps button {
  color: #9ea395;
}

html[data-view-mode="kinetic"] .project-brief-steps button:hover,
html[data-view-mode="kinetic"] .project-brief-steps button:focus-visible {
  color: #f5f6ee;
  background: #20221b;
  outline: none;
}

html[data-view-mode="kinetic"] .project-brief-steps button.is-active {
  color: #f5f6ee;
  border-color: #c9f54a;
  background: #20221b;
}

html[data-view-mode="kinetic"] .project-brief-steps button span {
  color: #aeb3a5;
  border-color: #505447;
  background: #12130f;
}

html[data-view-mode="kinetic"] .project-brief-steps button.is-active span,
html[data-view-mode="kinetic"] .project-brief-steps button.is-complete span {
  color: #10110f;
  border-color: #c9f54a;
  background: #c9f54a;
}

html[data-view-mode="kinetic"] .project-brief-steps button small,
html[data-view-mode="kinetic"] .project-brief-progress {
  color: #8f9487;
}

html[data-view-mode="kinetic"] .project-brief-progress strong {
  color: #f5f6ee;
}

html[data-view-mode="kinetic"] .project-brief-progress i {
  background: #34372e;
}

html[data-view-mode="kinetic"] .project-brief-form {
  background: #12130f;
}

html[data-view-mode="kinetic"] .project-brief-form label,
html[data-view-mode="kinetic"] .project-brief-primary-task {
  color: #c7c9bc;
}

html[data-view-mode="kinetic"] .project-brief-form select,
html[data-view-mode="kinetic"] .project-brief-form textarea {
  color: #f5f6ee;
  border-color: #4a4e40;
  background: #1a1b17;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

html[data-view-mode="kinetic"] .project-brief-form select:hover,
html[data-view-mode="kinetic"] .project-brief-form textarea:hover {
  border-color: #656b56;
}

html[data-view-mode="kinetic"] .project-brief-form select:focus,
html[data-view-mode="kinetic"] .project-brief-form textarea:focus {
  border-color: #c9f54a;
  outline: 3px solid rgba(201,245,74,.14);
}

html[data-view-mode="kinetic"] .project-brief-form textarea::placeholder {
  color: #7f8477;
}

html[data-view-mode="kinetic"] .project-brief-choice-grid {
  border-color: #414438;
}

html[data-view-mode="kinetic"] .project-brief-choice-grid label {
  color: #c7c9bc;
  border-color: #414438;
  background: #171814;
}

html[data-view-mode="kinetic"] .project-brief-choice-grid label:hover {
  background: #20221b;
}

html[data-view-mode="kinetic"] .project-brief-choice-grid label:has(input:checked) {
  color: #f5f6ee;
  background: #252a1b;
  box-shadow: inset 3px 0 #c9f54a;
}

html[data-view-mode="kinetic"] .project-brief-direction-card {
  border-color: #414438;
  background: #171814;
}

html[data-view-mode="kinetic"] .project-brief-direction-card:has(input:checked) {
  background: #252a1b;
  box-shadow: inset 3px 0 #c9f54a;
}

html[data-view-mode="kinetic"] .project-brief-direction-card > label:hover {
  background: #20221b;
}

html[data-view-mode="kinetic"] .project-brief-direction-grid,
html[data-view-mode="kinetic"] .project-brief-direction-card details,
html[data-view-mode="kinetic"] .project-brief-direction-card summary::after {
  border-color: #414438;
}

html[data-view-mode="kinetic"] .project-brief-direction-card summary,
html[data-view-mode="kinetic"] .project-brief-handoff header > span,
html[data-view-mode="kinetic"] .project-brief-handoff li > span {
  color: #c9f54a;
}

html[data-view-mode="kinetic"] .project-brief-choice-grid strong {
  color: #f5f6ee;
}

html[data-view-mode="kinetic"] .project-brief-controls {
  border-color: #414438;
  background: #151611;
}

html[data-view-mode="kinetic"] .project-brief-controls p,
html[data-view-mode="kinetic"] .project-brief-status[data-state="error"] {
  color: #ff9aaa;
}

html[data-view-mode="kinetic"] .project-brief-status[data-state="success"] {
  color: #c9f54a;
}

html[data-view-mode="kinetic"] .project-brief-result-grid,
html[data-view-mode="kinetic"] .project-brief-result-grid > section,
html[data-view-mode="kinetic"] .project-brief-system-groups details,
html[data-view-mode="kinetic"] .project-brief-link-list a,
html[data-view-mode="kinetic"] .project-brief-handoff {
  border-color: #3a3d32;
}

html[data-view-mode="kinetic"] .project-brief-result-grid > section {
  background: #171814;
}

html[data-view-mode="kinetic"] .project-brief-link-list a {
  color: #f5f6ee;
}

html[data-view-mode="kinetic"] .project-brief-link-list a::after,
html[data-view-mode="kinetic"] .project-brief-direction-card summary {
  color: #c9f54a;
}

html[data-view-mode="kinetic"] .project-brief-handoff {
  background: #171814;
}

html[data-view-mode="kinetic"] .project-brief-controls .button:disabled {
  color: #73786c;
  border-color: #34372e;
  background: #171814;
  opacity: 1;
}

@media (max-width: 1120px) {
  .project-brief-workspace {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .project-brief-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-brief-handoff {
    grid-template-columns: 1fr;
  }

  .project-brief-handoff > .button {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .project-brief-shell {
    padding: 14px 14px 40px;
  }

  .project-brief-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .project-brief-heading .button {
    justify-self: start;
  }

  .project-brief-workspace {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .project-brief-steps {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--brief-line);
  }

  .project-brief-steps ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-brief-steps button {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 64px;
    padding: 9px 4px;
    border-left: 0;
    border-bottom: 3px solid transparent;
    text-align: center;
  }

  .project-brief-steps button.is-active {
    border-bottom-color: var(--brief-accent);
  }

  .project-brief-steps button span {
    grid-row: auto;
    width: 24px;
    height: 24px;
  }

  .project-brief-steps button small {
    display: none;
  }

  .project-brief-progress {
    display: none;
  }

  .project-brief-fields-two,
  .project-brief-choice-grid,
  .project-brief-direction-grid,
  .project-brief-result-grid {
    grid-template-columns: 1fr;
  }

  .project-brief-result-head,
  .project-brief-direction-group > header,
  .project-brief-handoff {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-brief-result-actions {
    justify-content: flex-start;
  }

  .project-brief-handoff ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .project-brief-heading h1 {
    font-size: 32px;
  }

  .project-brief-step {
    padding: 24px 16px;
  }

  .project-brief-controls {
    grid-template-columns: 1fr 1fr;
    padding: 12px 16px;
  }

  .project-brief-controls p {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
  }

  .project-brief-controls [data-brief-back] {
    grid-column: 1;
  }

  .project-brief-controls [data-brief-next] {
    grid-column: 2;
  }

  .project-brief-result-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-brief-progress b {
    transition: none;
  }
}
