:root {
  --ink: #1e1e1e;
  --paper: #fff7e7;
  --paper-deep: #f3dfbd;
  --signal: #a8ff35;
  --green: #5f7f5f;
  --mint: #89d7b5;
  --coral: #ff7d6b;
  --blue: #202846;
  --white: #fffaf0;
  --shadow: 8px 8px 0 rgba(30, 30, 30, 0.95);
  --soft-shadow: 0 26px 60px rgba(32, 40, 70, 0.18);
  color: var(--ink);
  font-family:
    ui-rounded,
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    system-ui,
    sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: #fff9ee;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(168, 255, 53, 0.2), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(255, 125, 107, 0.24), transparent 25%),
    linear-gradient(180deg, #fff9ee 0%, #f4e6cf 100%);
  transition:
    background 280ms ease,
    color 280ms ease;
}

.screen {
  display: none;
  min-height: 100svh;
  padding: 42px clamp(18px, 4vw, 64px);
}

.screen.is-active {
  display: grid;
  animation: screenIn 420ms ease both;
}

.hero-screen {
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  grid-template-areas: "copy art";
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  max-width: 640px;
}

.eyebrow,
.quiz-label,
.question-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 600px;
  font-size: clamp(52px, 8.3vw, 112px);
}

.hero-lede {
  max-width: 480px;
  margin: 24px 0 34px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.hero-art {
  grid-area: art;
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(78svh, 820px);
  perspective: 1200px;
}

.card-stack {
  position: relative;
  width: min(66vw, 430px);
  aspect-ratio: 9 / 16;
  animation: cardFan 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.stack-card {
  position: absolute;
  inset: 0;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: 50% 92%;
}

.stack-card-back {
  opacity: 0.5;
  filter: saturate(0.7);
  transform: translateX(-40px) translateY(26px) rotate(-9deg) scale(0.94);
}

.stack-card-mid {
  opacity: 0.76;
  transform: translateX(32px) translateY(14px) rotate(7deg) scale(0.97);
}

.stack-card-front {
  transform: rotate(2.4deg);
}

.stack-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card,
.result-image-wrap {
  position: relative;
  margin: 0;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before,
.result-image-wrap::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(30, 30, 30, 0.1);
  border-radius: 22px;
  pointer-events: none;
  z-index: 1;
}

.hero-card img,
.result-image {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.hero-meter {
  position: absolute;
  right: max(4%, 12px);
  bottom: 13%;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 5px 5px 0 var(--ink);
  animation: floatIn 900ms ease both 180ms;
}

.hero-meter span {
  font-size: 13px;
  font-weight: 900;
}

.hero-meter strong {
  margin-top: -16px;
  font-size: 58px;
  line-height: 1;
}

.motion-ribbon {
  position: absolute;
  left: 0;
  top: 12%;
  width: min(88vw, 520px);
  padding: 10px 0;
  border-block: 2px solid rgba(30, 30, 30, 0.18);
  color: rgba(30, 30, 30, 0.5);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  transform: rotate(-7deg);
}

.primary-action,
.secondary-action,
.option-button {
  min-height: 54px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.primary-action {
  padding: 0 30px;
  background: var(--signal);
}

.primary-action.compact,
.secondary-action {
  padding: 0 22px;
}

.secondary-action {
  background: var(--white);
}

.primary-action:hover,
.secondary-action:hover,
.option-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.quiz-screen {
  align-content: center;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.quiz-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.quiz-count {
  font-weight: 900;
}

.progress-track {
  width: 100%;
  height: 20px;
  margin: 16px 0 38px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

.progress-fill {
  width: 5%;
  height: 100%;
  background: linear-gradient(90deg, var(--signal), var(--mint));
  transition: width 280ms ease;
  animation: progressGlow 1600ms ease-in-out infinite;
}

.question-stage {
  padding: clamp(24px, 5vw, 58px);
  border: 3px solid var(--ink);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(168, 255, 53, 0.22), transparent 38%),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.question-stage h2 {
  max-width: 780px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.08;
}

.options-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.option-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  background: #fffdf6;
}

.option-key {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--signal);
}

.option-button.is-picked {
  background: var(--mint);
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--ink);
}

.result-screen {
  grid-template-columns: minmax(360px, 0.88fr) minmax(620px, 1.12fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.result-hero {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.result-image-wrap {
  width: clamp(230px, 22vw, 315px);
  transform: rotate(-1.6deg);
}

.result-summary {
  display: flex;
  justify-content: center;
  width: min(100%, 620px);
  max-width: 620px;
}

.result-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 66px;
  padding: 0 34px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #ffd43b;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.result-status:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.result-comment {
  margin: 8px auto 0;
  font-size: 17px;
  line-height: 1.7;
}

.result-index {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(470px, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
  align-items: start;
  padding: clamp(16px, 2.2vw, 24px);
  border: 2px solid rgba(30, 30, 30, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(168, 255, 53, 0.18), transparent 34%),
    rgba(255, 250, 240, 0.72);
  box-shadow: 0 30px 80px rgba(30, 30, 30, 0.12);
}

.score-column {
  display: grid;
  grid-template-rows: repeat(2, minmax(284px, auto));
  gap: 12px;
  width: 100%;
}

.score-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 284px;
  padding: 24px 18px 26px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.78), transparent 31%),
    linear-gradient(160deg, #d9ff70 0%, var(--signal) 68%, #6fe832 100%);
  box-shadow: 5px 5px 0 rgba(30, 30, 30, 0.86);
}

.score-panel-label,
.score-panel small {
  font-size: 16px;
  font-weight: 950;
  text-align: center;
}

.score-panel strong {
  margin: 8px 0 14px;
  font-size: clamp(50px, 4.8vw, 68px);
  line-height: 0.88;
  letter-spacing: 0;
}

.score-panel small {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.score-panel b {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1;
}

.radar-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 284px;
  padding: 16px 14px 12px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 52%, rgba(168, 255, 53, 0.17), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 240, 0.68)),
    var(--white);
  box-shadow: 5px 5px 0 rgba(30, 30, 30, 0.82);
}

.radar-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: min(100%, 250px);
  font-weight: 950;
}

.radar-title span {
  color: var(--green);
  font-size: 12px;
}

.radar-title b {
  font-size: 15px;
}

.radar-chart {
  width: min(100%, 224px);
  aspect-ratio: 1;
  overflow: visible;
}

.radar-halo {
  fill: rgba(255, 255, 255, 0.36);
  stroke: rgba(95, 127, 95, 0.18);
  stroke-width: 10;
}

.radar-grid-line {
  fill: none;
  stroke: rgba(30, 30, 30, 0.18);
  stroke-width: 2;
}

.radar-grid-line.is-outer {
  stroke: var(--ink);
  stroke-width: 3.4;
}

.radar-axis {
  stroke: rgba(95, 127, 95, 0.22);
  stroke-width: 1.7;
}

.radar-glow {
  fill: rgba(168, 255, 53, 0.22);
  stroke: none;
  transform: scale(1.08);
  transform-origin: center;
}

.radar-shape {
  fill: rgba(168, 255, 53, 0.48);
  stroke: #577968;
  stroke-linejoin: round;
  stroke-width: 4.2;
  filter: drop-shadow(3px 4px 0 rgba(30, 30, 30, 0.18));
  animation: radarPop 520ms ease both;
}

.radar-dot {
  fill: var(--signal);
  stroke: var(--ink);
  stroke-width: 2.7;
}

.radar-label {
  fill: var(--ink);
  font-size: 16px;
  font-weight: 950;
  text-anchor: middle;
  dominant-baseline: middle;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "key name value"
    "desc desc desc";
  gap: 8px 10px;
  min-height: 136px;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.24)),
    var(--white);
  box-shadow: 5px 5px 0 rgba(30, 30, 30, 0.82);
}

.stat-key {
  grid-area: key;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 13px;
  background: var(--signal);
  font-size: 20px;
  font-weight: 950;
}

.stat-name {
  grid-area: name;
  align-self: center;
  font-size: 22px;
  font-weight: 950;
}

.stat-value {
  grid-area: value;
  align-self: start;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 0.9;
  letter-spacing: 0;
}

.stat-description {
  grid-area: desc;
  align-self: end;
  color: rgba(30, 30, 30, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.score-core {
  position: absolute;
  left: min(190px, 50%);
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-50%, -50%);
}

.score-core span {
  font-size: 12px;
  font-weight: 900;
}

.score-core strong {
  font-size: 44px;
  line-height: 0.95;
}

.result-orbit {
  position: relative;
  width: min(72vw, 400px);
  aspect-ratio: 1;
  border: 2px solid rgba(30, 30, 30, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(168, 255, 53, 0.28) 0 22%, transparent 23%),
    radial-gradient(circle at center, transparent 0 42%, rgba(95, 127, 95, 0.09) 43% 45%, transparent 46%),
    repeating-conic-gradient(from -90deg, rgba(30, 30, 30, 0.05) 0 1deg, transparent 1deg 45deg),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--soft-shadow);
  animation: orbitReveal 620ms ease both;
  overflow: visible;
}

.result-orbit::before,
.result-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px dashed rgba(30, 30, 30, 0.14);
  border-radius: 999px;
}

.result-orbit::after {
  inset: 32%;
}

.radial-spoke {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 38%;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.08);
  transform: translate(-50%, -100%) rotate(var(--angle));
  transform-origin: 50% 100%;
  overflow: hidden;
}

.spoke-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: var(--value);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--signal), var(--green));
  box-shadow: 0 0 18px rgba(95, 127, 95, 0.26);
  animation: spokeRise 720ms ease both;
}

.orbit-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  min-height: 50px;
  padding: 6px;
  border: 2px solid rgba(30, 30, 30, 0.82);
  border-radius: 999px;
  background: var(--chip-bg, var(--white));
  box-shadow: 3px 3px 0 var(--ink);
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(var(--distance))
    rotate(var(--angle-inverse));
}

.orbit-chip strong {
  font-size: 18px;
  line-height: 1;
}

.orbit-chip span {
  font-size: 11px;
  font-weight: 900;
}

.dimension-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dimension-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px 10px;
  font-size: 13px;
  font-weight: 900;
}

.metric-card {
  min-height: 82px;
  padding: 12px;
  border: 2px solid rgba(30, 30, 30, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.metric-key {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--signal);
}

.metric-name {
  color: rgba(30, 30, 30, 0.7);
}

.metric-value {
  font-size: 24px;
  line-height: 1;
}

.bar-track {
  grid-column: 1 / -1;
  height: 12px;
  border: 1px solid rgba(30, 30, 30, 0.22);
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.08);
  overflow: hidden;
}

.bar-fill {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--mint));
  animation: barGrow 720ms ease both;
  transform-origin: left center;
}

.result-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.layout-theater {
  --signal: #a8ff35;
  --green: #526f55;
  --mint: #8ddfbd;
  --coral: #ff8a76;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 138, 118, 0.18), transparent 28%),
    linear-gradient(180deg, #fff8e9 0%, #f4ddc9 100%);
  background-size: auto;
}

.layout-theater .hero-screen {
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
}

.layout-theater .card-stack {
  width: min(58vw, 455px);
}

.layout-theater .stack-card-back {
  opacity: 0.58;
  transform: translateX(-74px) translateY(30px) rotate(-13deg) scale(0.9);
}

.layout-theater .stack-card-mid {
  opacity: 0.82;
  transform: translateX(62px) translateY(12px) rotate(10deg) scale(0.95);
}

.layout-theater .stack-card-front {
  transform: translateY(-8px) rotate(-1.4deg);
}

.layout-theater .motion-ribbon {
  left: -8%;
  top: 9%;
}

.layout-theater .result-screen {
  grid-template-columns: minmax(380px, 0.9fr) minmax(660px, 1.1fr);
}

.layout-theater .result-index {
  margin-top: clamp(24px, 5vh, 54px);
}

.layout-theater .result-hero {
  position: relative;
  isolation: isolate;
  padding-top: 18px;
}

.layout-theater .result-image-wrap {
  width: clamp(330px, 27vw, 430px);
  transform: rotate(-2.4deg);
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes cardFan {
  from {
    opacity: 0;
    transform: translateY(42px) rotateX(8deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes progressGlow {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.45) brightness(1.08);
  }
}

@keyframes orbitReveal {
  from {
    opacity: 0;
    transform: scale(0.92) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes spokeRise {
  from {
    height: 0;
  }
  to {
    height: var(--value);
  }
}

@keyframes radarPop {
  from {
    opacity: 0;
    transform: scale(0.82);
    transform-origin: center;
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
  }
}

@media (max-width: 980px) {
  .hero-screen,
  .result-screen {
    grid-template-columns: 1fr;
  }

  .layout-theater .hero-screen,
  .layout-theater .result-screen {
    grid-template-columns: 1fr;
  }

  .hero-screen {
    grid-template-areas:
      "copy"
      "art";
  }

  .hero-art {
    min-height: auto;
  }

  .card-stack {
    width: min(58vw, 300px);
  }

  .result-index {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .score-column,
  .score-panel,
  .stat-grid {
    width: 100%;
    max-width: 640px;
    min-width: 0;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .score-core {
    left: 50%;
    top: min(190px, 31vw);
  }

  .dimension-bars {
    width: min(100%, 540px);
  }
}

@media (max-width: 700px) {
  .screen {
    padding: 24px 18px;
  }

  .hero-screen {
    align-content: start;
    gap: 22px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-lede {
    margin: 18px 0 24px;
    font-size: 17px;
  }

  .card-stack {
    width: min(64vw, 240px);
  }

  .layout-theater .card-stack {
    width: min(64vw, 240px);
  }

  .hero-card {
    border-radius: 24px;
  }

  .layout-theater .result-index {
    margin-top: 0;
  }

  .motion-ribbon {
    display: none;
  }

  .stack-card-back {
    transform: translateX(-22px) translateY(18px) rotate(-7deg) scale(0.94);
  }

  .stack-card-mid {
    transform: translateX(20px) translateY(10px) rotate(6deg) scale(0.97);
  }

  .layout-theater .stack-card-back {
    transform: translateX(-24px) translateY(16px) rotate(-7deg) scale(0.92);
  }

  .layout-theater .stack-card-mid {
    transform: translateX(24px) translateY(8px) rotate(6deg) scale(0.95);
  }

  .layout-theater .stack-card-front {
    transform: translateY(-4px) rotate(-1deg);
  }

  .hero-meter {
    width: 108px;
    height: 108px;
    right: 1%;
    bottom: 6%;
  }

  .hero-meter strong {
    font-size: 46px;
  }

  .question-stage {
    padding: 22px;
    border-radius: 24px;
  }

  .question-stage h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .option-button {
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }

  .result-screen {
    align-content: start;
  }

  .result-image-wrap {
    width: min(66vw, 260px);
  }

  .layout-theater .result-image-wrap {
    width: min(64vw, 260px);
  }

  .result-comment {
    font-size: 15px;
  }

  .result-orbit {
    width: min(70vw, 292px);
  }

  .result-index {
    width: 100%;
    min-width: 0;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.58);
    box-shadow: 0 18px 42px rgba(30, 30, 30, 0.1);
  }

  .score-column,
  .score-panel,
  .stat-grid {
    max-width: none;
  }

  .score-column {
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .score-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: start;
    min-height: 126px;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .radar-panel {
    min-height: 236px;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .radar-chart {
    width: min(100%, 196px);
  }

  .score-panel-label {
    grid-column: 1 / -1;
    font-size: 13px;
    text-align: left;
  }

  .score-panel strong {
    margin: 4px 0 0;
    font-size: clamp(48px, 16vw, 64px);
    line-height: 0.9;
  }

  .score-panel small {
    justify-self: end;
    align-self: end;
    display: grid;
    gap: 0;
    font-size: 15px;
    line-height: 1.08;
    text-align: right;
  }

  .score-panel b {
    font-size: 42px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .stat-card {
    min-height: 118px;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 4px 4px 0 rgba(30, 30, 30, 0.82);
  }

  .stat-key {
    width: 34px;
    height: 34px;
    font-size: 18px;
    border-radius: 11px;
  }

  .stat-name {
    font-size: 16px;
  }

  .stat-value {
    font-size: 34px;
  }

  .stat-description {
    font-size: 12px;
  }

  .score-core {
    top: min(165px, 44vw);
    width: 94px;
    height: 94px;
  }

  .score-core strong {
    font-size: 38px;
  }

  .orbit-chip {
    width: 60px;
    min-height: 44px;
    border-radius: 14px;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateY(-38%)
      rotate(var(--angle-inverse));
  }

  .orbit-chip strong {
    font-size: 14px;
  }

  .orbit-chip span {
    font-size: 10px;
  }

  .radial-spoke {
    width: 9px;
  }

  .dimension-bars {
    grid-template-columns: 1fr;
  }

  .dimension-row {
    gap: 8px;
  }
}
