:root {
  --page: #eef1ee;
  --paper: #fbfcfa;
  --paper-2: #f5f7f4;
  --paper-3: #eef3ee;
  --ink: #111514;
  --ink-2: #28302d;
  --muted: #65706b;
  --soft: #929b96;
  --line: #dfe6df;
  --line-strong: #c8d3ca;
  --accent: #176448;
  --accent-soft: rgba(23, 100, 72, 0.1);
  --amber: #9a6f25;
  --amber-soft: rgba(154, 111, 37, 0.12);
  --red: #a54d43;
  --black: #0d1110;
  --shadow: 0 24px 72px rgba(13, 17, 16, 0.14);
  --phone-shadow: 0 42px 110px rgba(13, 17, 16, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

html {
  background:
    linear-gradient(115deg, rgba(23, 100, 72, 0.08), transparent 34%),
    linear-gradient(180deg, #f7f8f5 0%, var(--page) 100%);
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, "SF Pro Text", "SF Pro Display", "PingFang SC", "Microsoft YaHei",
    sans-serif;
  letter-spacing: 0;
}

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.product-stage {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1180px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 18px;
}

.product-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: 2px 0 18px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  font-weight: 820;
}

.view-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: min(100%, 352px);
  padding: 4px;
  border: 1px solid rgba(200, 211, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(251, 252, 250, 0.78);
  box-shadow: 0 12px 30px rgba(13, 17, 16, 0.06);
}

.tab-button {
  min-width: 0;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
}

.tab-button:hover,
.tab-button:focus-visible {
  background: #fff;
  color: var(--ink);
  outline: none;
}

.tab-button.active {
  background: var(--black);
  color: #fff;
}

.prototype-layout {
  display: grid;
  grid-template-columns: minmax(360px, 420px) minmax(320px, 430px);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 404px);
  height: min(850px, calc(100svh - 112px));
  min-height: 720px;
  margin: 0 auto;
  border: 1px solid rgba(13, 17, 16, 0.28);
  border-radius: 36px;
  background: #0b0f0e;
  box-shadow: var(--phone-shadow);
  overflow: hidden;
}

.view-panel {
  display: none;
  height: 100%;
  padding-top: 0;
  background: var(--paper);
  overflow-y: auto;
}

.view-panel.active {
  display: block;
  animation: screenIn 220ms ease both;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-screen,
.report-screen,
.rubric-screen,
.risk-screen {
  min-height: 100%;
  padding-bottom: 92px;
  background:
    linear-gradient(180deg, rgba(13, 17, 16, 0.035), transparent 160px),
    var(--paper);
}

.screen-head {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 13px 16px 10px;
  border-bottom: 1px solid rgba(223, 230, 223, 0.92);
  background: rgba(251, 252, 250, 0.9);
  backdrop-filter: blur(18px);
}

.head-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(13, 17, 16, 0.12);
  border-radius: 9px;
  background: var(--black);
  color: #d8f3e5;
  font-size: 12px;
  font-weight: 900;
}

.brand-lockup strong {
  display: block;
  overflow: hidden;
  font-size: 15px;
  font-weight: 860;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-lockup small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.timer-pill,
.mini-pill,
.score-pill,
.risk-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.timer-pill,
.score-pill {
  border-color: rgba(23, 100, 72, 0.24);
  background: var(--accent-soft);
  color: var(--accent);
}

.risk-pill {
  border-color: rgba(154, 111, 37, 0.3);
  background: var(--amber-soft);
  color: var(--amber);
}

.progress-block {
  display: grid;
  gap: 6px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--paper-3);
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.screen-body {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
}

.session-card,
.scenario-card,
.material-card,
.answer-card,
.choice-card,
.choice-result,
.signal-card,
.compact-panel,
.report-card,
.judge-card,
.risk-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.session-card {
  padding: 13px;
  border-color: rgba(13, 17, 16, 0.92);
  background: var(--black);
  color: #fff;
}

.session-card .eyebrow {
  color: #bcebd1;
}

.session-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
}

.session-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.42;
}

.session-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
}

.session-meta div {
  min-height: 50px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.session-meta strong {
  display: block;
  font-size: 17px;
  line-height: 1;
}

.session-meta span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.22;
}

.report-preview-card {
  display: grid;
  grid-template-columns: 1fr 126px;
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 100, 72, 0.04), transparent 42%),
    #fff;
  box-shadow: 0 12px 26px rgba(13, 17, 16, 0.04);
}

.preview-copy {
  display: grid;
  align-content: start;
}

.preview-copy h3 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 900;
}

.preview-points {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.preview-points span {
  display: grid;
  grid-template-columns: 24px auto 1fr;
  gap: 7px;
  align-items: center;
  min-height: 28px;
  padding: 0 2px 7px 0;
  border-bottom: 1px solid rgba(223, 230, 223, 0.92);
  color: var(--muted);
  font-size: 10px;
  font-weight: 820;
}

.preview-points span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.preview-points b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.preview-points strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.preview-points em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  white-space: nowrap;
}

.preview-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.blurred-report {
  position: relative;
  min-height: 142px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(216, 243, 229, 0.16);
  border-radius: 7px;
  background:
    radial-gradient(circle at 70% 18%, rgba(216, 243, 229, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(13, 17, 16, 0.96), rgba(12, 24, 19, 0.88)),
    var(--black);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(13, 17, 16, 0.12);
}

.blurred-report::before {
  position: absolute;
  right: -28px;
  bottom: 30px;
  left: -28px;
  color: rgba(216, 243, 229, 0.1);
  content: "VERIFIED";
  font-size: 18px;
  font-weight: 930;
  text-align: center;
  transform: rotate(-16deg);
}

.blurred-report::after {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 16, 0.08);
  backdrop-filter: blur(1.7px);
  content: "";
}

.blurred-report-head,
.mini-report-meta,
.blurred-radar,
.blurred-lines {
  position: relative;
  z-index: 1;
}

.blurred-report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.blurred-report-head span {
  max-width: 54px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 820;
  line-height: 1.25;
}

.blurred-report-head strong {
  color: #d8f3e5;
  font-size: 38px;
  line-height: 0.9;
  font-weight: 930;
}

.mini-report-meta {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.mini-report-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border: 1px solid rgba(216, 243, 229, 0.14);
  border-radius: 999px;
  color: rgba(216, 243, 229, 0.72);
  font-size: 8px;
  font-weight: 850;
}

.blurred-radar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: -2px auto 3px;
}

.blurred-radar span {
  width: 53px;
  height: 53px;
  clip-path: polygon(50% 4%, 95% 38%, 78% 94%, 22% 94%, 5% 38%);
  background:
    radial-gradient(circle at center, rgba(216, 243, 229, 0.15) 0 17%, transparent 18%),
    linear-gradient(145deg, rgba(216, 243, 229, 0.34), rgba(23, 100, 72, 0.72));
  box-shadow: inset 0 0 0 4px rgba(216, 243, 229, 0.12);
}

.blurred-lines {
  display: grid;
  gap: 5px;
}

.blurred-lines i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(216, 243, 229, 0.2);
}

.blurred-lines i:nth-child(2) {
  width: 74%;
}

.blurred-lines i:nth-child(3) {
  width: 58%;
}

.auth-card,
.verify-card,
.identity-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.auth-card {
  border-color: rgba(13, 17, 16, 0.92);
  background: var(--black);
  color: #fff;
}

.auth-card .eyebrow {
  color: #bcebd1;
}

.auth-card h2,
.identity-card h3 {
  margin-bottom: 9px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.auth-card p,
.verify-card p,
.identity-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.identity-card p,
.verify-card p {
  color: var(--muted);
}

.auth-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
}

.auth-steps span {
  display: grid;
  place-items: center;
  min-height: 38px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 850;
}

.auth-steps span.active {
  background: rgba(188, 235, 209, 0.16);
  color: #d8f3e5;
}

.wechat-mark {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 96px;
  margin-bottom: 12px;
  border: 1px solid rgba(23, 100, 72, 0.22);
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
  font-weight: 930;
}

.verify-card {
  display: grid;
  gap: 12px;
}

.verify-card label {
  display: grid;
  gap: 7px;
}

.verify-card label > span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 850;
}

.verify-card input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  outline: none;
}

.verify-card input:focus {
  border-color: rgba(23, 100, 72, 0.62);
  box-shadow: 0 0 0 4px rgba(23, 100, 72, 0.08);
}

.verify-row {
  display: grid;
  grid-template-columns: 1fr 116px;
  gap: 8px;
}

.verify-row .secondary-button {
  min-height: 44px;
  font-size: 12px;
}

.form-hint {
  color: var(--accent) !important;
  font-weight: 760;
}

.scenario-card,
.material-card,
.answer-card,
.choice-card,
.choice-result,
.signal-card,
.compact-panel,
.report-card,
.judge-card,
.risk-card {
  padding: 14px;
}

.scenario-card {
  padding: 13px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.card-top h3,
.compact-panel h3,
.report-card h3,
.judge-card h3,
.risk-card h3 {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.18;
}

.card-top p,
.scenario-card p,
.material-card p,
.answer-card p,
.signal-card p,
.compact-panel p,
.report-card p,
.judge-card p,
.risk-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.question-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 9px;
}

.question-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(200, 211, 202, 0.86);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.question-meta span:first-child {
  border-color: rgba(23, 100, 72, 0.24);
  background: var(--accent-soft);
  color: var(--accent);
}

.question-title {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 900;
}

.prompt-box {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.42;
}

.material-grid {
  display: grid;
  gap: 8px;
}

.material-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-2);
}

.material-row span,
.signal-row-marker {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.material-row p {
  color: var(--ink-2);
  font-size: 12px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.signal-row span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
}

.answer-card textarea {
  width: 100%;
  min-height: 126px;
  margin-top: 11px;
  padding: 12px;
  resize: vertical;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fcfdfb;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  outline: none;
}

.answer-card textarea:focus {
  border-color: rgba(23, 100, 72, 0.62);
  box-shadow: 0 0 0 4px rgba(23, 100, 72, 0.08);
}

.choice-list {
  display: grid;
  gap: 8px;
}

.choice-option {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 9px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.choice-option:hover,
.choice-option:focus-visible {
  border-color: var(--line-strong);
  outline: none;
  transform: translateY(-1px);
}

.choice-option.selected {
  border-color: rgba(23, 100, 72, 0.55);
  background: rgba(23, 100, 72, 0.06);
  box-shadow: 0 0 0 3px rgba(23, 100, 72, 0.08);
}

.choice-letter {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.choice-option.selected .choice-letter {
  background: var(--accent);
  color: #fff;
}

.choice-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  line-height: 1.35;
}

.choice-copy strong {
  display: inline;
  min-width: 0;
  font-size: 13px;
  line-height: inherit;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 8px 0 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.result-grid div {
  min-height: 58px;
  padding: 10px;
  background: var(--paper-2);
}

.result-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 820;
}

.result-grid strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.2;
}

.result-feedback {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.signal-list {
  display: grid;
  gap: 9px;
}

.signal-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 9px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.signal-item:last-child {
  border-bottom: 0;
}

.signal-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.signal-item p {
  font-size: 12px;
}

.bottom-action {
  position: sticky;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 10px;
  padding: 13px 14px 17px;
  border-top: 1px solid rgba(223, 230, 223, 0.92);
  background: rgba(251, 252, 250, 0.92);
  backdrop-filter: blur(18px);
}

.secondary-button,
.primary-button {
  min-height: 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 880;
}

.single-action {
  grid-template-columns: 1fr;
}

.secondary-button {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.secondary-button:disabled {
  cursor: not-allowed;
  border-color: rgba(200, 211, 202, 0.78);
  background: #eef3ee;
  color: rgba(40, 48, 45, 0.5);
}

.primary-button {
  border: 0;
  background: var(--black);
  color: #fff;
  box-shadow: 0 12px 26px rgba(13, 17, 16, 0.2);
}

.primary-button:disabled {
  cursor: not-allowed;
  background: #c9d2cb;
  color: rgba(13, 17, 16, 0.48);
  box-shadow: none;
}

.report-screen,
.rubric-screen,
.risk-screen {
  padding: 14px 14px 92px;
}

.report-screen {
  position: relative;
}

.report-screen::before {
  position: absolute;
  top: 410px;
  right: -54px;
  left: -54px;
  z-index: 2;
  color: rgba(23, 100, 72, 0.105);
  content: attr(data-watermark);
  font-size: 26px;
  font-weight: 930;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-18deg);
  transform-origin: center;
  pointer-events: none;
}

.report-screen > * {
  position: relative;
  z-index: 1;
}

.report-hero {
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(216, 243, 229, 0.12), transparent 42%),
    var(--black);
  color: #fff;
}

.report-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.report-hero .eyebrow {
  color: #bcebd1;
}

.report-hero h2 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
}

.certificate-meta {
  display: grid;
  gap: 5px;
  margin-top: 13px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.certificate-meta span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.28;
}

.total-score-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: end;
  margin-top: 18px;
}

.total-score-block span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
}

.total-score-block strong {
  display: block;
  font-size: 72px;
  line-height: 0.88;
  font-weight: 930;
}

.total-score-block p {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.radar-section {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.section-title strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.radar-card {
  display: grid;
  place-items: center;
  min-height: 236px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(23, 100, 72, 0.035), transparent),
    var(--paper-2);
}

.radar-chart {
  width: min(100%, 255px);
  height: auto;
  overflow: visible;
}

.radar-ring {
  fill: none;
  stroke: rgba(101, 112, 107, 0.2);
  stroke-width: 1;
}

.radar-ring.outer {
  stroke: rgba(23, 100, 72, 0.32);
}

.radar-axis {
  stroke: rgba(101, 112, 107, 0.18);
  stroke-width: 1;
}

.radar-area {
  fill: rgba(23, 100, 72, 0.18);
  stroke: none;
}

.radar-line {
  fill: none;
  stroke: var(--accent);
  stroke-linejoin: round;
  stroke-width: 3;
}

.radar-label {
  fill: var(--ink-2);
  font-size: 11px;
  font-weight: 900;
}

.radar-center {
  fill: var(--accent);
}

.capability-list {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.capability-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.capability-item strong,
.capability-item span {
  display: block;
}

.capability-item strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.capability-item span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.capability-item em {
  display: grid;
  place-items: center;
  width: 38px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 920;
}

.report-head {
  padding: 15px;
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
}

.report-head .eyebrow {
  color: #bcebd1;
}

.report-head h2 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.report-head p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.report-score {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 16px 0 12px;
}

.report-score strong {
  font-size: 58px;
  line-height: 0.9;
  font-weight: 920;
}

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

.score-list,
.panel-stack {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.score-line {
  display: grid;
  grid-template-columns: 84px 1fr 42px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.score-line strong {
  font-size: 12px;
}

.bar {
  height: 7px;
  border-radius: 999px;
  background: var(--paper-3);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.score-line em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.desktop-context {
  width: min(100%, 430px);
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(251, 252, 250, 0.84);
  box-shadow: var(--shadow);
}

.desktop-context h2 {
  max-width: 8em;
  margin-bottom: 12px;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.04;
  font-weight: 900;
}

.desktop-context p {
  max-width: 340px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.context-score {
  position: relative;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 138px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #f8fbf8 0 24%, var(--accent) 24% 100%);
  overflow: hidden;
}

.context-score::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(13, 17, 16, 0.12);
  transform: translateY(-50%);
}

.context-score::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -34px;
  width: 104px;
  height: 118px;
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(0 0, 100% 0, 36% 100%, 0 100%);
}

.context-score strong {
  position: relative;
  z-index: 1;
  display: block;
  width: 104px;
  margin-left: 8px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  text-align: center;
}

.context-score span {
  position: relative;
  z-index: 1;
  display: block;
  color: #d8f3e5;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
}

.context-list {
  display: grid;
  gap: 8px;
}

.context-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 820;
}

@media (max-width: 860px) {
  body {
    background: var(--paper);
  }

  .product-stage {
    display: block;
    min-height: 100svh;
    padding: 0;
  }

  .product-bar {
    display: none;
  }

  .view-tabs {
    width: 100%;
  }

  .prototype-layout {
    display: block;
  }

  .phone-frame {
    width: 100%;
    height: calc(100svh - 62px);
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .desktop-context {
    display: none;
  }
}

@media (max-width: 380px) {
  .session-meta {
    grid-template-columns: 1fr;
  }

  .score-line {
    grid-template-columns: 1fr;
  }
}
