:root {
  --choose-paper: #f5f0e7;
  --choose-ink: #171920;
  --choose-a: #a94740;
  --choose-b: #1d3866;
  --choose-light: #fffdf8;
  --choose-progress-on: #1d3866;
  --choose-progress-off: #b7ad9e;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

.choose-document,
.choose-body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

.choose-body {
  display: grid;
  place-items: center;
  background: #111620;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.choose-app {
  position: relative;
  display: grid;
  grid-template-rows: 11fr 20fr 34.5fr 34.5fr;
  width: min(100%, 430px);
  height: 100dvh;
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  overflow: hidden;
  isolation: isolate;
  background: var(--choose-b);
  border-inline: 1px solid rgb(255 255 255 / 8%);
  box-shadow: 0 0 70px rgb(0 0 0 / 42%);
}

.choose-app::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: env(safe-area-inset-top, 0px);
  background: var(--choose-paper);
  content: "";
}

.choose-logo,
.choose-question-wrap {
  min-height: 0;
  background:
    radial-gradient(circle at 50% -35%, rgb(255 255 255 / 92%), transparent 64%),
    var(--choose-paper);
}

.choose-logo {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgb(31 28 24 / 8%);
}

.choose-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(148px, 47vw, 186px);
  height: auto;
  transform: translate(-50%, -51%);
  filter: contrast(1.08);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.choose-question-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  place-items: stretch center;
  gap: clamp(5px, 0.9dvh, 9px);
  padding: clamp(8px, 1.7dvh, 16px) clamp(22px, 8vw, 42px)
    clamp(14px, 2.3dvh, 24px);
  text-align: center;
  border-bottom: 1px solid rgb(31 28 24 / 10%);
  box-shadow: 0 10px 26px rgb(28 22 18 / 12%);
}

.choose-journey {
  --journey-percent: 0%;
  --journey-accent: #2a56a6;
  --journey-accent-deep: #14284d;
  /* Adjustable geometry — the track reserves real height for every layer
     (comet, rail, milestone labels) so the bar never overlaps the question. */
  --journey-bar-height: 9px;
  --journey-bar-y: 9px;          /* vertical centre of the rail within the track */
  --journey-label-gap: 9px;      /* space between the rail and the number labels */
  --journey-label-size: 10px;    /* label glyph height */
  --journey-gap: clamp(4px, 0.8dvh, 8px);   /* space between count row and track */
  display: grid;
  gap: var(--journey-gap);
  width: min(100%, 350px);
  justify-self: center;
}

.choose-journey-meta {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

.choose-journey-count {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.choose-journey-answered {
  font-size: 17px;
  font-weight: 830;
  color: var(--choose-progress-on);
}

.choose-journey-goal {
  font-size: 12px;
  font-weight: 760;
  color: rgb(29 56 102 / 45%);
}

.choose-journey-hint {
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(29 56 102 / 52%);
  transition: color 220ms ease;
}

.choose-journey-track {
  position: relative;
  height: calc(
    var(--journey-bar-y) + var(--journey-label-gap)
      + var(--journey-label-size) + 3px
  );
  margin-inline: 8px;
}

.choose-journey-rail {
  position: absolute;
  top: var(--journey-bar-y);
  right: 0;
  left: 0;
  height: var(--journey-bar-height);
  background: linear-gradient(180deg, #cabfad, #ddd4c5);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 2px rgb(58 47 33 / 22%),
    0 1px 0 rgb(255 255 255 / 55%);
  transform: translateY(-50%);
}

.choose-journey-fill {
  position: absolute;
  top: var(--journey-bar-y);
  left: 0;
  z-index: 1;
  width: max(var(--journey-bar-height), var(--journey-percent));
  height: var(--journey-bar-height);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--journey-accent) 82%, white),
    var(--journey-accent) 46%,
    var(--journey-accent-deep)
  );
  border-radius: 999px;
  box-shadow:
    0 1px 4px rgb(20 40 77 / 45%),
    inset 0 1px 0 rgb(255 255 255 / 40%);
  transform: translateY(-50%);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.choose-journey-comet {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 15px;
  height: 15px;
  background: radial-gradient(
    circle,
    #fff 0%,
    color-mix(in srgb, var(--journey-accent) 70%, white) 42%,
    var(--journey-accent) 72%
  );
  border: 2px solid var(--choose-paper);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgb(29 56 102 / 30%),
    0 2px 6px rgb(20 40 77 / 45%),
    0 0 12px rgb(42 86 166 / 55%);
  transform: translateY(-50%);
}

.choose-milestone {
  position: absolute;
  z-index: 2;
  top: var(--journey-bar-y);
  left: var(--milestone-position);
  display: grid;
  justify-items: center;
  color: var(--choose-progress-off);
  transform: translate(-50%, -50%);
}

.choose-milestone-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #e7ddcd;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1.5px rgb(120 108 88 / 55%),
    0 1px 1px rgb(58 47 33 / 20%);
  transition: transform 260ms ease, background 240ms ease, box-shadow 240ms ease;
}

.choose-milestone-label {
  position: absolute;
  top: calc(var(--journey-label-gap) + 3px);
  font-size: 9.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(120 108 88 / 80%);
  transition: color 240ms ease;
}

.choose-milestone.is-reached .choose-milestone-dot {
  background: radial-gradient(circle at 35% 30%, #fff, transparent 60%),
    var(--choose-progress-on);
  box-shadow:
    0 0 0 2px var(--choose-paper),
    0 0 0 3px var(--choose-progress-on),
    0 1px 3px rgb(20 40 77 / 40%);
}

.choose-milestone.is-reached .choose-milestone-label {
  color: var(--choose-progress-on);
}

.choose-milestone.is-next .choose-milestone-dot {
  background: var(--choose-paper);
  box-shadow:
    0 0 0 2px var(--choose-paper),
    0 0 0 3.5px var(--journey-accent);
  animation: choose-milestone-pulse 1.8s ease-in-out infinite;
}

.choose-milestone.is-next .choose-milestone-label {
  color: var(--journey-accent);
}

@keyframes choose-milestone-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 2px var(--choose-paper),
      0 0 0 3.5px var(--journey-accent),
      0 0 0 3.5px rgb(42 86 166 / 40%);
  }
  50% {
    transform: scale(1.18);
    box-shadow:
      0 0 0 2px var(--choose-paper),
      0 0 0 3.5px var(--journey-accent),
      0 0 8px 5px rgb(42 86 166 / 0%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .choose-milestone.is-next .choose-milestone-dot {
    animation: none;
  }
}

.choose-question-wrap h1 {
  width: 100%;
  max-width: 360px;
  margin: 0;
  color: var(--choose-ink);
  font-size: clamp(21px, min(6.1vw, 3.15dvh), 27px);
  font-weight: 740;
  line-height: 1.1;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.choose-question-frame {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
}

.choose-auto-progress {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: rgb(30 49 87 / 12%);
}

.choose-auto-progress::after {
  position: absolute;
  inset: 0;
  background: #1e3157;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.choose-app.is-counting-down .choose-auto-progress::after {
  animation: choose-auto-advance 750ms linear forwards;
}

@keyframes choose-auto-advance {
  to { transform: scaleX(1); }
}

.choose-option {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: clamp(22px, 4dvh, 42px) clamp(25px, 9vw, 46px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: var(--choose-light);
  font: inherit;
  text-align: center;
  cursor: pointer;
  appearance: none;
  touch-action: manipulation;
  transition: filter 130ms ease;
}

.choose-option-a {
  z-index: 2;
  background:
    radial-gradient(circle at 14% 2%, rgb(255 255 255 / 19%), transparent 40%),
    linear-gradient(145deg, #b9564b 0%, var(--choose-a) 52%, #923a3a 100%);
  box-shadow:
    0 12px 30px rgb(45 17 18 / 28%),
    inset 0 1px 0 rgb(255 255 255 / 20%),
    inset 0 -24px 54px rgb(88 23 27 / 18%);
}

.choose-option-b {
  z-index: 1;
  background:
    radial-gradient(circle at 86% 2%, rgb(112 153 218 / 22%), transparent 42%),
    linear-gradient(145deg, #294a7e 0%, var(--choose-b) 52%, #152b52 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 13%),
    inset 0 -30px 60px rgb(6 19 47 / 24%);
}

.choose-option:disabled {
  color: var(--choose-light);
  cursor: default;
  opacity: 1;
  -webkit-text-fill-color: var(--choose-light);
}

.choose-option:not(:disabled):active {
  filter: brightness(0.91) saturate(1.05);
}

.choose-option-copy,
.choose-result {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  align-self: center;
  justify-self: stretch;
}

.choose-option-copy {
  display: grid;
  align-self: stretch;
  place-items: center;
  overflow: hidden;
  transition: opacity 140ms ease, transform 140ms ease;
}

.choose-answer,
.choose-result-answer {
  display: block;
  max-width: 330px;
  margin-inline: auto;
  font-size: clamp(24px, min(7.7vw, 3.8dvh), 34px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow: 0 3px 20px rgb(24 12 20 / 22%);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.has-long-answer .choose-answer,
.has-long-answer .choose-result-answer {
  font-size: clamp(21px, min(6.8vw, 3.35dvh), 30px);
  line-height: 1.11;
}

.choose-result {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
  place-items: center;
  align-content: center;
  gap: clamp(8px, 1.25dvh, 13px);
}

.choose-app.is-answered .choose-option-copy {
  display: none;
}

.choose-app.is-answered .choose-result {
  display: grid;
}

.choose-chart {
  --result-percent: 0%;
  --chart-center: #a94740;
  position: relative;
  display: grid;
  width: clamp(92px, min(26vw, 12dvh), 112px);
  aspect-ratio: 1;
  place-items: center;
  flex: none;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    rgb(255 255 255 / 94%) 0 var(--result-percent),
    rgb(255 255 255 / 16%) var(--result-percent) 100%
  );
  box-shadow:
    0 12px 30px rgb(15 16 30 / 20%),
    inset 0 1px 0 rgb(255 255 255 / 18%);
}

.choose-option-b .choose-chart {
  --chart-center: #1d3866;
}

.choose-chart::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: inherit;
  background:
    radial-gradient(circle at 36% 28%, rgb(255 255 255 / 14%), transparent 45%),
    var(--chart-center);
  box-shadow: inset 0 4px 16px rgb(8 14 30 / 18%);
  content: "";
}

.choose-chart-copy {
  position: absolute;
  z-index: 1;
  display: grid;
  inset: 12%;
  min-width: 0;
  min-height: 0;
  grid-template-rows: max-content max-content;
  gap: clamp(2px, 0.55dvh, 5px);
  place-content: center;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  text-align: center;
}

.choose-percent {
  display: block;
  width: 100%;
  min-width: 0;
  font-size: clamp(20px, min(6vw, 3dvh), 24px);
  font-weight: 820;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 3px 16px rgb(14 18 38 / 25%);
}

.choose-result-answer {
  font-size: clamp(20px, min(6.5vw, 3.1dvh), 28px);
}

.choose-result-answer-frame {
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
}

.choose-vote-count {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  font-size: clamp(7px, 2vw, 9px);
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.8;
}

.choose-your-choice {
  min-height: 1.2em;
  padding: 5px 10px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  background: rgb(12 19 36 / 15%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
  font-size: clamp(11px, 3.2vw, 13px);
  font-weight: 720;
  letter-spacing: 0.035em;
}

.choose-milestone-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(20px, env(safe-area-inset-top, 0px)) 20px
    max(20px, env(safe-area-inset-bottom, 0px));
  background: rgb(10 14 24 / 72%);
  backdrop-filter: blur(9px);
}

.choose-milestone-card {
  position: relative;
  display: grid;
  width: min(100%, 370px);
  max-height: 100%;
  place-items: center;
  padding: clamp(28px, 5dvh, 42px) clamp(24px, 7vw, 38px)
    clamp(24px, 4.5dvh, 36px);
  overflow: auto;
  border: 1px solid rgb(29 56 102 / 15%);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% -10%, rgb(255 255 255 / 96%), transparent 48%),
    var(--choose-paper);
  box-shadow: 0 28px 80px rgb(5 9 18 / 45%);
  color: var(--choose-ink);
  text-align: center;
  animation: choose-milestone-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes choose-milestone-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
}

.choose-milestone-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgb(29 56 102 / 14%);
  border-radius: 50%;
  background: transparent;
  color: var(--choose-progress-on);
  font-family: inherit;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.choose-milestone-kicker {
  margin: 0 34px clamp(16px, 2.5dvh, 22px);
  color: var(--choose-progress-on);
  font-size: 11px;
  font-weight: 790;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choose-knowledge-ring {
  --knowledge-percent: 7.5%;
  position: relative;
  display: grid;
  width: clamp(118px, min(34vw, 18dvh), 142px);
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    var(--choose-progress-on) 0 var(--knowledge-percent),
    var(--choose-progress-off) var(--knowledge-percent) 100%
  );
  box-shadow: 0 14px 32px rgb(29 56 102 / 18%);
}

.choose-knowledge-ring::before {
  position: absolute;
  inset: 11px;
  border-radius: inherit;
  background: var(--choose-paper);
  box-shadow: inset 0 0 0 1px rgb(29 56 102 / 8%);
  content: "";
}

.choose-knowledge-number,
.choose-knowledge-unit {
  position: relative;
  z-index: 1;
}

.choose-knowledge-number {
  color: var(--choose-progress-on);
  font-size: clamp(42px, min(13vw, 6.5dvh), 56px);
  font-weight: 840;
  font-variant-numeric: tabular-nums;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.choose-knowledge-unit {
  margin-top: 7px;
  color: var(--choose-progress-on);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choose-milestone-card h2 {
  max-width: 300px;
  margin: clamp(18px, 3dvh, 25px) 0 0;
  font-size: clamp(27px, min(7.8vw, 4dvh), 34px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.choose-milestone-copy {
  max-width: 300px;
  margin: 12px 0 0;
  color: rgb(23 25 32 / 68%);
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 520;
  line-height: 1.42;
  text-wrap: balance;
}

.choose-milestone-actions {
  display: grid;
  width: 100%;
  gap: 9px;
  margin-top: clamp(21px, 3.5dvh, 29px);
}

.choose-milestone-primary,
.choose-milestone-secondary {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 740;
  line-height: 1.15;
  cursor: pointer;
}

.choose-milestone-primary {
  border: 1px solid var(--choose-progress-on);
  background: var(--choose-progress-on);
  box-shadow: 0 9px 24px rgb(29 56 102 / 22%);
  color: var(--choose-light);
}

.choose-milestone-secondary {
  border: 1px solid rgb(29 56 102 / 16%);
  background: transparent;
  color: var(--choose-progress-on);
}

[hidden] {
  display: none !important;
}

.choose-status {
  position: fixed;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.choose-app.is-changing .choose-question-wrap h1,
.choose-app.is-changing .choose-option > span {
  opacity: 0;
  transform: translateY(5px);
}

.choose-option > span,
.choose-question-wrap h1 {
  transition: opacity 150ms ease, transform 150ms ease;
}

.choose-app.is-complete .choose-option {
  pointer-events: none;
}

@media (max-width: 340px) {
  .choose-question-wrap {
    padding-inline: 18px;
  }

  .choose-question-wrap h1 {
    font-size: clamp(19px, 6.6vw, 23px);
  }

  .choose-answer {
    font-size: clamp(22px, 7.8vw, 28px);
  }
}

@media (max-height: 650px) {
  .choose-question-wrap {
    padding-block: 7px 12px;
  }

  .choose-question-wrap h1 {
    font-size: clamp(18px, min(6.2vw, 3.7dvh), 23px);
  }

  .choose-journey {
    height: 19px;
  }

  .choose-milestone-label {
    margin-top: 2px;
    font-size: 8px;
  }

  .choose-option {
    padding-block: 10px;
  }

  .choose-answer {
    font-size: clamp(22px, min(7.8vw, 4.3dvh), 29px);
  }

  .choose-percent {
    font-size: clamp(19px, min(5.8vw, 3.2dvh), 22px);
  }

  .choose-chart {
    width: clamp(64px, min(22vw, 11dvh), 78px);
  }

  .choose-result {
    gap: 4px;
  }

  .choose-result-answer {
    font-size: clamp(18px, min(6vw, 3.3dvh), 23px);
  }

  .choose-your-choice {
    padding-block: 3px;
    font-size: 10px;
  }

}

@media (min-width: 800px) {
  .choose-body {
    padding: clamp(16px, 3vw, 34px);
    background:
      radial-gradient(circle at 50% 18%, rgb(46 63 92 / 72%), transparent 48%),
      #10141d;
  }

  .choose-app {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(92px, 13fr) minmax(130px, 21fr) 66fr;
    width: min(100%, 1180px);
    height: min(100%, 820px);
    max-height: calc(100dvh - clamp(32px, 6vw, 68px));
    min-height: 0;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 28px;
    box-shadow: 0 30px 100px rgb(0 0 0 / 46%);
  }

  .choose-logo,
  .choose-question-wrap {
    grid-column: 1 / -1;
  }

  .choose-logo img {
    width: clamp(180px, 16vw, 224px);
  }

  .choose-question-wrap {
    padding: 22px clamp(52px, 8vw, 110px) 28px;
  }

  .choose-question-wrap h1 {
    max-width: 850px;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.06;
  }

  .choose-journey {
    width: min(100%, 560px);
  }

  .choose-option {
    padding: clamp(42px, 7vh, 74px) clamp(46px, 6vw, 86px);
    transition: filter 150ms ease, transform 150ms ease;
  }

  .choose-option-a {
    grid-column: 1;
    grid-row: 3;
    box-shadow:
      14px 0 34px rgb(45 17 18 / 20%),
      inset 0 1px 0 rgb(255 255 255 / 20%),
      inset 0 -30px 70px rgb(88 23 27 / 20%);
  }

  .choose-option-b {
    grid-column: 2;
    grid-row: 3;
  }

  .choose-answer,
  .choose-result-answer {
    max-width: 460px;
    font-size: clamp(30px, 3.25vw, 48px);
  }

  .has-long-answer .choose-answer,
  .has-long-answer .choose-result-answer {
    font-size: clamp(27px, 2.8vw, 41px);
  }

  .choose-result {
    gap: clamp(12px, 2vh, 20px);
  }

  .choose-percent {
    font-size: clamp(32px, 3vw, 38px);
  }

  .choose-chart {
    width: clamp(158px, min(16vw, 23vh), 198px);
  }

  .choose-vote-count {
    font-size: clamp(10px, 0.82vw, 12px);
  }

  .choose-result-answer {
    font-size: clamp(25px, 2.4vw, 36px);
  }

  .choose-your-choice {
    padding: 7px 13px;
    font-size: 14px;
  }

  .choose-option:not(:disabled):hover {
    z-index: 3;
    filter: brightness(1.06) saturate(1.04);
  }

  .choose-option:not(:disabled):focus-visible {
    z-index: 4;
    outline: 4px solid rgb(255 253 248 / 88%);
    outline-offset: -9px;
  }

}

@media (min-width: 800px) and (max-height: 680px) {
  .choose-body { padding-block: 12px; }

  .choose-app {
    grid-template-rows: 82px minmax(112px, 20fr) 66fr;
    max-height: calc(100dvh - 24px);
  }

  .choose-question-wrap { padding-block: 14px 18px; }
  .choose-question-wrap h1 { font-size: clamp(27px, 3vw, 38px); }
  .choose-option { padding-block: 28px; }
  .choose-chart { width: clamp(120px, min(14vw, 22vh), 158px); }
}

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