:root {
  --ink: #062f3c;
  --muted: #58707a;
  --line: #dbe8e6;
  --paper: #fbfdfc;
  --surface: #ffffff;
  --teal: #008c84;
  --teal-dark: #063846;
  --mint: #67ccc8;
  --mint-soft: #effafa;
  --coral: #e76f51;
  --shadow-soft: 0 18px 50px rgba(6, 56, 70, 0.10);
  --shadow-card: 0 18px 40px rgba(6, 56, 70, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 28%, rgba(103, 204, 200, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button {
  font: inherit;
}

.app-shell {
  width: min(1440px, calc(100vw - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 26px 0;
}

.screen {
  width: 100%;
}

.panel,
.start-screen,
.choice-screen,
.result-screen {
  position: relative;
  overflow: hidden;
}

.panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 48px);
}

.figo-logo {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.figo-logo--hero {
  font-size: clamp(4.8rem, 12vw, 9.2rem);
}

.figo-logo--compact,
.figo-logo--default {
  font-size: clamp(3rem, 5.4vw, 4.6rem);
}

.figo-logo-tag {
  position: absolute;
  right: 5.8%;
  top: 75%;
  width: 0.16em;
  height: 0.42em;
  background: var(--mint);
  border-radius: 999px 999px 4px 4px;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
}

.figo-logo-tag::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 46%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  transform: translateX(-50%);
}

.page-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-watermark::before {
  content: "";
  position: absolute;
  inset: 22% 0 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.74) 0 12%, transparent 13%),
    linear-gradient(180deg, rgba(103, 204, 200, 0.10), rgba(103, 204, 200, 0.04));
  border-radius: 42px 42px 24px 24px;
  clip-path: polygon(12% 0, 88% 0, 88% 60%, 50% 100%, 12% 60%);
}

.page-watermark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 13%;
  height: 36%;
  border: clamp(18px, 2.2vw, 32px) solid rgba(103, 204, 200, 0.055);
  border-radius: 999px;
  transform: translateX(-50%);
}

.page-watermark--start {
  right: clamp(-110px, -8vw, -40px);
  bottom: clamp(-120px, -7vw, -30px);
  width: min(58vw, 520px);
  height: min(74vw, 680px);
  opacity: 0.78;
}

.page-watermark--choice {
  left: 50%;
  top: 56%;
  width: min(44vw, 520px);
  height: min(52vw, 620px);
  opacity: 0.48;
  transform: translate(-50%, -35%);
}

.start-screen {
  min-height: min(960px, calc(100vh - 52px));
  display: grid;
  place-items: center;
  text-align: center;
}

.start-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
}

.start-slogan {
  margin: 36px 0 0;
  color: var(--teal-dark);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.25;
}

.start-title {
  margin: clamp(66px, 7.5vw, 102px) 0 0;
  max-width: 920px;
  color: var(--teal-dark);
  font-size: clamp(2.75rem, 6.3vw, 5.7rem);
  font-weight: 850;
  line-height: 1.1;
}

.start-intro {
  width: min(680px, 92vw);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  font-weight: 550;
  line-height: 1.5;
}

.start-intro p {
  margin: 0;
}

.start-intro p + p {
  margin-top: 8px;
}

.primary-action,
.cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 34px;
  color: white;
  background: linear-gradient(135deg, #008f89, #00756f);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 117, 111, 0.24);
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
}

.start-action {
  min-width: min(370px, 86vw);
  min-height: 92px;
  margin-top: clamp(44px, 6vw, 78px);
  font-size: clamp(2rem, 4vw, 3rem);
}

.profiler-start-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  width: min(760px, 100%);
  margin-top: clamp(46px, 6vw, 76px);
}

.profiler-start-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 28px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  text-align: left;
}

.profiler-start-card:hover,
.profiler-start-card:focus-visible {
  border-color: var(--teal);
  outline: none;
  box-shadow: var(--shadow-card);
}

.profiler-start-card span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.profiler-start-card strong {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.primary-action:hover,
.primary-action:focus-visible,
.cta-action:hover,
.cta-action:focus-visible {
  background: linear-gradient(135deg, #007f79, #005f5a);
  outline: none;
}

.choice-screen {
  min-height: min(940px, calc(100vh - 52px));
  padding: clamp(22px, 4vw, 50px) clamp(10px, 2vw, 30px);
}

.choice-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  align-items: start;
  gap: 24px;
}

.choice-heading {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding-top: clamp(56px, 6vw, 94px);
  text-align: center;
}

.choice-header-spacer {
  min-height: 1px;
}

.question {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(1.75rem, 3.3vw, 3.05rem);
  font-weight: 800;
  line-height: 1.14;
}

.choice-subtitle {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 550;
  line-height: 1.45;
  text-align: center;
}

.progress-component {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.progress-markers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.35vw, 18px);
  min-height: 24px;
}

.progress-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.3;
}

.progress-dot,
.progress-square {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 56, 70, 0.10);
}

.progress-dot {
  background: #dfe7e7;
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(6, 56, 70, 0.10);
}

.progress-square {
  background: transparent;
  border: 2px solid rgba(103, 204, 200, 0.86);
  border-radius: 2px;
}

.progress-separator {
  display: block;
  width: 1px;
  height: 22px;
  margin-left: 4px;
  background: rgba(6, 56, 70, 0.28);
}

.progress-dot.is-done,
.progress-dot.is-active {
  background: var(--mint);
  border-color: rgba(6, 56, 70, 0.05);
  box-shadow: 0 4px 10px rgba(0, 140, 132, 0.18);
}

.progress-square.is-done {
  background: rgba(103, 204, 200, 0.52);
}

.progress-square.is-active {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(103, 204, 200, 0.16);
}

.choice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.4vw, 70px);
  width: min(1180px, 100%);
  margin: clamp(48px, 5.6vw, 76px) auto 0;
}

.choice-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 140, 132, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(6, 56, 70, 0.10);
  font-size: 1rem;
  font-weight: 850;
  transform: translate(-50%, -50%);
}

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: clamp(300px, 24vw, 370px);
  padding: clamp(34px, 4.6vw, 70px);
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(103, 204, 200, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transform: scale(1);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    opacity 260ms ease,
    transform 260ms ease,
    background-color 260ms ease;
}

.choice-card--axis {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  gap: clamp(34px, 4.5vw, 56px);
  min-height: clamp(330px, 26vw, 410px);
  padding: clamp(34px, 4.6vw, 62px);
  overflow: visible;
  background: #ffffff;
  border: 1px solid rgba(6, 56, 70, 0.10);
  box-shadow: 0 18px 42px rgba(6, 56, 70, 0.11);
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: rgba(0, 140, 132, 0.42);
  box-shadow: 0 22px 52px rgba(0, 117, 111, 0.15);
  outline: none;
  transform: translateY(-1px);
}

.choice-card:disabled {
  cursor: wait;
}

.choice-card.is-selected,
.choice-card.is-selected:disabled {
  opacity: 1;
  transform: scale(1.15);
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 0 0 2px rgba(103, 204, 200, 0.34),
    0 0 0 5px rgba(103, 204, 200, 0.15),
    0 34px 82px rgba(0, 117, 111, 0.28);
  z-index: 2;
}

.choice-card--axis.is-selected,
.choice-card--axis.is-selected:disabled {
  transform: scale(1.035);
  border-color: rgba(0, 140, 132, 0.68);
  background: #f3fbfa;
  box-shadow:
    inset 0 0 0 2px rgba(0, 140, 132, 0.16),
    0 0 0 5px rgba(103, 204, 200, 0.16),
    0 30px 76px rgba(0, 117, 111, 0.22);
}

.choice-card.is-unselected,
.choice-card.is-unselected:disabled {
  opacity: 0.2;
  transform: scale(0.985);
  box-shadow: none;
}

.figo-card-watermark {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(42%, 210px);
  height: min(88%, 270px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.figo-card-watermark::before {
  content: "";
  position: absolute;
  inset: 23% 0 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.82) 0 14%, transparent 15%),
    linear-gradient(180deg, rgba(103, 204, 200, 0.085), rgba(103, 204, 200, 0.045));
  border: 1px solid rgba(0, 140, 132, 0.026);
  border-radius: 34px 34px 18px 18px;
  clip-path: polygon(12% 0, 88% 0, 88% 58%, 50% 100%, 12% 58%);
}

.figo-card-watermark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3%;
  width: 28px;
  height: 92px;
  border: 14px solid rgba(103, 204, 200, 0.05);
  border-radius: 999px;
  transform: translateX(-50%);
}

.statement {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 27ch;
  color: var(--teal-dark);
  font-size: clamp(1.6rem, 2.45vw, 2.35rem);
  line-height: 1.32;
  font-weight: 700;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.axis-card-name {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.axis-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(92px, 8.6vw, 118px);
  height: clamp(92px, 8.6vw, 118px);
  place-items: center;
  color: var(--teal);
  background: #e6f7f5;
  border-radius: 999px;
}

.axis-card-icon svg {
  display: block;
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.axis-card-name {
  color: var(--teal-dark);
  font-size: clamp(1.9rem, 3.1vw, 3.05rem);
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}

.axis-card-info {
  position: absolute;
  right: clamp(28px, 3.2vw, 42px);
  bottom: clamp(26px, 3vw, 40px);
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--teal);
  background: #eef9f8;
  border: 1px solid rgba(0, 140, 132, 0.22);
  border-radius: 999px;
  cursor: help;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
}

.axis-card-info:focus-visible {
  outline: 3px solid rgba(103, 204, 200, 0.36);
  outline-offset: 2px;
}

.axis-card-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 5;
  display: block;
  width: max-content;
  max-width: min(260px, 72vw);
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(6, 56, 70, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(6, 56, 70, 0.16);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateY(6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.axis-card-tooltip::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 100%;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-right: 1px solid rgba(6, 56, 70, 0.14);
  border-bottom: 1px solid rgba(6, 56, 70, 0.14);
  transform: translateY(-5px) rotate(45deg);
}

.axis-card-info:hover .axis-card-tooltip,
.axis-card-info:focus-visible .axis-card-tooltip,
.axis-card-info.is-open .axis-card-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.result-screen {
  padding: clamp(22px, 2.8vw, 42px) clamp(4px, 2vw, 22px) 0;
}

.result-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 760px) minmax(240px, 1fr);
  align-items: start;
  gap: 24px;
}

.result-brand {
  display: flex;
  align-items: center;
  gap: 26px;
}

.result-brand > span {
  max-width: 260px;
  color: var(--teal-dark);
  font-size: 1rem;
}

.result-title {
  margin: 16px 0 0;
  color: var(--teal-dark);
  font-size: clamp(2.1rem, 3.7vw, 3.65rem);
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
}

.result-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.result-side-column {
  display: grid;
  align-content: start;
  gap: 24px;
}

.result-panel {
  min-height: 580px;
  padding: clamp(22px, 2.6vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(6, 56, 70, 0.10);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.result-side-column .result-panel {
  min-height: auto;
}

.advice-profile-result .radar-visual {
  width: min(100%, 488px);
}

.result-panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.result-panel-heading h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.14;
}

.result-panel-heading p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.panel-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, #009a91, #00756f);
  border-radius: 999px;
  font-size: 1.65rem;
  font-weight: 800;
}

.radar-card {
  margin: clamp(22px, 3.2vw, 36px) auto 0;
}

.radar-visual {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: visible;
}

.radar-svg {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  overflow: visible;
}

.radar-grid-line {
  fill: none;
  stroke: rgba(6, 56, 70, 0.15);
  stroke-width: 1;
}

.radar-spoke {
  stroke: rgba(6, 56, 70, 0.10);
  stroke-width: 1;
}

.radar-area {
  fill: rgba(0, 140, 132, 0.20);
  stroke: none;
}

.radar-line {
  fill: none;
  stroke: #00877f;
  stroke-width: 4;
  stroke-linejoin: round;
}

.radar-marker {
  fill: #00877f;
  stroke: #ffffff;
  stroke-width: 2;
}

.dimension-symbols {
  position: absolute;
  inset: 0;
}

.dimension-symbol {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}

.dimension-symbol.is-left {
  flex-direction: row-reverse;
  transform: translate(-100%, -50%) translateX(20px);
  text-align: right;
}

.dimension-symbol.is-right {
  transform: translateY(-50%) translateX(-20px);
}

.dimension-symbol.is-center.is-top {
  flex-direction: column-reverse;
  transform: translate(-50%, -100%) translateY(20px);
}

.dimension-symbol.is-center.is-bottom {
  flex-direction: column;
  transform: translate(-50%, 0) translateY(-20px);
}

.dimension-symbol-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--dimension-color);
  background: color-mix(in srgb, var(--dimension-color) 14%, white);
  border: 1px solid color-mix(in srgb, var(--dimension-color) 26%, white);
  border-radius: 999px;
  font-size: 1.55rem;
  font-weight: 900;
}

.dimension-symbol-mark svg,
.explanation-symbol svg {
  display: block;
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dominant-explanation {
  margin-top: 18px;
  padding: 18px 20px;
  background: rgba(103, 204, 200, 0.10);
  border-radius: 8px;
}

.dominant-explanation.is-placeholder {
  display: grid;
  gap: 10px;
}

.dominant-explanation.is-placeholder span {
  display: block;
  height: 11px;
  max-width: 100%;
  background: rgba(0, 140, 132, 0.13);
  border-radius: 999px;
}

.dominant-explanation.is-placeholder span:nth-child(2) {
  width: 76%;
}

.dominant-explanation.is-placeholder span:nth-child(3) {
  width: 58%;
}

.dominant-dimension {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

.dominant-dimension + .dominant-dimension {
  margin-top: 12px;
}

.dominant-dimension h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.dominant-dimension p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.explanation-symbol {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--dimension-color, var(--teal));
  background: color-mix(in srgb, var(--dimension-color, var(--teal)) 13%, white);
  border-radius: 999px;
  font-weight: 850;
}

.chosen-statements {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(6, 56, 70, 0.10);
}

.result-build-up {
  margin-top: 24px;
}

.result-build-up[hidden] {
  display: none;
}

.result-build-up-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 14px;
  align-items: start;
}

.result-build-up-column {
  min-width: 0;
}

.result-build-up .advice-profile-result {
  min-height: auto;
}

.chosen-statements-body {
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(6, 56, 70, 0.08);
  border-radius: 8px;
}

.chosen-statements-body h3 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.chosen-statement-group + .chosen-statement-group,
.extra-choice-section {
  margin-top: 16px;
}

.chosen-statement-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chosen-statement-heading h4,
.extra-choice-section h4 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.98rem;
  line-height: 1.25;
}

.chosen-statement-group ul {
  margin: 8px 0 0 42px;
  padding: 0;
}

.chosen-statement-group--compact {
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 56, 70, 0.07);
}

.chosen-statement-group--compact:last-child {
  border-bottom: 0;
}

.chosen-axis-definition {
  margin: 8px 0 0 40px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.chosen-choice-count {
  display: inline-flex;
  margin: 10px 0 0 40px;
  padding: 4px 9px;
  color: #24736f;
  background: rgba(103, 204, 200, 0.08);
  border: 1px solid rgba(0, 140, 132, 0.10);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.chosen-statement-group li {
  margin-top: 6px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.extra-choice {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.extra-choice strong {
  display: block;
  color: var(--teal-dark);
  font-size: 0.94rem;
}

.extra-choice p {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.recommendation-label {
  display: inline-flex;
  align-items: center;
  margin: 24px 0 12px;
  padding: 7px 12px;
  color: #006d67;
  background: rgba(103, 204, 200, 0.23);
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 850;
}

.build-up-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  color: var(--teal);
  background: rgba(103, 204, 200, 0.10);
  border: 1px solid rgba(0, 140, 132, 0.20);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 850;
}

.build-up-toggle:hover,
.build-up-toggle:focus-visible {
  color: #006d67;
  background: rgba(103, 204, 200, 0.17);
  outline: none;
}

.product-name {
  margin: 0;
  color: var(--teal);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  line-height: 1.14;
}

.product-summary {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.product-visual {
  width: min(100%, 560px);
  margin: 20px auto 0;
}

.product-visual .radar-card {
  margin-top: 0;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: transparent;
}

.insurance-settings {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.insurance-setting {
  padding: 15px 16px;
  background: #f7fbfa;
  border: 1px solid rgba(6, 56, 70, 0.10);
  border-radius: 8px;
}

.insurance-setting div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.insurance-setting span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.insurance-setting strong {
  color: var(--teal);
  font-size: 1.22rem;
}

.insurance-setting p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.cta-action {
  width: 100%;
  min-height: 64px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
}

.secondary-recommendation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 22px 30px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(6, 56, 70, 0.10);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 56, 70, 0.08);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.secondary-recommendation strong {
  color: #6a52bf;
}

.privacy-note {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.98rem;
}

.error {
  color: #8a1f11;
  background: #fff1ed;
  border: 1px solid #f0b8a9;
  border-radius: 8px;
  padding: 14px 16px;
}

.error-panel {
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 1060px) {
  .app-shell {
    width: min(100vw - 20px, 1440px);
    align-items: start;
    padding-top: 10px;
  }

  .choice-header,
  .result-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .choice-heading {
    padding-top: 24px;
  }

  .choice-header-spacer {
    display: none;
  }

  .result-panels {
    grid-template-columns: 1fr;
  }

  .result-build-up-body {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    width: min(100%, 1040px);
    gap: clamp(20px, 3.4vw, 32px);
  }

  .choice-card {
    min-height: clamp(280px, 30vw, 340px);
  }

  .choice-card--axis {
    min-height: 330px;
  }

  .choice-card.is-selected,
  .choice-card.is-selected:disabled {
    transform: scale(1.04);
  }

  .result-brand {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .choice-grid {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    gap: 22px;
  }

  .choice-divider {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    margin: -8px 0;
    transform: none;
  }

  .choice-card {
    min-height: 260px;
  }

  .choice-card--axis {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .start-screen,
  .choice-screen,
  .result-screen {
    min-height: auto;
  }

  .start-title {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
  }

  .profiler-start-options {
    grid-template-columns: 1fr;
  }

  .question {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .result-title {
    font-size: clamp(2rem, 9vw, 3.05rem);
  }

  .progress-markers {
    gap: 7px;
    flex-wrap: wrap;
    max-width: min(100%, 280px);
  }

  .progress-dot,
  .progress-square {
    width: 12px;
    height: 12px;
  }

  .choice-grid {
    gap: 22px;
    margin-top: 42px;
  }

  .choice-card--axis {
    gap: 20px;
    min-height: 280px;
    padding: 24px;
  }

  .statement {
    max-width: 29ch;
    font-size: clamp(1.35rem, 5.8vw, 1.9rem);
  }

  .axis-card-name {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .axis-card-icon {
    width: 86px;
    height: 86px;
  }

  .axis-card-info {
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.88rem;
  }

  .result-panel {
    min-height: auto;
    padding: 20px;
  }

  .result-panel-heading {
    align-items: center;
  }

  .panel-symbol {
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
  }

  .dimension-symbol-mark {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .secondary-recommendation {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }
}
