.dbh {
  --purple: #7c3aed;
  --purple-dark: #6422ca;
  --purple-bright: #9333ea;
  --purple-soft: #ede9fe;
  --purple-wash: #f7f3ff;
  --ink: #1e1b2e;
  --ink-soft: #544d67;
  --muted: #746d82;
  --line: #e4dfee;
  --paper: #fff;
  --red: #b42338;
  --red-soft: #fff0f1;
  --shadow-sm: 0 4px 14px rgba(51, 31, 83, .08);
  --shadow-md: 0 18px 50px rgba(51, 31, 83, .12);
  --shadow-purple: 0 18px 45px rgba(124, 58, 237, .24);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

.dbh *,
.dbh *::before,
.dbh *::after {
  box-sizing: border-box;
}

.dbh [hidden] {
  display: none !important;
}

.dbh a {
  text-decoration: none;
}

.dbh button,
.dbh input {
  font: inherit;
}

.dbh h2,
.dbh h3,
.dbh h4,
.prose .dbh h2,
.prose .dbh h3,
.prose .dbh h4 {
  color: inherit;
  font-family: "Oleo Script", Georgia, serif;
  font-weight: 700;
}

.dbh-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
  align-items: center;
  gap: 58px;
  margin: 0 -1rem 72px;
  padding: 52px 48px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 202, 111, .22), transparent 25%),
    radial-gradient(circle at 88% 25%, rgba(168, 112, 255, .19), transparent 28%),
    linear-gradient(145deg, #fffdfb 0%, #f7f1ff 70%, #f1eaff 100%);
}

.dbh-intro::after {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(124, 58, 237, .09);
  border-radius: 50%;
  content: "";
}

.dbh-intro__copy,
.dbh-example {
  position: relative;
  z-index: 1;
}

.dbh-eyebrow,
.prose .dbh-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dbh-eyebrow > span {
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.dbh-eyebrow--light,
.prose .dbh-eyebrow--light {
  color: #d8c6ff;
}

.dbh-intro h2,
.prose .dbh-intro h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 64px);
  line-height: 1;
  letter-spacing: -.025em;
}

.dbh-intro__lead,
.prose .dbh-intro__lead {
  max-width: 610px;
  margin: 21px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.dbh-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 25px;
  margin: 25px 0 29px;
  color: var(--muted);
  font-size: 13px;
}

.dbh-facts span {
  position: relative;
}

.dbh-facts span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b7adca;
  content: "";
}

.dbh-facts strong {
  color: var(--ink);
}

.dbh-button,
.prose .dbh-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.dbh-button:focus-visible,
.dbh-choice:has(input:focus-visible) {
  outline: 3px solid rgba(124, 58, 237, .32);
  outline-offset: 3px;
}

.dbh-button--primary,
.prose .dbh-button--primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  box-shadow: 0 8px 24px rgba(124, 58, 237, .24);
  color: #fff;
}

.dbh-button--secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
}

.dbh-example {
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 30px;
  background: linear-gradient(145deg, #2a154c, #6d28d9 65%, #8b39e5);
  box-shadow: var(--shadow-purple);
  color: #fff;
  transform: rotate(1deg);
}

.dbh-example__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 29px;
}

.dbh-example__label {
  font-family: "Oleo Script", Georgia, serif;
  font-size: 20px;
}

.dbh-example__status {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: rgba(255, 255, 255, .8);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dbh-example__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 17px;
  background: rgba(255, 255, 255, .12);
  font-size: 23px;
}

.dbh-example__kicker,
.prose .dbh-example__kicker {
  margin: 19px 0 3px;
  color: #d8c6ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dbh-example h3,
.prose .dbh-example h3 {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.18;
}

.dbh-example > p:last-of-type,
.prose .dbh-example > p:last-of-type {
  margin: 7px 0 20px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.dbh-example__line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 18px 8px 0;
}

.dbh-example__line::before {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  content: "";
}

.dbh-example__line span {
  position: relative;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: #6529be;
}

.dbh-example__line span:first-child,
.dbh-example__line span:nth-child(2) {
  border-color: #ffd58d;
  background: #ffd58d;
}

.dbh-example__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 720;
}

.dbh-helper {
  scroll-margin-top: 110px;
}

.dbh-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.dbh-heading h2,
.prose .dbh-heading h2,
.dbh-note h2,
.prose .dbh-note h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.07;
}

.dbh-heading > p,
.prose .dbh-heading > p {
  max-width: 300px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.dbh-heading--single {
  display: block;
  max-width: 700px;
}

.dbh-heading--single > .dbh-eyebrow,
.prose .dbh-heading--single > .dbh-eyebrow {
  max-width: none;
  margin: 0 0 12px;
  text-align: left;
}

.dbh-heading--single > p:last-child,
.prose .dbh-heading--single > p:last-child {
  max-width: 620px;
  margin: 15px 0 0;
  text-align: left;
}

.dbh-progress {
  margin-bottom: 20px;
}

.dbh-progress__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.dbh-progress__track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #eee9f4;
}

.dbh-progress__track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  transition: width .32s ease;
}

.dbh-progress__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.dbh-progress__steps li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9b94a8;
  font-size: 11px;
  font-weight: 750;
}

.dbh-progress__steps li:not(:first-child) {
  justify-content: center;
}

.dbh-progress__steps li:last-child {
  justify-content: flex-end;
}

.dbh-progress__steps span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #d9d2e3;
  border-radius: 50%;
  font-size: 10px;
}

.dbh-progress__steps .is-current,
.dbh-progress__steps .is-done {
  color: var(--purple);
}

.dbh-progress__steps .is-current span {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

.dbh-progress__steps .is-done span {
  border-color: var(--purple-soft);
  background: var(--purple-soft);
}

.dbh-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.dbh-question {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  animation: dbh-step-in .28s ease both;
}

@keyframes dbh-step-in {
  from { transform: translateY(9px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.dbh-question legend {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--ink);
  font-family: "Oleo Script", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 35px);
  font-weight: 700;
  line-height: 1.15;
}

.dbh-question__number {
  flex: 0 0 auto;
  color: var(--purple);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.dbh-question__help,
.prose .dbh-question__help {
  margin: 8px 0 23px 38px;
  color: var(--muted);
  font-size: 14px;
}

.dbh-choices {
  display: grid;
  gap: 12px;
}

.dbh-choices--two {
  grid-template-columns: repeat(2, 1fr);
}

.dbh-choices--three {
  grid-template-columns: repeat(3, 1fr);
}

.dbh-choices--four {
  grid-template-columns: repeat(4, 1fr);
}

.dbh-choice {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border .17s ease, transform .17s ease, box-shadow .17s ease, background .17s ease;
}

.dbh-choice:hover {
  transform: translateY(-2px);
  border-color: #c9b6ef;
  box-shadow: var(--shadow-sm);
}

.dbh-choice:has(input:checked) {
  border-color: var(--purple);
  background: var(--purple-wash);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, .08);
}

.dbh-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.dbh-choice__mark,
.dbh-choice__radio {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 19px;
  height: 19px;
  border: 1.5px solid #c9c1d5;
  background: #fff;
}

.dbh-choice__mark {
  border-radius: 6px;
}

.dbh-choice__radio {
  border-radius: 50%;
}

.dbh-choice:has(input:checked) .dbh-choice__mark,
.dbh-choice:has(input:checked) .dbh-choice__radio {
  border-color: var(--purple);
  background: var(--purple);
}

.dbh-choice:has(input:checked) .dbh-choice__mark::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.dbh-choice:has(input:checked) .dbh-choice__radio::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.dbh-choice__icon,
.dbh-method {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: "Oleo Script", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.dbh-choice__icon--oat { background: #f7ecdb; color: #8a5a1f; }
.dbh-choice__icon--pumpkin { background: #fff0d8; color: #b05b00; }
.dbh-choice__icon--dairy { background: #eaf4ff; color: #23639c; }
.dbh-choice__icon--meat { background: #fff0f1; color: #b42338; }
.dbh-method { background: #f3edff; color: var(--purple); }

.dbh-choice__copy {
  display: flex;
  flex-direction: column;
  padding-right: 21px;
}

.dbh-choice__copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.dbh-choice__copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.dbh-choice--stacked {
  min-height: 162px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 19px;
}

.dbh-choice--stacked .dbh-choice__copy {
  padding: 0;
}

.dbh-choice--compact {
  min-height: 104px;
  align-items: flex-end;
}

.dbh-error,
.prose .dbh-error {
  margin: 15px 0 0;
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.dbh-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 29px;
  padding-top: 21px;
  border-top: 1px solid #eeeaf3;
}

.dbh-actions .dbh-button--primary {
  min-width: 210px;
}

.dbh-result {
  scroll-margin-top: 110px;
  padding: 36px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 91% 4%, rgba(255, 255, 255, .11), transparent 22%),
    linear-gradient(145deg, #24133e 0%, #5420a2 58%, #7228cd 100%);
  box-shadow: var(--shadow-purple);
  color: #fff;
  animation: dbh-result-in .4s ease both;
}

@keyframes dbh-result-in {
  from { transform: translateY(15px) scale(.985); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.dbh-result__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.dbh-result__header h2,
.prose .dbh-result__header h2 {
  margin: 0;
  color: #fff;
  font-size: 41px;
  line-height: 1;
}

.dbh-result__badge {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: rgba(255, 255, 255, .8);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.dbh-result__hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 27px 0 20px;
}

.dbh-result__symbol {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 19px;
  background: rgba(255, 255, 255, .1);
  font-size: 27px;
}

.dbh-result__kicker,
.prose .dbh-result__kicker {
  margin: 0 0 3px;
  color: #d6c1ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.dbh-result__hero h3,
.prose .dbh-result__hero h3 {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 25px;
  line-height: 1.2;
}

.dbh-result__hero p:last-child,
.prose .dbh-result__hero p:last-child {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
}

.dbh-result__window {
  min-width: 155px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 15px;
  background: rgba(255, 255, 255, .08);
}

.dbh-result__window span,
.dbh-result__window strong {
  display: block;
}

.dbh-result__window span {
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dbh-result__window strong {
  margin-top: 3px;
  color: #fff;
  font-size: 15px;
}

.dbh-result__reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 25px;
}

.dbh-result__reasons span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 720;
}

.dbh-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 18px;
  padding: 0;
  list-style: none !important;
  counter-reset: dbh-plan;
}

.dbh-plan li {
  position: relative;
  display: block;
  padding: 14px 12px 14px 37px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 750;
  list-style: none !important;
  counter-increment: dbh-plan;
}

.dbh-plan li::marker {
  content: "";
}

.dbh-plan li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  content: counter(dbh-plan);
  font-size: 10px;
}

.dbh-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dbh-result-card {
  min-height: 165px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}

.dbh-result-card--warning {
  background: rgba(255, 219, 153, .12);
}

.dbh-result-card > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .11);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.dbh-result-card--warning > span {
  width: auto;
  min-width: 28px;
  display: inline-grid;
  padding: 0 10px;
  border-color: rgba(255, 225, 166, .3);
  border-radius: 999px;
  background: rgba(255, 225, 166, .14);
  color: #ffe1a6;
}

.dbh-result-card h4,
.prose .dbh-result-card h4 {
  margin: 12px 0 6px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}

.dbh-result-card p,
.prose .dbh-result-card p {
  margin: 0;
  color: rgba(255, 255, 255, .69);
  font-size: 11px;
  line-height: 1.52;
}

.dbh-storage-advice {
  display: grid;
  gap: 9px;
  margin: 0;
}

.dbh-storage-advice > div {
  display: grid;
  gap: 2px;
}

.dbh-storage-advice dt,
.dbh-storage-advice dd {
  margin: 0;
}

.dbh-storage-advice dt {
  color: #d8c6ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dbh-storage-advice dd {
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.45;
}

.dbh-result__note {
  margin-top: 15px;
  padding: 12px 14px;
  border-left: 3px solid #e0cfff;
  border-radius: 0 9px 9px 0;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

.dbh-result__note strong {
  color: #fff;
}

.dbh-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 21px;
}

.dbh-button--light {
  background: #fff;
  color: var(--purple-dark);
}

.dbh-button--outline {
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: #fff;
}

.dbh-explain {
  margin: 76px -1rem 0;
  padding: 55px 48px;
  border-radius: 26px;
  background: var(--purple-wash);
}

.dbh-factors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 37px;
}

.dbh-factors article {
  min-height: 195px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.dbh-factors article > span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.dbh-factors h3,
.prose .dbh-factors h3 {
  margin: 29px 0 7px;
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
}

.dbh-factors p,
.prose .dbh-factors p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.dbh-note {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  margin-top: 64px;
  padding: 42px;
  border-radius: 25px;
  background: linear-gradient(145deg, #251540, #5721a3);
  box-shadow: var(--shadow-purple);
  color: #fff;
}

.dbh-note h2,
.prose .dbh-note h2 {
  color: #fff;
}

.dbh-note p:last-child,
.prose .dbh-note p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.dbh-note ul {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dbh-note li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 10px 0;
  border-left: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 700;
}

.dbh-note li span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  color: #d9c8ff;
  font-size: 10px;
}

.dbh-links {
  margin-top: 64px;
}

.dbh-links h2,
.prose .dbh-links h2 {
  margin-bottom: 21px;
  font-size: 31px;
}

.dbh-links > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.dbh-links > div > a,
.prose .dbh-links > div > a {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.dbh-links > div > a:hover {
  border-color: #c9b6ef;
}

.dbh-links a strong {
  font-size: 14px;
}

.dbh-links a span {
  margin-top: 6px;
  color: var(--purple);
  font-size: 11px;
}

.dbh-links > p,
.prose .dbh-links > p {
  margin: 24px 0 0;
}

.dbh-links > p a,
.prose .dbh-links > p a {
  color: var(--purple);
}

@media (max-width: 900px) {
  .dbh-intro {
    grid-template-columns: 1fr;
  }

  .dbh-example {
    max-width: 540px;
    transform: none;
  }

  .dbh-choices--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .dbh-factors {
    grid-template-columns: repeat(2, 1fr);
  }

  .dbh-note {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 680px) {
  .dbh {
    font-size: 15px;
  }

  .dbh-intro {
    margin: 0 -8px 57px;
    padding: 32px 20px;
    border-radius: 22px;
  }

  .dbh-intro h2,
  .prose .dbh-intro h2 {
    font-size: 43px;
  }

  .dbh-intro__lead,
  .prose .dbh-intro__lead {
    font-size: 16px;
  }

  .dbh-intro .dbh-button {
    width: 100%;
  }

  .dbh-example {
    padding: 21px;
    border-radius: 23px;
  }

  .dbh-heading {
    display: block;
    margin-bottom: 27px;
  }

  .dbh-heading > p,
  .prose .dbh-heading > p {
    margin-top: 11px;
    text-align: left;
  }

  .dbh-heading h2,
  .prose .dbh-heading h2,
  .dbh-note h2,
  .prose .dbh-note h2 {
    font-size: 35px;
  }

  .dbh-progress__steps li {
    flex-direction: column;
    justify-content: flex-start !important;
    gap: 3px;
    font-size: 9px;
  }

  .dbh-form,
  .dbh-result {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .dbh-question legend {
    align-items: flex-start;
    font-size: 27px;
  }

  .dbh-question__number {
    margin-top: 7px;
  }

  .dbh-question__help,
  .prose .dbh-question__help {
    margin-left: 0;
  }

  .dbh-choices--two,
  .dbh-choices--three,
  .dbh-choices--four {
    grid-template-columns: 1fr;
  }

  .dbh-choice--stacked {
    min-height: 108px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: start;
  }

  .dbh-choice--compact {
    min-height: 84px;
  }

  .dbh-actions {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
  }

  .dbh-actions .dbh-button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }

  .dbh-actions .dbh-button--primary:only-child {
    grid-column: 1 / -1;
  }

  .dbh-result__header,
  .dbh-result__hero {
    display: block;
  }

  .dbh-result__badge {
    display: inline-block;
    margin-top: 15px;
  }

  .dbh-result__hero {
    padding-top: 22px;
  }

  .dbh-result__symbol {
    margin-bottom: 15px;
  }

  .dbh-result__window {
    margin-top: 15px;
  }

  .dbh-plan,
  .dbh-result-grid {
    grid-template-columns: 1fr;
  }

  .dbh-result-card {
    min-height: 0;
  }

  .dbh-result__actions {
    display: grid;
  }

  .dbh-explain {
    margin: 57px -8px 0;
    padding: 39px 20px;
    border-radius: 21px;
  }

  .dbh-factors {
    grid-template-columns: 1fr;
  }

  .dbh-factors article {
    min-height: 0;
  }

  .dbh-factors h3,
  .prose .dbh-factors h3 {
    margin-top: 21px;
  }

  .dbh-note {
    margin-top: 49px;
    padding: 27px 20px;
    border-radius: 21px;
  }

  .dbh-links > div {
    grid-template-columns: 1fr;
  }
}

@media print {
  .dbh-intro,
  .dbh-heading,
  .dbh-progress,
  .dbh-form,
  .dbh-explain,
  .dbh-note,
  .dbh-links,
  .dbh-result__actions {
    display: none !important;
  }

  .dbh-result {
    display: block !important;
    padding: 20px;
    background: #fff !important;
    box-shadow: none;
    color: #000;
  }

  .dbh-result * {
    color: #000 !important;
  }

  .dbh-result-card,
  .dbh-result__window,
  .dbh-result__note,
  .dbh-result__reasons span {
    border: 1px solid #ccc;
    background: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbh *,
  .dbh *::before,
  .dbh *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
