:root {
  --ink: #20131a;
  --muted: #78646e;
  --line: rgba(78, 35, 52, 0.12);
  --paper: rgba(255, 255, 255, 0.82);
  --rose: #d94f73;
  --berry: #711f46;
  --plum: #2b1634;
  --peach: #ff9a76;
  --cream: #fff8f3;
  --shadow: 0 22px 70px rgba(78, 35, 52, 0.16);
  --font: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 154, 118, 0.32), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(217, 79, 115, 0.18), transparent 28%),
    radial-gradient(circle at 75% 90%, rgba(113, 31, 70, 0.14), transparent 32%),
    linear-gradient(180deg, #fff8f3, #f7eef5 58%, #fffaf7);
  font-family: var(--font);
  letter-spacing: 0;
}

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

#app {
  width: min(100%, 480px);
  min-height: 100svh;
  margin: 0 auto;
  overflow-x: hidden;
}

.screen {
  min-height: 100svh;
  padding: 14px;
}

.shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  min-height: calc(100svh - 28px);
  padding: 18px 17px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(43, 22, 52, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 22, 52, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(255, 221, 204, 0.86), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 248, 0.88));
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(32, 19, 26, 0.54);
  font-size: 12px;
  font-weight: 900;
}

.hero-title {
  position: relative;
  z-index: 2;
  padding: 24px 2px 0;
}

.hero-title p {
  margin: 0 0 14px;
  color: #a14423;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.hero-title h1 {
  margin: 0;
  display: grid;
  justify-items: start;
  gap: 5px;
  color: var(--plum);
  font-size: clamp(40px, 12vw, 58px);
  line-height: 1.03;
  font-weight: 950;
}

.hero-title h1 b {
  display: inline-block;
  padding: 0 10px 6px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #7a1f48, #d94f73);
  box-shadow: 0 14px 34px rgba(217, 79, 115, 0.24);
}

.hero-title h1 .soft {
  background: linear-gradient(135deg, #2b1634, #b85b8b);
}

.hero-title h1 em {
  color: rgba(43, 22, 52, 0.92);
  font-size: clamp(28px, 8vw, 38px);
  font-style: normal;
}

.hero-title strong {
  display: block;
  margin-top: 16px;
  color: rgba(32, 19, 26, 0.68);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 850;
}

.duo {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  gap: 8px;
  margin: 24px 0 16px;
}

.duo-card {
  min-height: 122px;
  padding: 15px 13px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(78, 35, 52, 0.12);
}

.duo-card.danger {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 229, 219, 0.86));
}

.duo-card.loved {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(247, 224, 239, 0.9));
}

.duo-card span {
  color: rgba(113, 31, 70, 0.52);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 950;
}

.duo-card h2 {
  margin: 12px 0 8px;
  color: var(--plum);
  font-size: 25px;
  line-height: 1;
}

.duo-card p {
  margin: 0;
  color: rgba(32, 19, 26, 0.66);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
}

.duo i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: white;
  background: var(--plum);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(43, 22, 52, 0.24);
}

.dims {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: auto;
  padding: 13px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.dims span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: rgba(32, 19, 26, 0.74);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.primary,
.ghost,
.icon-btn {
  border: 0;
  cursor: pointer;
}

.primary {
  width: 100%;
  min-height: 56px;
  margin-top: 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--plum), var(--berry) 45%, var(--rose));
  box-shadow: 0 16px 36px rgba(113, 31, 70, 0.22);
  font-size: 16px;
  font-weight: 950;
}

.notice {
  margin: 14px auto 0;
  max-width: 92%;
  color: rgba(32, 19, 26, 0.48);
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
}

.quiz-box {
  min-height: calc(100svh - 28px);
  padding: 16px;
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 24px;
}

.quiz-head div {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  margin: 16px 0 18px;
}

.progress-grid button {
  aspect-ratio: 1;
  border: 0;
  border-radius: 5px;
  background: rgba(78, 35, 52, 0.11);
}

.progress-grid button.done {
  background: linear-gradient(135deg, var(--rose), var(--berry));
}

.progress-grid button.active {
  outline: 2px solid var(--plum);
  outline-offset: 2px;
}

.question-card {
  padding: 22px 4px 10px;
}

.question-card p {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 950;
}

.question-card h1 {
  margin: 0 0 20px;
  color: var(--plum);
  font-size: 26px;
  line-height: 1.35;
}

.options {
  display: grid;
  gap: 10px;
}

.option {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.option span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--rose);
  background: rgba(217, 79, 115, 0.1);
  font-weight: 950;
}

.option b {
  font-size: 15px;
  line-height: 1.55;
}

.option.selected {
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--rose));
}

.option.selected span {
  color: var(--berry);
  background: white;
}

.quiz-actions {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 10px;
  margin-top: 18px;
}

.ghost {
  min-height: 52px;
  border-radius: 999px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 950;
}

.ghost:disabled {
  opacity: 0.45;
}

.primary.small {
  min-height: 52px;
  margin: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 10;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: rgba(43, 22, 52, 0.92);
  opacity: 0;
  transition: 0.18s ease;
  font-size: 14px;
  font-weight: 850;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%);
}

.result {
  display: grid;
  gap: 14px;
}

.result-hero {
  padding: 18px;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 154, 118, 0.24), transparent 35%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 247, 0.88));
}

.result-label {
  margin: 34px 0 10px;
  color: var(--rose);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 950;
}

.result-hero h1 {
  margin: 0;
  color: var(--plum);
  text-align: center;
  font-size: 46px;
  line-height: 1.1;
}

.result-hero h2 {
  margin: 10px 0 0;
  color: rgba(32, 19, 26, 0.58);
  text-align: center;
  font-size: 18px;
}

.result-hero p:not(.result-label) {
  color: rgba(32, 19, 26, 0.7);
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 800;
}

.hero-bars {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.report {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.report-section,
.metric-block,
.quote {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.report-section {
  padding: 17px;
}

.report-section h3,
.metric-block h3 {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 19px;
}

.report-section p {
  margin: 0;
  color: rgba(32, 19, 26, 0.72);
  font-size: 15px;
  line-height: 1.78;
  font-weight: 700;
}

.quote {
  padding: 18px;
  color: var(--berry);
  background: linear-gradient(135deg, rgba(217, 79, 115, 0.12), rgba(255, 154, 118, 0.14));
  font-size: 18px;
  line-height: 1.65;
  font-weight: 950;
}

.metric-block {
  display: grid;
  gap: 12px;
  padding: 17px;
}

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

.bar-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(32, 19, 26, 0.78);
  font-size: 14px;
  font-weight: 900;
}

.bar-row b {
  color: rgba(32, 19, 26, 0.48);
}

.track {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(78, 35, 52, 0.09);
}

.track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7a1f48, #d94f73);
}

.bar.love .track i {
  background: linear-gradient(90deg, #8f4772, #ff9a76);
}

.result-buttons {
  display: grid;
  gap: 10px;
}

@media (max-width: 380px) {
  .hero-title h1 {
    font-size: 38px;
  }

  .duo-card h2 {
    font-size: 22px;
  }

  .duo-card {
    min-height: 112px;
    padding: 13px 11px;
  }

  .question-card h1 {
    font-size: 24px;
  }

  .result-hero h1 {
    font-size: 40px;
  }
}

.home-v2 {
  padding: 14px;
}

.hero-v2 {
  min-height: calc(100svh - 28px);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 223, 209, 0.92), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(245, 216, 231, 0.78), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 250, 0.9));
  border-radius: 34px;
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(43, 22, 52, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 22, 52, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 72%);
}

.topbar-v2 {
  position: relative;
  z-index: 2;
}

.cover-v2 {
  position: relative;
  z-index: 2;
  padding: 24px 2px 0;
}

.cover-kicker {
  margin: 0 0 14px;
  color: #a14423;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 950;
}

.cover-v2 h1 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(38px, 10.6vw, 54px);
  line-height: 1.15;
  font-weight: 950;
}

.cover-v2 h1 span {
  display: inline-block;
  margin-top: 4px;
  padding: 0 9px 5px;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, #7a1f48, #d94f73);
  box-shadow: 0 12px 28px rgba(217, 79, 115, 0.22);
}

.cover-v2 h1 span:last-child {
  background: linear-gradient(135deg, #2b1634, #ad5b8a);
}

.cover-desc {
  margin: 18px 0 0;
  max-width: 92%;
  color: rgba(32, 19, 26, 0.68);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 850;
}

.spectrum-card {
  position: relative;
  z-index: 2;
  margin: 26px 0 14px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(78, 35, 52, 0.1);
}

.spectrum-head,
.spectrum-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.spectrum-head b {
  color: var(--plum);
  font-size: 20px;
  line-height: 1;
}

.spectrum-foot span {
  width: 42%;
  color: rgba(32, 19, 26, 0.58);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.spectrum-foot span:last-child {
  text-align: right;
}

.spectrum-line {
  position: relative;
  height: 18px;
  margin: 15px 2px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d94f73, #f3c1cf 48%, #7a1f48);
}

.spectrum-line i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border: 5px solid white;
  border-radius: 999px;
  background: var(--plum);
  box-shadow: 0 10px 22px rgba(43, 22, 52, 0.22);
}

.value-card {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.value-card p {
  margin: 0 0 12px;
  color: rgba(32, 19, 26, 0.64);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
}

.value-card div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.value-card span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: rgba(43, 22, 52, 0.82);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.value-card .value-grid-v3 {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.value-grid-v3 span {
  position: relative;
  min-height: 84px;
  padding: 13px 12px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  text-align: left;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 154, 118, 0.26), transparent 46%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(78, 35, 52, 0.08);
}

.value-grid-v3 span:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 79, 115, 0.22), transparent 48%),
    rgba(255, 255, 255, 0.78);
}

.value-grid-v3 span:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(113, 31, 70, 0.2), transparent 48%),
    rgba(255, 255, 255, 0.78);
}

.value-grid-v3 span:nth-child(4) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 202, 180, 0.38), transparent 48%),
    rgba(255, 255, 255, 0.78);
}

.value-grid-v3 i {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--rose));
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.value-grid-v3 b,
.value-grid-v3 em {
  display: block;
}

.value-grid-v3 b {
  color: var(--plum);
  font-size: 16px;
  line-height: 1.1;
}

.value-grid-v3 em {
  margin-top: 6px;
  color: rgba(32, 19, 26, 0.54);
  font-size: 11px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 800;
}

.primary-v2 {
  position: relative;
  z-index: 2;
}

.result-v2 {
  display: grid;
  gap: 14px;
}

.result-cover {
  padding: 18px;
  color: white;
  background:
    radial-gradient(circle at 78% 8%, rgba(217, 79, 115, 0.44), transparent 35%),
    radial-gradient(circle at 16% 0%, rgba(255, 154, 118, 0.24), transparent 32%),
    linear-gradient(160deg, #211129, #4b183a 55%, #7a1f48);
  border-radius: 32px;
  box-shadow: 0 24px 76px rgba(78, 35, 52, 0.24);
}

.result-cover .topbar {
  color: rgba(255, 255, 255, 0.64);
}

.result-title-v2 {
  padding-top: 36px;
  text-align: center;
}

.result-title-v2 p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 950;
}

.result-title-v2 h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.result-title-v2 span {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffe9f0;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.result-summary-card {
  margin-top: 28px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.result-summary-card b {
  display: block;
  margin-bottom: 8px;
  color: #ffd1df;
  font-size: 14px;
}

.result-summary-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 850;
}

.score-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.score-card {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.score-card span,
.score-card strong {
  display: block;
}

.score-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
}

.score-card strong {
  margin: 8px 0 11px;
  color: white;
  font-size: 22px;
}

.score-card .track {
  background: rgba(255, 255, 255, 0.16);
}

.score-card .track i {
  background: linear-gradient(90deg, #ff9a76, #ffd1df);
}

.report-v2 {
  padding: 14px;
  gap: 12px;
}

.narrative-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.narrative-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: white;
  background: var(--plum);
  font-weight: 950;
}

.narrative-card h3,
.insight-card h3,
.action-plan h3 {
  margin: 0 0 8px;
  color: var(--plum);
  font-size: 18px;
}

.narrative-card p,
.insight-card p,
.action-plan span {
  margin: 0;
  color: rgba(32, 19, 26, 0.7);
  font-size: 14px;
  line-height: 1.72;
  font-weight: 750;
}

.quote-v2 {
  padding: 18px;
  border-radius: 24px;
  color: #661c41;
  background:
    linear-gradient(135deg, rgba(255, 154, 118, 0.22), rgba(217, 79, 115, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 950;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.insight-card {
  min-height: 158px;
  padding: 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.insight-rich {
  position: relative;
  min-height: 178px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(217, 79, 115, 0.2), transparent 40%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 244, 249, 0.78));
  box-shadow: 0 16px 38px rgba(78, 35, 52, 0.1);
}

.insight-rich:nth-child(2) {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 154, 118, 0.26), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 238, 0.82));
}

.insight-rich:nth-child(3) {
  background:
    radial-gradient(circle at 92% 10%, rgba(43, 22, 52, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(248, 241, 247, 0.84));
}

.insight-rich:nth-child(4) {
  background:
    radial-gradient(circle at 92% 10%, rgba(162, 72, 118, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(255, 242, 247, 0.84));
}

.insight-rich::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -28px;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  border: 18px solid rgba(255, 255, 255, 0.36);
}

.insight-rich > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(78, 35, 52, 0.16);
}

.insight-rich h3 {
  font-size: 20px;
  line-height: 1.25;
}

.insight-rich p {
  position: relative;
  z-index: 2;
  color: rgba(32, 19, 26, 0.66);
  font-size: 14px;
  line-height: 1.72;
}

.metric-v2 {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(255, 244, 249, 0.78));
}

.action-plan {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.action-plan div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.action-plan b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--rose));
}

@media (max-width: 380px) {
  .cover-v2 h1 {
    font-size: 36px;
  }

  .cover-desc {
    font-size: 14px;
  }

  .spectrum-card {
    margin-top: 18px;
  }

  .result-title-v2 h1 {
    font-size: 40px;
  }

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