:root {
  --phase-bg: #060b13;
  --phase-bg-soft: #0b111c;
  --phase-paper-0: #f8f3ea;
  --phase-paper-1: #efe5d0;
  --phase-paper-2: #e1c995;
  --phase-card: rgba(16, 20, 29, 0.92);
  --phase-card-2: rgba(22, 26, 37, 0.94);
  --phase-text: #f7f8fb;
  --phase-text-soft: rgba(247, 248, 251, 0.78);
  --phase-text-dim: rgba(247, 248, 251, 0.58);
  --phase-line: rgba(255, 255, 255, 0.08);
  --phase-orange: #ff9300;
  --phase-orange-2: #ffb54a;
  --phase-red: #db2323;
  --phase-blue: #1e56c8;
  --phase-green: #39d145;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background-color: #f8f3ea;
}

body {
  font-family: Montserrat, system-ui, sans-serif;
  color: var(--phase-text);
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--phase-paper-0) 0%, var(--phase-paper-1) 56%, #f4ebdc 100%);
  overflow-x: hidden;
}

.phaseBody--result {
  min-height: 0;
  height: auto;
  background:
    radial-gradient(960px 620px at 50% 0%, rgba(255, 170, 66, 0.08), transparent 60%),
    linear-gradient(180deg, #050811 0%, #060b13 56%, #04070d 100%);
}

.phaseApp {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phaseApp--result {
  display: block;
  min-height: 0;
  padding: 16px 16px 0;
}

.phaseBlobField {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.phaseBlob {
  position: absolute;
  display: block;
  border-radius: 38% 62% 55% 45% / 42% 34% 66% 58%;
  filter: blur(14px);
  opacity: 0.94;
  animation: phaseBlobFloat 17s ease-in-out infinite, phaseBlobMorph 20s ease-in-out infinite;
}

.phaseBlob--one {
  top: -140px;
  left: -160px;
  width: 430px;
  height: 430px;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.16) 22%, transparent 28%),
    linear-gradient(145deg, rgba(255, 248, 230, 0.98), rgba(239, 216, 160, 0.92), rgba(200, 163, 74, 0.7));
}

.phaseBlob--two {
  top: 140px;
  right: -190px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle at 38% 36%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.14) 21%, transparent 28%),
    linear-gradient(145deg, rgba(255, 244, 219, 0.94), rgba(215, 175, 88, 0.72), rgba(184, 132, 47, 0.58));
  animation-delay: -6s;
}

.phaseBlob--three {
  bottom: -180px;
  left: 18%;
  width: 480px;
  height: 480px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.14) 23%, transparent 30%),
    linear-gradient(160deg, rgba(255, 248, 232, 0.92), rgba(224, 193, 118, 0.72), rgba(160, 114, 40, 0.36));
  animation-delay: -10s;
}

.phasePhone {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 32px), 430px);
  min-height: min(100vh - 32px, 980px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(17, 21, 29, 0.97), rgba(8, 11, 18, 0.98)),
    radial-gradient(circle at top, rgba(255, 147, 0, 0.05), transparent 40%);
  box-shadow:
    0 30px 90px rgba(132, 95, 28, 0.2),
    0 36px 100px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  isolation: isolate;
}

.phasePhone--result {
  max-width: 430px;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto;
  border: 1px solid rgba(255, 213, 145, 0.08);
  background:
    linear-gradient(180deg, rgba(13, 18, 29, 0.98), rgba(7, 11, 19, 0.99)),
    radial-gradient(circle at top, rgba(255, 166, 42, 0.04), transparent 38%);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.54);
}

@media (min-width: 768px) {
  .phasePhone--result {
    width: min(calc(100vw - 56px), 520px);
    max-width: 520px;
  }
}

.phaseBody--result .phaseAmbient,
.phaseBody--result .phaseConstellation {
  display: none;
}

.phaseAmbient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(300px 300px at 50% 100%, rgba(255, 147, 0, 0.12), transparent 64%),
    radial-gradient(240px 240px at 18% 18%, rgba(40, 120, 255, 0.08), transparent 70%);
}

.phaseConstellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  filter: saturate(1) blur(0.16px);
}

.phaseHeader,
.phaseFooter,
.phaseContent,
.phaseResult,
.phaseLoading,
.phaseError {
  position: relative;
  z-index: 1;
}

.phaseHeader {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phaseBack,
.phaseClose {
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--phase-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.phaseBack:hover,
.phaseClose:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.phaseBack.is-hidden {
  visibility: hidden;
}

.phaseBack svg,
.phaseClose svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phaseBrand img {
  height: 28px;
  max-width: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(255, 147, 0, 0.25));
}

.phaseBrand {
  max-width: min(150px, calc(100vw - 120px));
  margin-left: auto;
}

.phaseContent {
  padding: 12px 20px 18px;
}

.phaseEyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 179, 77, 0.92);
  font-weight: 700;
}

.phaseIntro h1,
.phaseQuiz__top h2 {
  margin: 0;
  font-size: clamp(36px, 8vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.phaseQuiz__top h2 {
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.phaseIntroText {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--phase-text-soft);
}

.phaseForm {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.phaseField {
  display: grid;
  gap: 8px;
}

.phaseField span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--phase-text-dim);
}

.phaseField input {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--phase-text);
  padding: 0 18px;
  font: inherit;
}

.phaseField input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.phaseMiniGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.phaseMiniGrid article {
  border-radius: 18px;
  border: 1px solid var(--phase-line);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 10px;
  text-align: center;
}

.phaseMiniGrid strong {
  display: block;
  font-size: 24px;
}

.phaseMiniGrid span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--phase-text-dim);
}

@keyframes phaseBlobFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  35% {
    transform: translate3d(18px, 22px, 0) scale(1.04);
  }
  70% {
    transform: translate3d(-22px, 10px, 0) scale(0.97);
  }
}

@keyframes phaseBlobMorph {
  0%, 100% {
    border-radius: 38% 62% 55% 45% / 42% 34% 66% 58%;
  }
  25% {
    border-radius: 58% 42% 49% 51% / 35% 55% 45% 65%;
  }
  50% {
    border-radius: 45% 55% 37% 63% / 58% 40% 60% 42%;
  }
  75% {
    border-radius: 62% 38% 54% 46% / 46% 63% 37% 54%;
  }
}

.phaseQuiz__top {
  display: grid;
  gap: 6px;
}

.phaseProgress {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.phaseProgressBar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phaseProgressBar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--phase-orange), var(--phase-orange-2));
  transition: width 0.24s ease;
}

.phaseProgressDots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.phaseDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: transform 0.2s ease, background 0.2s ease;
}

.phaseDot.is-done {
  background: rgba(255, 255, 255, 0.85);
}

.phaseDot.is-current {
  transform: scale(1.3);
  background: var(--phase-orange);
}

.phaseQuestionBlock {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.phaseQuestionCount {
  font-size: 18px;
  font-weight: 700;
  color: var(--phase-text-soft);
}

.phaseQuestionText {
  margin: 0;
  font-size: clamp(30px, 7vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.phaseOptions {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.phaseOption {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--phase-text);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.phaseOption:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 147, 0, 0.4);
}

.phaseOption.is-active {
  background: linear-gradient(180deg, rgba(255, 147, 0, 0.15), rgba(255, 147, 0, 0.07));
  border-color: rgba(255, 147, 0, 0.54);
  box-shadow: 0 14px 30px rgba(255, 147, 0, 0.18);
}

.phaseOption__letter {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.phaseOption__text {
  font-size: 16px;
  line-height: 1.7;
}

.phaseFooter {
  padding: 0 20px 22px;
}

.phaseBtn {
  appearance: none;
  width: 100%;
  min-height: 62px;
  border-radius: 18px;
  border: 0;
  padding: 0 18px;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.phaseBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.phaseBtn--primary {
  color: #fff;
  background: linear-gradient(180deg, #ff980c 0%, #f48a00 100%);
  box-shadow: 0 18px 40px rgba(255, 147, 0, 0.28);
}

.phaseFeedback {
  margin: 16px 0 0;
  font-size: 14px;
  color: #8ef0a8;
}

.phaseFeedback.is-error {
  color: #ff9d9d;
}

.phaseResult {
  padding: 18px 18px 18px;
}

.phaseExecutiveSummary {
  margin-top: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(15, 20, 30, 0.98), rgba(9, 13, 22, 0.98)),
    radial-gradient(circle at top right, rgba(255, 166, 42, 0.08), transparent 34%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  padding: 18px;
}

.phaseResult__head {
  display: flex;
  justify-content: flex-end;
}

.phaseResult__brandRow {
  margin-top: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phaseLogoOrb {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
}

.phaseLogoOrb img {
  width: 74px;
  height: auto;
}

.phaseResult__brandRow strong {
  font-size: 24px;
  color: var(--phase-text-soft);
}

.phaseResult__nameCard {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  padding: 16px 18px;
  display: grid;
  gap: 8px;
}

.phaseResult__kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 194, 108, 0.9);
  font-weight: 700;
}

.phaseResult__name {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.phaseHeroCard {
  --phase-accent: var(--phase-orange);
  position: relative;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 28%);
  display: grid;
  grid-template-columns: 8px 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px 16px;
}

.phaseHeroCard__bar {
  width: 8px;
  height: 100%;
  border-radius: 999px;
  background: var(--phase-accent);
}

.phaseHeroCard__icon {
  grid-column: 2;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phaseHeroCard__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
}

.phaseHeroCard[data-phase="1"] .phaseHeroCard__icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(219, 35, 35, 0.08);
}

.phaseHeroCard[data-phase="2"] .phaseHeroCard__icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(255, 147, 0, 0.09);
}

.phaseHeroCard[data-phase="3"] .phaseHeroCard__icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(30, 86, 200, 0.10);
}

.phaseHeroCard[data-phase="4"] .phaseHeroCard__icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(57, 209, 69, 0.09);
}

.phaseHeroCard__content {
  grid-column: 3;
  display: grid;
  gap: 5px;
  padding-top: 2px;
}

.phaseHeroCard__content span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--phase-text-soft);
  font-weight: 700;
}

.phaseHeroCard__content strong {
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.phaseHeroCard__content small {
  font-size: 17px;
  color: var(--phase-text-soft);
}

.phaseHeroCard__phase {
  grid-column: 4;
  align-self: start;
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phaseInfoGrid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(160px, 0.75fr);
  gap: 14px;
}

.phaseInfoBlock {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 18px 19px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.022));
  display: grid;
  gap: 10px;
  min-height: 124px;
}

.phaseInfoBlock span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--phase-text-soft);
  font-weight: 700;
}

.phaseInfoBlock strong {
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.phaseInfoBlock--muted {
  align-content: center;
}

.phaseInfoBlock--muted strong {
  font-size: 30px;
  line-height: 1;
}

.phaseDistribution {
  margin-top: 24px;
  display: grid;
  gap: 22px;
}

.phaseDistItem {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.phaseDistItem__copy {
  display: grid;
  gap: 4px;
}

.phaseDistItem__copy strong {
  font-size: 20px;
  line-height: 1.08;
}

.phaseDistItem__copy span {
  font-size: 16px;
  color: var(--phase-text-soft);
  line-height: 1.14;
}

.phaseDistItem__track {
  min-width: 0;
  display: flex;
  align-items: center;
}

.phaseDistItem__count {
  min-height: 60px;
  min-width: 72px;
  padding: 0 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.phaseClosingBlock {
  margin-top: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 17, 27, 0.96), rgba(8, 12, 18, 0.98)),
    radial-gradient(circle at top right, rgba(255, 147, 0, 0.08), transparent 42%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  padding: 20px 18px;
  display: grid;
  gap: 12px;
}

.phaseClosingBlock__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 187, 92, 0.88);
  font-weight: 700;
}

.phaseClosingBlock__title {
  font-size: 24px;
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.phaseClosingBlock__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--phase-text-soft);
}

.phaseClosingBlock__seal {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phaseClosingBlock__seal span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--phase-text-dim);
  font-weight: 700;
}

.phaseClosingBlock__seal strong {
  font-size: 17px;
  line-height: 1;
}

.phaseResult__actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.phaseLinkBtn {
  appearance: none;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--phase-text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.phaseLinkBtn:hover {
  transform: translateY(-1px);
}

.phaseLinkBtn--secondary {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--phase-text-soft);
}

.phaseLinkBtn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.phaseLinkBtn--primary {
  border-color: rgba(255, 187, 92, 0.34);
  background: linear-gradient(180deg, rgba(255, 166, 42, 0.96), rgba(224, 129, 0, 0.98));
  color: #fffdf8;
  box-shadow: 0 18px 34px rgba(255, 147, 0, 0.18);
}

.phaseLinkBtn--primary:hover {
  box-shadow: 0 22px 42px rgba(255, 147, 0, 0.24);
}

.phaseLoading,
.phaseError {
  min-height: min(100vh - 32px, 960px);
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.phaseLoading {
  gap: 14px;
}

.phaseLoading__pulse {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--phase-orange);
  animation: spin 1s linear infinite;
}

.phaseError strong {
  font-size: 28px;
}

.phaseError p {
  margin: 12px 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--phase-text-soft);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .phaseApp {
    padding: 0;
  }

  .phaseApp--result {
    padding: 0;
  }

  .phasePhone {
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    border: 0;
  }

  .phaseHeader {
    padding: 18px 18px 0;
  }

  .phaseBrand {
    max-width: min(120px, calc(100vw - 108px));
  }

  .phaseContent {
    padding: 12px 18px 18px;
  }

  .phaseQuestionText {
    font-size: 28px;
  }

  .phaseOption {
    border-radius: 20px;
    padding: 16px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .phaseOption__text {
    font-size: 15px;
    line-height: 1.6;
  }

  .phaseBtn {
    min-height: 58px;
    font-size: 18px;
  }

  .phaseResult__brandRow strong {
    font-size: 16px;
    max-width: none;
    text-align: left;
  }

  .phaseResult__name {
    font-size: 20px;
  }

  .phaseLogoOrb {
    width: 84px;
    height: 84px;
  }

  .phaseLogoOrb img {
    width: 60px;
  }

  .phaseHeroCard {
    grid-template-columns: 8px 54px minmax(0, 1fr);
  }

  .phaseHeroCard__phase {
    grid-column: 2 / -1;
    justify-self: start;
    align-self: auto;
    padding: 8px 12px;
    font-size: 12px;
  }

  .phaseHeroCard__icon {
    width: 54px;
    height: 54px;
  }

  .phaseHeroCard__content strong {
    font-size: 24px;
  }

  .phaseHeroCard__content small,
  .phaseDistItem__copy strong {
    font-size: 18px;
  }

  .phaseInfoGrid {
    grid-template-columns: 1fr;
  }

  .phaseInfoBlock {
    min-height: 0;
  }

  .phaseInfoBlock strong {
    font-size: 20px;
  }

  .phaseInfoBlock--muted strong {
    font-size: 24px;
  }

  .phaseDistItem {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
  }

  .phaseDistItem__copy span {
    font-size: 14px;
  }

  .phaseDistItem__count {
    min-height: 52px;
    min-width: 64px;
    padding: 0 16px;
    font-size: 24px;
  }

  .phaseLinkBtn {
    font-size: 16px;
  }

  .phaseResult__brandRow {
    align-items: flex-start;
    flex-direction: column;
  }

  .phasePhone--result {
    min-height: 0 !important;
    height: auto !important;
  }

  .phaseResult__actions {
    gap: 12px;
  }

  .phaseClosingBlock__title {
    font-size: 20px;
  }

  .phaseClosingBlock__text {
    font-size: 15px;
    line-height: 1.68;
  }

  .phaseClosingBlock__seal {
    align-items: flex-start;
    flex-direction: column;
  }

  .phaseLinkBtn {
    min-height: 52px;
  }
}
