/* Guided discovery shares the site's AppsTek orange and Lab0 green palette. */
.discovery-experience {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.dx-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  background: #f6f8f3;
  border-bottom: 1px solid var(--line);
}
.dx-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dx-top small,
.dx-disclaimer {
  color: var(--muted);
  font-size: 12px;
}
.dx-business-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #e6eee7;
  border-radius: 6px;
}
.dx-business-tabs button {
  padding: 9px 20px;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  color: var(--muted);
}
.dx-business-tabs [aria-selected="true"] {
  background: white;
  color: var(--green);
  box-shadow: 0 1px 3px #19352b15;
}
.dx-body {
  padding: 32px;
}
.dx-company {
  display: flex;
  gap: 16px;
  align-items: center;
}
.dx-company > span {
  width: 48px;
  height: 48px;
  background: var(--peach);
  color: var(--orange-text);
  border: 1px solid #efd2c1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 26px;
  flex-shrink: 0;
}
.dx-company h3 {
  font-size: 20px;
  margin: 0 0 3px;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.dx-company p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.dx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.dx-steps li {
  border-bottom: 2px solid #ecede7;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
.dx-steps li > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 10px;
  flex-shrink: 0;
}
.dx-steps .is-current {
  border-color: var(--orange);
  color: var(--orange-text);
}
.dx-steps .is-current > span {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.dx-steps .is-complete {
  color: var(--green);
  border-color: var(--green-border);
}
.dx-steps .is-complete > span {
  color: var(--green);
  border-color: var(--green-border);
  background: var(--green-light);
}
.dx-stage-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 26px;
  min-height: 42px;
}
.dx-stage-heading h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.dx-animation-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.dx-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 5px;
  padding: 10px 17px;
  font-size: 13px;
  font-weight: 500;
}
.dx-button:hover {
  border-color: var(--green);
  background: var(--green-light);
}
.dx-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #1c1f1d;
}
.dx-primary:hover {
  background: #e94b00;
  border-color: #e94b00;
  color: white;
}
.dx-context-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 28px;
}
.dx-sources {
  padding: 24px;
  background: #f5f7f1;
  border: 1px solid #e1e6dc;
  border-radius: 8px;
}
.dx-source-buttons {
  display: grid;
  gap: 8px;
}
.dx-source-buttons button {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}
.dx-source-buttons button > span:last-child {
  margin-left: auto;
}
.dx-source-buttons [aria-pressed="true"] {
  border-color: #9bbb9f;
  background: #edf4ec;
  color: var(--green);
}
.dx-sources blockquote {
  margin: 25px 0 14px;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}
.dx-sources small {
  color: var(--muted);
  font-size: 11px;
}
.dx-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.dx-field {
  min-height: 128px;
  border: 1px solid #e7e7e0;
  background: #fbfbf8;
  border-radius: 6px;
  padding: 16px;
}
.dx-field > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  gap: 8px;
  margin-bottom: 13px;
}
.dx-field > strong {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #73786f;
}
.dx-field.is-known {
  background: white;
  border-color: var(--green-border);
}
.dx-field.is-known > strong {
  color: var(--ink);
  font-weight: 500;
}
.dx-field button {
  background: none;
  border: 0;
  color: var(--green);
  font-size: 11px;
  padding: 0;
  margin-top: 10px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dx-field .erp-brand {
  gap: 7px;
  font-size: 14px;
  flex-wrap: wrap;
}
.dx-field .erp-logo {
  width: 52px;
  height: 18px;
}
.dx-scope {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
.dx-open-detail {
  margin-top: 18px;
  padding: 20px;
  background: var(--peach);
  border-left: 2px solid var(--orange);
  display: grid;
  gap: 15px;
}
.dx-open-detail h4 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 550;
}
.dx-open-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.dx-open-detail label {
  display: grid;
  gap: 7px;
  color: var(--orange-text);
  font-size: 12px;
}
.dx-open-detail select {
  padding: 11px 32px 11px 12px;
  font: inherit;
  font-size: 14px;
  background: white;
  border: 1px solid #ddbda9;
  border-radius: 4px;
  width: 100%;
  color: var(--ink);
}
.dx-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.dx-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.dx-footer > div {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.dx-disclaimer {
  padding: 15px 32px;
  background: #fafbf7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line);
}
.dx-disclaimer button {
  padding: 5px 12px;
}
.dx-studio {
  background: #f5f8f2;
  border: 1px solid var(--green-border);
  border-radius: 8px;
  overflow: hidden;
}
.dx-studio-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}
.dx-studio-head .dx-label {
  margin: 0;
}
.dx-studio-head strong {
  margin-left: auto;
  color: var(--green);
  white-space: nowrap;
}
.dx-studio-flow {
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr 32px 110px 32px 1.15fr;
  align-items: center;
}
.dx-layers {
  display: grid;
  gap: 10px;
}
.dx-layer {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fafbf7;
  opacity: 0.5;
}
.dx-layer.is-applied {
  opacity: 1;
  border-color: var(--green-border);
  background: white;
}
.dx-layer > span {
  color: var(--green);
  font-size: 11px;
}
.dx-layer b {
  font-size: 13px;
  font-weight: 500;
  display: block;
}
.dx-layer small {
  font-size: 11px;
  color: var(--muted);
  display: block;
}
.dx-connection {
  height: 1px;
  background: #b7cfc0;
  position: relative;
  overflow: hidden;
}
.dx-connection span {
  position: absolute;
  width: 14px;
  height: 3px;
  top: -1px;
  background: var(--orange);
  animation: dx-transmit 1.4s linear infinite;
}
.dx-agent {
  padding: 26px 8px;
  text-align: center;
  background: var(--green);
  color: white;
  border-radius: 8px;
  position: relative;
}
.dx-agent .lab0 {
  display: block;
  font-size: 28px;
  color: white;
}
.dx-agent > span:last-of-type {
  font-size: 10px;
  display: block;
  margin-top: 8px;
}
.dx-agent i {
  position: absolute;
  inset: -6px;
  border: 1px solid var(--green-border);
  border-radius: 12px;
  animation: dx-pulse 1.8s ease-in-out infinite;
}
.dx-question-evolution {
  min-height: 265px;
  background: white;
  border: 1px solid var(--green-border);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: dx-arrive 0.5s both;
}
.dx-question-evolution p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.dx-question-evolution small {
  color: var(--green);
  font-size: 12px;
}
.dx-build-progress {
  height: 3px;
  background: #d9e4db;
}
.dx-build-progress span {
  display: block;
  height: 100%;
  background: var(--orange);
  transition: width 0.4s;
}
.dx-pack-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}
.dx-pack-heading h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.025em;
}
.dx-draft {
  font-size: 11px;
  background: var(--green-light);
  color: var(--green);
  padding: 7px 10px;
  border-radius: 4px;
}
.dx-categories {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.dx-categories button {
  padding: 14px 0;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dx-categories button span {
  font-size: 10px;
  background: #f0f1eb;
  padding: 0 6px;
  border-radius: 4px;
}
.dx-categories [aria-selected="true"] {
  color: var(--orange-text);
  border-bottom-color: var(--orange);
}
.dx-question {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.dx-question:last-child {
  border: 0;
  padding-bottom: 0;
}
.dx-question .dx-label span {
  color: var(--green);
  margin-right: 10px;
}
.dx-question h4 {
  margin: 0 0 15px;
  max-width: 850px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.dx-question summary {
  color: var(--green);
  font-size: 13px;
  cursor: pointer;
  width: fit-content;
}
.dx-question details p {
  font-size: 14px;
  max-width: 760px;
  color: var(--muted);
  margin: 14px 0;
}
.dx-question details small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  border-left: 2px solid var(--green-border);
  padding-left: 12px;
}
.dx-output {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 50px;
  background: #f5f7f1;
  padding: 32px;
  border-radius: 8px;
}
.dx-output-copy h4 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 15px 0 20px;
}
.dx-output-copy p {
  font-size: 14px;
  color: var(--muted);
}
.dx-record {
  background: white;
  padding: 28px;
  border: 1px solid var(--green-border);
  border-top: 3px solid var(--green);
}
.dx-record h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 12px;
}
.dx-record > p {
  font-size: 14px;
}
.dx-record dl {
  margin: 24px 0 0;
}
.dx-record dl > div {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.dx-record dt {
  font-size: 11px;
  color: var(--muted);
}
.dx-record dd {
  margin: 3px 0 0;
  font-size: 13px;
}
.discovery-reference {
  margin-top: 26px;
}
.discovery-reference > summary {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--green);
  cursor: pointer;
}
.discovery-reference[open] > summary {
  margin-bottom: 24px;
}
.dx-paused .dx-connection span,
.dx-paused .dx-agent i {
  animation-play-state: paused !important;
}
@keyframes dx-arrive {
  from {
    opacity: 0.35;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dx-transmit {
  from {
    transform: translateX(-14px);
  }
  to {
    transform: translateX(46px);
  }
}
@keyframes dx-pulse {
  50% {
    opacity: 0.25;
    transform: scale(1.04);
  }
}
@media (max-width: 1000px) {
  .dx-body,
  .dx-top {
    padding: 24px;
  }
  .dx-context-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 18px;
  }
  .dx-studio-flow {
    grid-template-columns: 1fr 20px 85px 20px 1fr;
    padding: 24px 18px;
  }
  .dx-question-evolution {
    padding: 18px;
  }
  .dx-question-evolution p {
    font-size: 16px;
  }
  .dx-categories {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .dx-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .dx-body,
  .dx-top,
  .dx-disclaimer {
    padding: 20px;
  }
  .dx-context-layout,
  .dx-output {
    grid-template-columns: 1fr;
  }
  .dx-steps {
    gap: 10px;
    margin-block: 25px;
  }
  .dx-steps li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    line-height: 1.5;
  }
  .dx-stage-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .dx-fields {
    gap: 8px;
  }
  .dx-field {
    padding: 12px;
  }
  .dx-field > strong {
    font-size: 14px;
  }
  .dx-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .dx-footer > div {
    flex-wrap: wrap;
  }
  .dx-pack-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .dx-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
  .dx-categories button {
    text-align: left;
    font-size: 12px;
  }
  .dx-question h4 {
    font-size: 18px;
  }
  .dx-studio-head {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
  }
  .dx-studio-head strong {
    margin-left: 0;
    width: 100%;
  }
  .dx-studio-flow {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .dx-layers {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .dx-layer {
    padding: 10px;
    align-items: flex-start;
  }
  .dx-layer b {
    font-size: 11px;
  }
  .dx-layer small {
    font-size: 10px;
  }
  .dx-connection {
    width: 1px;
    height: 22px;
    justify-self: center;
  }
  .dx-connection span {
    width: 3px;
    height: 10px;
    left: -1px;
    top: 0;
    animation: dx-transmit-y 1.4s linear infinite;
  }
  .dx-agent {
    width: 140px;
    justify-self: center;
    padding: 12px;
  }
  .dx-question-evolution {
    min-height: 190px;
  }
  .dx-disclaimer {
    font-size: 10px;
  }
  .dx-output {
    padding: 20px;
    gap: 20px;
  }
  .dx-record {
    padding: 20px;
  }
}
@keyframes dx-transmit-y {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(30px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .discovery-experience *,
  .discovery-experience *::before {
    animation: none !important;
    transition: none !important;
  }
}
/* Business-first discovery: baseline, evidence and reviewed requirements. */
.dx-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dx-baseline {
  margin-top: 26px;
  border: 1px solid var(--green-border);
  padding: 24px;
  background: #f4f8f1;
  border-radius: 7px;
}
.dx-baseline h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.dx-baseline p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.dx-baseline-flow {
  display: flex;
  gap: 10px;
  margin: 22px 0 14px;
}
.dx-baseline-flow span {
  flex: 1;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--green-border);
  border-radius: 4px;
  color: var(--green);
  font-size: 12px;
}
.dx-baseline small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.dx-baseline a,
.dx-source-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dx-fit-key {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--green-border);
  color: var(--muted);
  font-size: 12px;
}
.dx-fit-key span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 7px;
}
.dx-fit-key span:nth-child(2)::before {
  background: #928a63;
}
.dx-fit-key span:nth-child(3)::before {
  background: var(--orange);
}
.dx-pack-context {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  padding: 18px 0;
  margin-bottom: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dx-pack-context > span {
  color: var(--muted);
  font-size: 10px;
  display: grid;
  gap: 4px;
}
.dx-pack-context b {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.dx-source-link {
  display: inline-block;
  font-size: 12px;
  margin-top: 12px;
}
.dx-question .dx-review-status {
  border: 0;
  padding: 0;
  margin-top: 12px;
  font-size: 11px;
}
.dx-evidence-trail {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.dx-evidence-trail span {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.dx-evidence-trail span:not(:last-child)::after {
  content: "→";
  margin-left: 10px;
  color: var(--green);
}
.dx-evidence-trail .is-active {
  color: var(--orange-text);
}
.dx-output-copy blockquote {
  margin: 20px 0;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
  font-size: 17px;
  line-height: 1.7;
}
.dx-evidence-detail summary {
  cursor: pointer;
  color: var(--green);
  font-size: 13px;
}
.dx-review-action {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.dx-review-action p {
  font-size: 12px;
  color: var(--muted);
}
.dx-ledger-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.dx-ledger-intro h4 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.dx-ledger-intro p {
  margin: 8px 0 20px;
  font-size: 14px;
  color: var(--muted);
}
.dx-ledger-scroll {
  overflow-x: auto;
  border: 1px solid var(--green-border);
  border-radius: 6px;
}
.dx-ledger {
  border-collapse: collapse;
  width: 100%;
  min-width: 660px;
  text-align: left;
  font-size: 13px;
}
.dx-ledger caption {
  padding: 12px 18px;
  text-align: left;
  color: var(--green);
  font-size: 11px;
  background: var(--green-light);
}
.dx-ledger th {
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: #fafbf7;
  border-bottom: 1px solid var(--green-border);
}
.dx-ledger td {
  vertical-align: top;
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
}
.dx-ledger td:first-child {
  width: 43%;
}
.dx-ledger td b {
  font-weight: 550;
}
.dx-ledger td p {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0;
}
.dx-ledger td a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.dx-ledger td small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.dx-accepted,
.dx-pending {
  font-size: 10px;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--green-light);
  color: var(--green);
}
.dx-pending {
  background: var(--peach);
  color: var(--orange-text);
}
.dx-additional-source {
  margin-top: 25px;
  border-left: 2px solid var(--orange);
  background: #fff8f0;
  padding: 22px;
}
.dx-additional-source h4,
.dx-document-output h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
}
.dx-additional-source p,
.dx-document-output p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.dx-policy-review {
  border-top: 1px solid #efd6c1;
  margin-top: 20px;
  padding-top: 20px;
}
.dx-policy-review blockquote {
  margin: 12px 0 18px;
  font-size: 16px;
  max-width: 760px;
}
.dx-document-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 0;
}
.dx-document-output > div {
  max-width: 630px;
}
.dx-document-output button {
  flex-shrink: 0;
}
.dx-offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.dx-offering-grid article {
  padding-top: 25px;
  border-top: 1px solid var(--green-border);
}
.dx-offering-grid article > span {
  color: var(--green);
  font-size: 11px;
}
.dx-offering-grid h3 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 24px 0 16px;
}
.dx-offering-grid p {
  font-size: 15px;
  color: var(--muted);
}
.dx-offering-grid b {
  font-weight: 500;
  color: var(--green);
  font-size: 12px;
}
.dx-availability {
  margin-top: 65px;
  padding: 30px;
  background: var(--green-light);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.dx-availability h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.dx-availability p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.dx-availability dl {
  margin: 0;
}
.dx-availability dl > div {
  border-bottom: 1px solid var(--green-border);
  padding: 0 0 14px;
  margin-bottom: 14px;
}
.dx-availability dl > div:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}
.dx-availability dt {
  color: var(--green);
  font-size: 12px;
  font-weight: 550;
}
.dx-availability dd {
  margin: 5px 0 0;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 700px) {
  .dx-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .dx-steps li {
    font-size: 10px;
  }
  .dx-baseline-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .dx-fit-key {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .dx-ledger-intro,
  .dx-document-output {
    flex-direction: column;
    align-items: flex-start;
  }
  .dx-ledger-intro .dx-draft {
    margin-bottom: 20px;
  }
  .dx-offering-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dx-availability {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.dx-company {
  scroll-margin-top: 115px;
}
.dx-stage-heading h3:focus {
  outline: none;
}

.dx-table-hint {
  display: none;
}
@media (max-width: 700px) {
  .dx-table-hint {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin: 0 0 10px;
  }
}

.dx-field.is-current-field {
  animation: dx-arrive 0.45s both;
  border-color: var(--orange);
}
.dx-sources blockquote {
  position: relative;
  overflow: hidden;
}
.dx-sources.is-scanning blockquote::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--orange);
  opacity: 0.5;
  animation: dx-scan 1.7s ease-in-out infinite;
}
.dx-paused .dx-sources blockquote::after {
  animation-play-state: paused;
}
@keyframes dx-scan {
  from {
    top: 0;
  }
  to {
    top: 100%;
  }
}
