:root {
  --blue: #0d54c1;
  --blue-hover: #03408b;
  --ink: #0f172a;
  --muted: #64748b;
  --panel: #f5f7fc;
  --panel-hover: #e4e6eb;
  --line: #e2e8f0;
  --soft-line: #e5e9f0;

  --tab-bg-container: #E4E9EE;
  /* Фон контейнера */
  --tab-text-color: #8A97AE;
  /* Колір неактивного тексту (нижній шар) */
  --tab-active-text: #FFFFFF;
  /* Точний колір активного тексту (верхній шар) */
  --tab-indicator-bg: #00C247;
  /* Точний рожевий колір вашого індикатора */
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  width: 100%;
  margin: 0;
  background: #fff;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  min-height: 100vh;
}

.desktop-nav,
.desktop-page {
  display: none;
}

.mobile-result {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.result-panel {
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 69, 160, .76) 36%, rgba(0, 53, 138, .94) 99%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-bar {
  padding: max(8px, env(safe-area-inset-top)) 16px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-link__icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .2);
  color: white;
}

.brand-link__icon:hover {
  background: rgba(37, 40, 224, 0.2);
}

.brand-link__icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.result-panel__body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-panel__body--desktop {
  justify-content: space-between;
  min-height: 206px;
}

.arc-widget {
  --arc-radius: 140;
  --arc-left: 20;
  --arc-bottom: 22;
  width: min(360px, 100vw);
  padding: 0 20px 20px;
  text-align: center;
}

.arc-widget--wide {
  --arc-radius: 96;
  --arc-left: 20;
  --arc-bottom: 24;
  width: 272px;
  padding-top: 20px;
}

.arc-widget__title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.arc-widget__stage {
  position: relative;
  height: 224px;
}

.arc-widget--wide .arc-widget__stage {
  height: 170px;
}

.arc-widget__svg {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: visible;
}

.arc-widget--wide .arc-widget__svg {
  bottom: 26px;
}

.arc-widget__track {
  fill: none;
  stroke-width: 14;
  stroke-linecap: round;
}

.arc-widget__thumb {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
  transform: translate(-50%, -50%);
  will-change: left, top;
}

.arc-widget__readout {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.arc-widget__value {
  min-height: 82px;
  color: #fff;
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.arc-widget--wide .arc-widget__value {
  min-height: 60px;
  font-size: 58px;
}

.arc-widget__average {
  min-height: 22px;
  /* color: rgba(255, 255, 255, .9); */
  color: #bedaff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 12px #154392;
  /* margin-top: -8px;
  margin-bottom: 16px; */
}

.arc-widget--wide .arc-widget__average {
  min-height: 18px;
  font-size: 14px;
}

.arc-widget__scale {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
}

.target-wrap {
  position: relative;
  display: grid;
  flex: 0 0 221px;
  width: 221px;
  height: 206px;
  place-items: center;
}

.splash-image {
  position: absolute;
  width: 221px;
  height: 206px;
  opacity: 0;
  transform: scale(0);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(.34, 1.56, .64, 1);
}

.splash-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.dartboard-image {
  position: relative;
  z-index: 1;
  width: 200px;
  height: auto;
}

.mobile-content {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 300px 16px 72px;
}

.score-box {
  display: grid;
  gap: 16px;
  min-width: 0;
  width: 100%;
  padding: 20px;
  border-radius: 18px;
  background: var(--panel);
}

.score-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.score-box h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  flex: 1;
}

.skill-tile,
.slider-tile {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.skill-tile {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.skill-tile__main {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.skill-icon {
  display: inline-grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--skill-color, #3b82f6);
  background: color-mix(in srgb, var(--skill-color, #3b82f6) 12%, transparent);
}

.skill-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.skill-icon img {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.skill-icon--blue {
  --skill-color: #3b82f6;
}

.skill-icon--green {
  --skill-color: #10b981;
}

.skill-icon--amber {
  --skill-color: #f59e0b;
}

.skill-icon--pink {
  --skill-color: #ec4899;
}

.skill-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.skill-copy strong,
.skill-tile__main strong {
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
}

.skill-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  white-space: normal;
}

.stepper {
  position: relative;
  display: grid;
  width: 100%;
  height: 36px;
  grid-template-columns: 36px 1fr 36px;
  border: 1px solid var(--soft-line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.stepper--compact {
  display: none;
}

.stepper button {
  display: grid;
  width: 36px;
  height: 36px;
  margin: -1px 0 0 -1px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #3b72de;
  background: var(--panel);
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  /* padding-bottom: 5px; */
}

.stepper button:hover {
  background: var(--panel-hover);
}

.stepper button:last-child {
  margin-right: -1px;
  /* margin-left: 0; */
  margin-left: 1px;
}

.stepper input {
  min-width: 0;
  height: 34px;
  border: 0;
  outline: 0;
  color: rgba(0, 0, 0, .87);
  background: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}



.segmented--header {
  display: none;
  width: 285px;
}

/* .tab-switch */
.segmented {
  position: relative;
  display: flex;
  background-color: var(--tab-bg-container);
  padding: 4px;
  border-radius: 999px;
  user-select: none;
  touch-action: pan-y;
  /* width: 100%; */
  /* max-width: 400px; */
  /* За потреби підкоригуйте ширину */
}

/* Спільний стиль для обох шарів */
.tab-layer {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Верхній шар повністю дублює позицію і колір тексту */
.tab-layer--top {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  z-index: 2;
  pointer-events: none;
  /* Кліки проходять крізь нього */

  /* Початкова маска: обрізаємо так, щоб бачити лише ліву половину (перший таб) */
  clip-path: inset(0% 50% 0% 0% round 999px);
  transition: clip-path 0.3s cubic-bezier(0.38, 0.45, 0.32, 1.14);
}

.tab-layer--top.is-dragging {
  transition: none !important;
}

/* Текст активного шару */
.tab-layer--top .tab {
  color: var(--tab-active-text) !important;
}

/* Стиль самих кнопок */
.tab-switch .tab {
  position: relative;
  display: inline-block;
  /* padding: 10px 20px; */
  min-height: 32px;
  padding: 8px 10px;
  /* font-size: 15px; */
  font-size: 13px;
  font-weight: 500;
  color: var(--tab-text-color);
  text-align: center;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 999px;
  outline: none;
  flex: 1;
}

.segmented--header.tab-switch .tab {
  /* padding: 10px 20px;
      font-size: 15px;
      font-weight: 500; */
}

/* Фізичний рожевий повзунок */
.tab-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  /* background-color: var(--tab-indicator-bg); */
  border-radius: 999px;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.38, 0.45, 0.32, 1.14);
}

.tab-indicator.is-dragging {
  transition: none !important;
}

.tab-indicator::after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--tab-indicator-bg);
  border-radius: 999px;
  transition: box-shadow 0.2s;
}

.tab-indicator.is-dragging::after {
  /* box-shadow: 0 0px 0px 4px var(--tab-indicator-bg); */
  /* box-shadow: 0 0px 0px 4px rgb(from var(--tab-indicator-bg) r g b / 0.7); */
  box-shadow: 0 0px 0px 4px var(--tab-indicator-bg);
}

/* Прозора область для перетягування поверх усього */
.tab-grab {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background-color: transparent;
  border-radius: 999px;
  z-index: 3;
  cursor: grab;
  transition: transform 0.3s cubic-bezier(0.38, 0.45, 0.32, 1.14);
}

.tab-grab:active {
  cursor: grabbing;
}

.tab-grab.is-dragging {
  transition: none !important;
}

/* .segmented {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  padding: 2px;
  border-radius: 9px;
  background: #e4e9ee;
}

.segmented--header {
  display: none;
  width: 285px;
}

.segmented button {
  min-width: 0;
  min-height: 32px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  color: #8a97ae;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.segmented button.is-active {
  color: #fff;
  background: #00c247;
} */

.score-box__actions {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.button {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.button img {
  width: 24px;
  height: 24px;
}

.button--primary {
  color: #fff;
  background: var(--blue);
}

.button--primary:hover {
  background: var(--blue-hover);
}

.button--secondary {
  color: #8a97ae;
  background: #e4e9ee;
}

.button--secondary:hover {
  background: #d1d6da;
}

.slider-tile {
  display: grid;
  gap: 4px;
  padding: 12px 0;
}

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

.value-pill {
  min-width: 44px;
  padding: 4px 10px;
  border-radius: 12px;
  color: var(--slider-color, #3b82f6);
  background: color-mix(in srgb, var(--slider-color, #3b82f6) 12%, transparent);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.__band-slider {
  --slider-color: #3b82f6;
  --slider-progress: 77.777%;
  /* width: calc(100% - 24px); */
  width: calc((100% / 10 * 9) + 18px);
  /* height: 38px; */
  height: 52px;
  margin: 0 calc((100% / 20) - 9px) -18px;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.__band-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--slider-color) var(--slider-progress), #dbe3ee 0);
}

.__band-slider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--slider-color) var(--slider-progress), #dbe3ee 0);
}

.__band-slider::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--slider-color);
  box-shadow: 0 2px 7px rgba(15, 23, 42, .22);
  appearance: none;
}

.__band-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--slider-color);
  box-shadow: 0 2px 7px rgba(15, 23, 42, .22);
}

/* ... Ваші стилі для .band-slider, треків та тамбу залишаються незмінними ... */
.band-slider {
  /* --slider-color: #3b82f6; */
  width: 100%;
  height: 52px;
  background: transparent;
  cursor: pointer;
  appearance: none;
  display: block;
  margin: 0;
}

.band-slider {
  /* --slider-color: #3b82f6;
            --slider-progress: 77.777%; */
  /* width: calc((100% / 10 * 9) + 18px);
  height: 52px;
  margin: 0 calc((100% / 20) - 9px) -18px;
  background: transparent;
  cursor: pointer;
  appearance: none; */
}

.band-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--slider-color) var(--slider-progress), #dbe3ee 0);
}

.band-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--slider-color) var(--slider-progress), #dbe3ee 0);
}

.band-slider::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  /* border: 3px solid #fff; */
  border-radius: 999px;
  background: var(--slider-color);
  box-shadow: 0 0px 0px 0px var(--slider-color), 0 2px 7px rgba(15, 23, 42, .22);
  appearance: none;
  /* transition: box-shadow 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); */
  transition: box-shadow 0.2s;
}

.band-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  /* border: 3px solid #fff; */
  border-radius: 999px;
  background: var(--slider-color);
  box-shadow: 0 0px 0px 0px var(--slider-color), 0 2px 7px rgba(15, 23, 42, .22);
  appearance: none;
  transition: box-shadow 0.2s;
}

/* ЕФЕКТ ПОЯВИ ПРИ НАВЕДЕННІ ТА ДОТИКУ */
/* .slider-container:hover .band-slider::-moz-range-thumb, */
/* .band-slider:active::-moz-range-thumb, */
.slider-container:hover .band-slider::-webkit-slider-thumb,
.band-slider:active::-webkit-slider-thumb {
  box-shadow: 0 0px 0px 12px rgb(from var(--slider-color) r g b / 0.12), 0 2px 7px rgba(15, 23, 42, .22);
}

/* Контейнер для відносного позиціонування */
.slider-container {
  position: relative;
  width: calc((100% / 10 * 9) + 18px);
  margin: 0 calc((100% / 20) - 9px) -18px;
  /* margin: 60px auto 0; */
}

/* ЗАГАЛЬНА ОБГОРТКА ТУЛТІПУ */
.slider-tooltip-wrapper {
  position: absolute;
  top: -42px;
  /* Висота посадки над слайдером */
  left: calc((var(--slider-progress-num) * 1%) - 20px + (9px - 18px * (var(--slider-progress-num) / 100)));
  width: 40px;
  height: 74px;
  /* Збільшено висоту під ніжку */
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom center;
  /* transition: opacity 0.15s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); */
  transition: opacity 0.15s ease, transform 0.2s;
  z-index: 3;
}

/* ЗАСТУСУВАННЯ SVG ФІЛЬТРУ ДО ГЕОМЕТРІЇ */
.gooey-visuals {
  filter: url('#goo-slider');
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Основне коло краплі */
.main-drop {
  width: 40px;
  height: 40px;
  background: var(--slider-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Ніжка */
.drop-line {
  width: 4px;
  height: 40px;
  background: var(--slider-color);
  border-radius: 50%;
  position: absolute;
  bottom: 12px;
  left: 18px;
}

/* Ніжка, яка буде плавно «перетікати» та тягнутися до тамбу */
.drop-leg {
  width: 12px;
  height: 12px;
  background: var(--slider-color);
  border-radius: 50%;
  position: absolute;
  bottom: 0px;
  left: 14px;
}

/* ЧІТКИЙ ТЕКСТ (поза фільтром) */
.tooltip-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  /* Співпадає з розміром main-drop */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  z-index: 2;
  /* Поверх розмитого фону */
}

/* ЕФЕКТ ПОЯВИ ПРИ НАВЕДЕННІ ТА ДОТИКУ */
.slider-container:hover .slider-tooltip-wrapper,
.band-slider:active~.slider-tooltip-wrapper {
  opacity: 1;
  transform: scale(1);
}


.tick-labels {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  /* padding: 0 14px; */
  padding: 0;
  color: #64748b;
  font-size: 11px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.tick-labels span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
}

.tick-labels span::before {
  width: 1px;
  height: 6px;
  background: #cbd5e1;
  content: "";
}

.mobile-overall-slots {
  display: grid;
  gap: 16px;
}

button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  transition: all 150ms;
}

span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.info-disclosure {
  background: #fff;
}

.info-disclosure__summary {
  display: none;
}

.hero {
  padding: 58px 24px 36px;
  color: #fff;
  background: linear-gradient(135deg, #2360b0 0%, #064793 58%, #032f68 100%);
}

.hero .page,
.content-section .page {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
}

.hero-badge img {
  width: 22px;
  height: 22px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.hero h1 strong {
  color: #7be594;
}

.hero-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.6;
}

.content-section {
  padding: 42px 24px 82px;
  background: #f8fafc;
}

.content {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.content h2,
.content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #0f172a;
  line-height: 1.25;
}

.content h2:first-child {
  margin-top: 0;
}

.content h2 {
  font-size: 28px;
}

.content h3 {
  font-size: 20px;
}

.content p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.content-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.info-box {
  margin: 6px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: #eef6ff;
}

.info-box p {
  color: #1e3a5f;
}


@media (max-width: 370px) {
  .brand-link {
    font-size: 16px;
  }

  .arc-widget {
    width: 100vw;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 1199px) {

  .app-shell,
  .mobile-result,
  .result-panel {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .result-panel {
    background: linear-gradient(0deg, rgba(0, 0, 0, .0) 60%, #2360B0 90%), linear-gradient(135deg, rgba(0, 69, 160, .76) 36%, rgba(0, 53, 138, .94) 99%);
    text-shadow: 0 0 12px #154392;
  }

  .arc-widget__stage {
    height: 184px;
  }

  .arc-widget__svg {
    bottom: 10px;
  }

  .mobile-content {
    width: 100vw;
    max-width: 100vw;
  }

  .mobile-content>.score-box {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .mobile-content .skill-tile,
  .mobile-content .slider-tile,
  .mobile-content .segmented,
  .mobile-content .score-box__actions {
    width: calc(100vw - 72px);
    max-width: 100%;
  }

  .info-disclosure {
    width: 100vw;
    max-width: 100vw;
    padding: 0 16px 40px;
    overflow-x: hidden;
  }

  .info-disclosure__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 56px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f5f7fc;
    color: var(--ink);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    list-style: none;
  }

  .info-disclosure__summary::-webkit-details-marker {
    display: none;
  }

  .info-disclosure__summary img {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }

  .info-disclosure__summary span {
    flex: 1 1 auto;
    min-width: 0;
  }

  .info-disclosure__summary::after {
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    content: "";
    transform: rotate(45deg);
    transition: transform 160ms ease;
  }

  .info-disclosure>.hero,
  .info-disclosure>.content-section {
    display: none;
  }

  .info-disclosure[open].is-expanded>.hero,
  .info-disclosure[open].is-expanded>.content-section {
    display: block;
  }

  .info-disclosure[open] .info-disclosure__summary {
    border-bottom-color: transparent;
    border-radius: 16px 16px 0 0;
  }

  .info-disclosure[open] .info-disclosure__summary::after {
    transform: translateY(3px) rotate(225deg);
  }

  .hero {
    padding: 18px 16px 14px;
    border: 1px solid var(--line);
    border-top: 0;
    background: linear-gradient(135deg, #2360b0 0%, #064793 68%, #032f68 100%);
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-description {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-badge {
    display: none;
    /* margin-bottom: 10px; */
    /* padding: 6px 10px; */
    /* font-size: 13px; */
  }

  .content-section {
    padding: 16px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: #fff;
  }

  .content {
    gap: 12px;
  }

  .content h2 {
    font-size: 21px;
  }

  .content h3 {
    font-size: 17px;
  }

  .content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .content-icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .target-wrap {
    position: absolute;
    width: 100%;
    height: 170px;
    bottom: 0;
    z-index: -1;
  }

  .splash-image-2 {
    width: 442px;
    height: 412px;
    transform: scale(0) rotateY(180deg);
  }

  .splash-image-2.is-visible {
    transform: scale(1) rotateY(180deg);
  }

  .dartboard-image {
    opacity: 0;
  }

}

@media (min-width: 1200px) {

  .mobile-result,
  .mobile-content {
    display: none;
  }

  .desktop-nav {
    display: block;
    min-height: 44px;
  }

  .desktop-nav__inner {
    display: flex;
    align-items: center;
    white-space: pre;
    width: 1120px;
    min-height: 44px;
    margin: 0 auto;
    color: #2a2a2a;
    font-size: 32px;
    font-weight: 700;
  }

  .desktop-nav__inner a {
    display: block;
    width: 32px;
    height: 32px;
    color: #2a2a2a;
    margin: 0;
    margin-right: 4px;
    padding: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: all 150ms;
  }

  .desktop-nav__inner a:hover {
    color: #0d54c1;
    margin-right: 12px;
  }

  .desktop-nav__inner strong {
    color: var(--blue);
  }

  .desktop-page {
    display: block;
    padding: 92px 40px 60px;
  }

  .desktop-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    width: min(1120px, 100%);
    margin: 0 auto;
  }

  .desktop-grid__left {
    display: grid;
    gap: 16px;
    align-content: start;
  }

  .desktop-result {
    border-radius: 24px;
    background: linear-gradient(135deg, #2360b0 36%, #013f8a 99%);
  }

  .score-box--overall {
    align-content: start;
  }

  .score-box__header {
    min-height: 36px;
  }

  .segmented--header {
    /* display: grid; */
    display: flex;
  }

  .segmented--mobile {
    display: none;
  }

  .skill-tile {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .stepper--compact {
    display: grid;
    width: 144px;
  }
}