:root {
  --ink: #fffaf0;
  --muted: rgba(255, 250, 240, 0.68);
  --line: rgba(255, 250, 240, 0.16);
  --panel: rgba(255, 250, 240, 0.075);
  --black: #101014;
  --yellow: #f3ff57;
  --coral: #ff4f72;
  --cyan: #6bf6ff;
  --green: #8cff86;
  --violet: #9b8cff;
  --accent: #f3ff57;
  --radius: 10px;
  color-scheme: dark;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--black); }
body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 32rem),
    radial-gradient(circle at 88% 32%, rgba(107, 246, 255, 0.12), transparent 30rem),
    linear-gradient(145deg, #101014 0%, #19121c 48%, #0e2020 100%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.quiz-site {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.quiz-site::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.11) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(255, 250, 240, 0.07) 0 1px, transparent 1px 46px);
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.quiz-wrap {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.quiz-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px 0;
}

.quiz-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.quiz-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(243, 255, 87, 0.18);
}

.quiz-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.quiz-brand span span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.quiz-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.quiz-nav a {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 12px;
  color: rgba(255, 250, 240, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  font-size: 12px;
  font-weight: 850;
}

.quiz-main { padding: 34px 0 76px; }

.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 30px;
  align-items: end;
  padding: 44px 0 48px;
}

.hub-kicker,
.quiz-kicker,
.result-kicker {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hub-hero h1,
.quiz-intro h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.hub-hero p,
.quiz-intro .quiz-lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hub-signal {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(16, 16, 20, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.hub-signal strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.hub-signal span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.hub-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 28px 0 20px;
}

.hub-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  font-weight: 950;
}

.hub-section-head p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hub-quick-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hub-quick-paths a {
  min-height: 188px;
  padding: 18px;
  color: var(--paper);
  background: #15151a;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.hub-quick-paths a:hover,
.hub-quick-paths a.is-bond { color: #0b0b0d; background: var(--yellow); }
.hub-quick-paths a.is-bond:hover { background: var(--cyan); }
.hub-quick-paths span { display: block; color: var(--accent); font-size: 8px; font-weight: 950; letter-spacing: 0.12em; }
.hub-quick-paths a.is-bond span,
.hub-quick-paths a:hover span { color: #0b0b0d; }
.hub-quick-paths strong { display: block; margin-top: 48px; font-size: 18px; }
.hub-quick-paths p { margin: 8px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.hub-quick-paths a.is-bond p,
.hub-quick-paths a:hover p { color: rgba(11, 11, 13, 0.64); }

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

.hub-test-card {
  --card-accent: var(--yellow);
  position: relative;
  display: grid;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--card-accent) 13%, transparent), transparent 50%),
    rgba(16, 16, 20, 0.72);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hub-test-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-accent) 60%, white 10%);
  box-shadow: 0 20px 46px color-mix(in srgb, var(--card-accent) 13%, transparent);
}

.hub-test-card:focus-visible {
  outline: 3px solid var(--card-accent);
  outline-offset: 4px;
}

.hub-test-card:active { transform: translateY(-1px) scale(.995); }

.hub-test-card::after {
  position: absolute;
  right: -14px;
  bottom: -34px;
  content: attr(data-index);
  color: color-mix(in srgb, var(--card-accent) 24%, transparent);
  font-size: 128px;
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}

.hub-card-meta,
.quiz-chips,
.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hub-card-meta span,
.quiz-chips span,
.result-tags span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.07);
  color: rgba(255, 250, 240, 0.72);
  font-size: 11px;
  font-weight: 850;
}

.hub-test-card h3 {
  max-width: 660px;
  margin: 22px 0 10px;
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1.08;
  font-weight: 950;
}

.hub-test-card p {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.72;
}

.hub-card-link {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  color: #0b0b0d;
  border-radius: 9px;
  background: var(--card-accent);
  font-size: 14px;
  font-weight: 950;
}

.quiz-shell {
  width: min(100%, 840px);
  margin: 0 auto;
}

.quiz-intro,
.quiz-question,
.quiz-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 16, 20, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.quiz-intro { padding: clamp(26px, 6vw, 54px); }
.quiz-intro .quiz-chips { margin-top: 22px; }

.quiz-cover {
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 56%, var(--line));
  border-radius: 12px;
  background: #050507;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

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

.quiz-notice {
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--cyan);
  background: rgba(107, 246, 255, 0.08);
  color: rgba(255, 250, 240, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.quiz-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quiz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.quiz-button.primary {
  color: #0b0b0d;
  background: var(--accent);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent) 18%, transparent);
}

.quiz-button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.07);
}

.quiz-button.role-card-download {
  color: #09090c;
  border-color: color-mix(in srgb, var(--result-ip-color, var(--accent)) 68%, #fff);
  background: var(--result-ip-color, var(--accent));
}

.quiz-question { padding: clamp(22px, 5vw, 42px); }

.quiz-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.quiz-progress {
  height: 7px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 250, 240, 0.1);
}

.quiz-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 220ms ease;
}

.question-context {
  margin: 31px 0 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.question-title {
  margin: 0;
  font-size: clamp(27px, 5vw, 42px);
  line-height: 1.18;
  font-weight: 950;
}

.answer-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.answer-option {
  position: relative;
  width: 100%;
  min-height: 60px;
  padding: 15px 48px 15px 17px;
  color: var(--ink);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 250, 240, 0.06);
  cursor: pointer;
  line-height: 1.55;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.answer-option::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "→";
  color: var(--accent);
  font-weight: 950;
  transform: translateY(-50%);
}

.answer-option:hover,
.answer-option.is-selected {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--accent) 65%, white 5%);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.quiz-back {
  margin-top: 17px;
  padding: 0;
  color: var(--muted);
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.quiz-shell.is-result-layout { width: min(100%, 1040px); }
.quiz-result { overflow: hidden; border-radius: 20px; }

.result-hero {
  position: relative;
  min-height: 340px;
  padding: clamp(30px, 6vw, 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 24%, transparent), transparent 62%),
    #111116;
}

.result-hero.has-result-ip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  min-height: 520px;
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--result-ip-color) 34%, transparent), transparent 38%),
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 22%, transparent), transparent 62%),
    #111116;
}

.result-hero::after {
  position: absolute;
  right: -22px;
  bottom: -32px;
  content: attr(data-symbol);
  color: color-mix(in srgb, var(--accent) 26%, transparent);
  font-size: clamp(110px, 22vw, 210px);
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}

.result-hero-copy { position: relative; z-index: 2; min-width: 0; }

.result-ip-visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--result-ip-color) 58%, rgba(255, 255, 255, 0.12));
  border-radius: 22px;
  background: color-mix(in srgb, var(--result-ip-color) 12%, rgba(7, 7, 10, 0.82));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.result-ip-visual img { display: block; width: 100%; min-height: 340px; object-fit: cover; }

.result-ip-visual figcaption {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 8, 0.88);
}

.result-ip-visual figcaption span {
  display: block;
  color: var(--result-ip-color);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.result-ip-visual figcaption strong { display: block; margin-top: 6px; font-size: 20px; }
.result-ip-visual figcaption p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.result-name {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 72px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.result-summary {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.result-tags { position: relative; z-index: 1; margin-top: 24px; }
.result-fit-note {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 22px 0 0;
  padding-top: 18px;
  color: rgba(255, 250, 240, .68);
  border-top: 1px solid rgba(255, 250, 240, .13);
  font-size: 13px;
  line-height: 1.7;
}
.result-body { display: grid; gap: clamp(42px, 7vw, 74px); padding: clamp(28px, 5vw, 54px); }

.result-snapshot,
.result-logic { display: grid; gap: 22px; }

.result-snapshot-heading p,
.result-logic-head > p {
  margin: 0 0 8px;
  color: var(--result-ip-color, var(--accent));
  font-size: 12px;
  font-weight: 950;
}

.result-snapshot-heading h2,
.result-logic-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -.045em;
}

.result-snapshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  gap: 14px;
}

.result-about-card,
.result-score-card {
  min-width: 0;
  padding: clamp(22px, 3.8vw, 34px);
  border: 1px solid color-mix(in srgb, var(--result-ip-color, var(--accent)) 44%, var(--line));
  border-radius: 18px;
}

.result-about-card {
  display: grid;
  align-content: center;
  min-height: 280px;
  color: #0b0b0e;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--result-ip-color, var(--accent)) 76%, #fff5ec), #fff8ee 72%);
}

.result-about-card > span,
.result-score-card-head span,
.result-score-card-empty > span {
  display: block;
  font-size: 11px;
  font-weight: 950;
}

.result-about-card > p {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: clamp(20px, 3.1vw, 30px);
  line-height: 1.48;
  font-weight: 900;
  letter-spacing: -.025em;
}

.result-score-card {
  min-height: 280px;
  background: rgba(255, 250, 240, .045);
}

.result-score-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.result-score-card-head strong,
.result-score-card-empty > strong { display: block; margin-top: 5px; font-size: 18px; }
.result-score-card-head em {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: var(--result-ip-color, var(--accent));
  border: 1px solid color-mix(in srgb, var(--result-ip-color, var(--accent)) 48%, transparent);
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.result-score-rows .score-row { grid-template-columns: 88px 1fr 38px; margin: 9px 0; }
.result-score-rows .score-track span { background: var(--result-ip-color, var(--accent)); }
.result-score-card-empty { display: grid; align-content: center; }
.result-score-card-empty > p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; }

.result-metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.result-metric-grid article {
  min-width: 0;
  padding: 18px 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 240, .035);
}
.result-metric-grid span { display: block; color: var(--muted); font-size: 11px; font-weight: 850; }
.result-metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--result-ip-color, var(--accent));
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.result-logic {
  padding: clamp(24px, 4.5vw, 46px);
  border: 1px solid color-mix(in srgb, var(--result-ip-color, var(--accent)) 48%, var(--line));
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 5%, color-mix(in srgb, var(--result-ip-color, var(--accent)) 18%, transparent), transparent 34%),
    rgba(255, 250, 240, .025);
}

.result-logic-head { max-width: 720px; }
.result-logic-head > span { display: block; margin-top: 12px; color: var(--muted); line-height: 1.7; }
.result-logic-list { display: grid; gap: 0; }
.result-logic-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 250, 240, .12);
}
.result-logic-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #09090c;
  border-radius: 50%;
  background: var(--result-ip-color, var(--accent));
  font-size: 11px;
  font-weight: 950;
}
.result-logic-list h3 { margin: 0; font-size: 19px; }
.result-logic-list p { max-width: 760px; margin: 9px 0 0; color: rgba(255, 250, 240, .76); line-height: 1.8; }
.result-logic-list .result-logic-action {
  margin-top: 10px;
  padding: 22px;
  border: 0;
  border-radius: 16px;
  background: color-mix(in srgb, var(--result-ip-color, var(--accent)) 14%, transparent);
}

.result-analysis { display: grid; gap: 24px; }

.result-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: end;
}

.result-section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
}

.result-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.result-section-heading > p { margin: 0; color: var(--muted); line-height: 1.75; }

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

.result-card {
  position: relative;
  min-height: 230px;
  padding: 25px 82px 25px 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 250, 240, .075), rgba(255, 250, 240, .025));
}

.result-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: var(--card-color, var(--accent));
}

.result-card-truth { --card-color: var(--cyan); }
.result-card-gift { --card-color: var(--green); }
.result-card-blind { --card-color: var(--coral); }
.result-card-action { --card-color: var(--violet); }

.result-card-index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: color-mix(in srgb, var(--card-color) 32%, transparent);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.result-card small { display: block; color: var(--card-color); font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.result-card h3 { margin: 10px 0 12px; font-size: 21px; font-weight: 950; }
.result-card p { margin: 0; color: var(--muted); line-height: 1.72; }

.result-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  grid-template-areas: "head head" "visual beats";
  gap: 22px clamp(22px, 4vw, 40px);
  margin: 0;
  padding: clamp(24px, 4.5vw, 46px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--result-ip-color) 56%, rgba(255, 255, 255, 0.13));
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 6%, color-mix(in srgb, var(--result-ip-color) 24%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.result-story-head {
  grid-area: head;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  min-width: 0;
}

.result-story-head > div { min-width: 0; }
.result-story-kicker { margin: 0 0 10px; color: var(--result-ip-color); font-size: 10px; font-weight: 950; letter-spacing: .13em; }

.result-story h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.result-story h2 span { color: rgba(255, 250, 240, .52); font-size: .72em; letter-spacing: -.025em; }
.result-story-intro { margin: 12px 0 0; color: var(--muted); line-height: 1.7; }

.result-story-download {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 17px;
  color: #09090c;
  border-radius: 999px;
  background: var(--result-ip-color);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.result-story-download span { font-size: 17px; line-height: 1; }

.result-story-visual {
  grid-area: visual;
  align-self: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--result-ip-color) 64%, rgba(255, 255, 255, 0.16));
  border-radius: 18px;
  background: #09090c;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.result-story-visual img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }

.result-story-beats {
  grid-area: beats;
  display: grid;
  align-content: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-story-beats li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 250, 240, .11);
}

.result-story-beats li:last-child { border-bottom: 0; }

.result-story-beats li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #08080b;
  border-radius: 50%;
  background: var(--result-ip-color);
  font-size: 10px;
  font-weight: 950;
}

.result-story-beats strong { display: block; color: var(--result-ip-color); font-size: 12px; }
.result-story-beats p { margin: 6px 0 0; color: rgba(255, 250, 240, .72); font-size: 12px; line-height: 1.55; }

.result-finale {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line));
  border-radius: 20px;
  background: #0b0b0e;
}

.result-quote-wrap { padding: clamp(24px, 4vw, 40px); color: #0c0c0f; background: var(--accent); }
.result-quote-wrap > span { display: block; font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.result-quote { margin: 18px 0 0; padding: 0; color: inherit; background: none; font-size: clamp(24px, 4vw, 38px); line-height: 1.22; font-weight: 950; letter-spacing: -.035em; }

.result-finale-actions { display: grid; align-content: center; padding: clamp(24px, 4vw, 36px); }
.result-finale-actions > p { margin: 0; color: var(--muted); line-height: 1.65; }
.result-finale-actions .result-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 20px; }
.result-finale-actions .quiz-button { width: 100%; padding-inline: 12px; font-size: 12px; text-align: center; }

.score-board {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 250, 240, .035);
}

.score-board summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.score-board summary::-webkit-details-marker { display: none; }
.score-board summary span { display: grid; gap: 4px; }
.score-board summary small { color: var(--accent); font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.score-board summary strong { font-size: 16px; }
.score-board summary em { color: var(--muted); font-size: 12px; font-style: normal; font-weight: 850; }
.score-board[open] summary em { font-size: 0; }
.score-board[open] summary em::after { content: "收起 −"; font-size: 12px; }
.score-board-content { padding: 2px 22px 20px; border-top: 1px solid var(--line); }
.score-row { display: grid; grid-template-columns: 112px 1fr 42px; gap: 10px; align-items: center; margin: 10px 0; }
.score-row strong { font-size: 12px; }
.score-track { height: 8px; overflow: hidden; border-radius: 99px; background: rgba(255, 250, 240, 0.1); }
.score-track span { display: block; height: 100%; border-radius: inherit; background: var(--accent); }
.score-row em { color: var(--muted); font-size: 11px; font-style: normal; text-align: right; }

.bond-invite-banner {
  display: grid;
  gap: 6px;
  margin: 0 0 30px;
  padding: 18px 20px;
  color: #101014;
  border-radius: 10px;
  background: var(--accent);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent) 20%, transparent);
}

.bond-invite-banner span,
.bond-kicker {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.bond-invite-banner strong { font-size: 20px; }
.bond-invite-banner p { margin: 0; font-size: 13px; line-height: 1.55; opacity: 0.72; }

.bond-panel {
  position: relative;
  margin-top: 42px;
  padding: clamp(20px, 4.5vw, 34px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--accent) 21%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  scroll-margin-top: 22px;
}

.bond-panel::before {
  position: absolute;
  top: -54px;
  right: -24px;
  content: "✦";
  color: color-mix(in srgb, var(--accent) 18%, transparent);
  font-size: 160px;
  line-height: 1;
  pointer-events: none;
}

.bond-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.bond-heading h2 {
  margin: 5px 0 7px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.bond-heading > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.bond-kicker { margin: 0; color: var(--accent); }

.bond-taxonomy {
  flex: 0 0 auto;
  max-width: 210px;
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.35;
}

.bond-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.bond-promise > div {
  min-height: 144px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 7, 10, 0.34);
}

.bond-promise span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.bond-promise strong { display: block; margin-top: 18px; font-size: 19px; }
.bond-promise p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.bond-join-form {
  margin-top: 20px;
  padding: 18px;
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.24);
}

.bond-join-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 900;
}

.bond-join-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.bond-join-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.bond-join-form input::placeholder { color: rgba(255, 250, 240, 0.42); }
.bond-join-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent); }
.bond-join-form input.is-invalid { border-color: #ff6f91; }
.bond-join-form > p { margin: 9px 0 0; color: rgba(255, 250, 240, 0.48); font-size: 10px; line-height: 1.55; }

.bond-waiting {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.bond-waiting strong { font-size: 17px; }
.bond-waiting p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.bond-pulse {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.bond-pulse::before,
.bond-pulse span {
  position: absolute;
  inset: 9px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
}

.bond-pulse::before { animation: bond-pulse 1.8s ease-out infinite; }

@keyframes bond-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.bond-people {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.bond-person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.bond-person > span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #0d0d10;
  border-radius: 50%;
  background: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.bond-person-avatar {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin: 0;
  overflow: visible;
  border: 2px solid var(--ip-color);
  border-radius: 14px;
  background: color-mix(in srgb, var(--ip-color) 18%, #101014);
}

.bond-person-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.bond-person-avatar span {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #0d0d10;
  border: 2px solid #101014;
  border-radius: 50%;
  background: var(--ip-color);
  font-size: 9px;
  font-weight: 950;
}

.bond-person div { min-width: 0; }
.bond-person strong { display: block; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.bond-person p { margin: 4px 0 0; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

.bond-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.bond-empty,
.bond-join-state {
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 11px;
}

.bond-empty > p,
.bond-join-state > p { margin: 7px 0 16px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.bond-report { margin-top: 26px; }

.bond-report-hero {
  position: relative;
  min-height: 250px;
  padding: clamp(22px, 5vw, 36px);
  overflow: hidden;
  color: #0c0c0f;
  border-radius: 14px;
  background: var(--accent);
}

.bond-report-hero::after {
  position: absolute;
  right: -20px;
  bottom: -74px;
  content: "∞";
  color: rgba(0, 0, 0, 0.1);
  font-size: 240px;
  line-height: 1;
  font-weight: 950;
}

.bond-report-hero > p:first-child {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.bond-score {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  margin-top: 14px;
}

.bond-score strong { font-size: clamp(62px, 13vw, 100px); line-height: 0.9; letter-spacing: -0.08em; }
.bond-score span { margin: 5px 0 0 7px; font-size: 20px; font-weight: 950; }
.bond-report-hero h3 { position: relative; z-index: 1; margin: 18px 0 5px; font-size: clamp(25px, 5vw, 38px); line-height: 1; letter-spacing: -0.04em; }
.bond-report-hero > p:nth-of-type(2) { position: relative; z-index: 1; max-width: 500px; margin: 0; font-size: 13px; line-height: 1.55; opacity: 0.7; }

.bond-ip-lineup {
  position: absolute;
  right: clamp(10px, 3vw, 30px);
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: min(48%, 430px);
  height: 94%;
  pointer-events: none;
}

.bond-ip-lineup figure {
  position: relative;
  width: 48%;
  max-width: 210px;
  height: 100%;
  margin: 0 0 0 -12%;
  transform: translateY(calc(var(--lineup-index) * 6px));
}

.bond-ip-lineup img {
  width: 100%;
  height: 86%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.24));
}

.bond-ip-lineup figcaption {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  overflow: hidden;
  padding: 5px 7px;
  color: #0c0c0f;
  border: 2px solid #0c0c0f;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ip-color) 82%, white 18%);
  font-size: 8px;
  font-weight: 950;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bond-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.bond-metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.bond-metric > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.bond-metric > div:first-child span { margin-right: auto; color: var(--muted); font-size: 10px; font-weight: 850; }
.bond-metric strong { font-size: 28px; letter-spacing: -0.04em; }
.bond-metric em { color: var(--muted); font-size: 10px; font-style: normal; }
.bond-metric p { margin: 10px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

.bond-meter {
  height: 5px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

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

.bond-highlight {
  margin-top: 10px;
  padding: 17px;
  color: #0c0c0f;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 88%, white 12%);
}

.bond-highlight span { display: block; font-size: 9px; font-weight: 950; letter-spacing: 0.12em; }
.bond-highlight strong { display: block; margin-top: 7px; font-size: 20px; }
.bond-highlight p { margin: 6px 0 0; font-size: 11px; line-height: 1.55; opacity: 0.72; }

.bond-pair-grid,
.bond-analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.bond-pair-card,
.bond-analysis-grid article {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.bond-pair-card {
  overflow: hidden;
}

.bond-pair-visual {
  position: relative;
  margin: -17px -17px 16px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #07131f;
}

.bond-pair-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.bond-pair-visual::before {
  position: absolute;
  inset: -30% -55%;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(115deg, transparent 42%, color-mix(in srgb, var(--accent) 70%, white 30%) 49%, transparent 56%);
  transform: translateX(-55%) rotate(8deg);
}

.bond-pair-visual.is-activated::before { animation: bond-visual-scan 900ms ease both; }
.bond-pair-visual.is-activated > img { filter: saturate(1.18) contrast(1.06); transform: scale(1.045) rotate(-0.7deg); }

@keyframes bond-visual-scan {
  0% { opacity: 0; transform: translateX(-55%) rotate(8deg); }
  18% { opacity: 0.72; }
  100% { opacity: 0; transform: translateX(55%) rotate(8deg); }
}

.bond-pair-visual figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 7, 12, 0.78);
  backdrop-filter: blur(10px);
}

.bond-pair-visual figcaption span {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.bond-pair-visual figcaption p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  line-height: 1.45;
}

.bond-visual-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.bond-visual-trigger i { color: var(--accent); font-size: 12px; font-style: normal; }
.bond-visual-trigger[aria-pressed="true"] { color: #09090c; border-color: var(--accent); background: var(--accent); }
.bond-visual-trigger[aria-pressed="true"] i { color: #09090c; }

.bond-pair-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 260px;
  padding: 26px 30px 66px;
  background:
    radial-gradient(circle at 20% 22%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 36%),
    radial-gradient(circle at 82% 28%, rgba(255, 105, 164, 0.24), transparent 38%),
    linear-gradient(145deg, #07111c, #11111d 58%, #1a0e19);
}

.bond-pair-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.bond-pair-stage i {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 34%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), #ff69a4);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 60%, transparent);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.bond-pair-stage img {
  position: relative;
  z-index: 1;
  width: 49%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.5));
}

.bond-pair-stage img:first-of-type {
  transform: translateX(5px) rotate(-3deg);
}

.bond-pair-stage img:last-of-type {
  transform: translateX(-5px) rotate(3deg);
}

.bond-pair-stage img + img {
  margin-left: -8%;
}

.bond-pair-card > span,
.bond-analysis-grid article > span {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.bond-pair-card strong { display: block; margin-top: 9px; font-size: 17px; }
.bond-pair-card p,
.bond-analysis-grid p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.bond-analysis-grid h4 { margin: 9px 0 0; font-size: 17px; }

.bond-relation-meta,
.bond-hidden-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bond-relation-card {
  border-top: 2px solid color-mix(in srgb, var(--accent) 72%, white 8%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.bond-card-face { transform-origin: 50% 0; animation: bond-card-face-in 280ms ease both; }
.bond-card-face.is-back { display: none; min-height: 100%; }
.bond-relation-card.is-flipped .bond-card-face.is-front { display: none; }
.bond-relation-card.is-flipped .bond-card-face.is-back { display: block; }

@keyframes bond-card-face-in {
  from { opacity: 0; transform: perspective(600px) rotateY(7deg) translateY(5px); }
  to { opacity: 1; transform: perspective(600px) rotateY(0) translateY(0); }
}

.bond-card-back-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed color-mix(in srgb, var(--accent) 42%, transparent);
}

.bond-card-back-mark span { color: var(--accent); font-size: 9px; font-weight: 950; letter-spacing: 0.12em; }
.bond-card-back-mark em { color: rgba(255, 255, 255, 0.48); font-size: 8px; font-style: normal; font-weight: 850; }
.bond-card-face.is-back h4 { margin: 18px 0 4px; font-size: clamp(22px, 3.2vw, 30px); line-height: 1.05; letter-spacing: -0.035em; }

.bond-card-flip,
.bond-hidden-reveal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding: 11px 12px;
  color: #0b0b0e;
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 950;
}

.bond-card-flip i,
.bond-hidden-reveal i { font-size: 14px; font-style: normal; }

.bond-relation-meta span,
.bond-hidden-topline span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bond-relation-meta em,
.bond-hidden-topline em {
  padding: 4px 7px;
  color: #09090d;
  border-radius: 999px;
  background: var(--accent);
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.bond-relation-names,
.bond-hidden-pair {
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 9px !important;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bond-relation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.bond-relation-tags span {
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  font-weight: 850;
}

.bond-relation-proof {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
}

.bond-relation-proof > div {
  padding: 10px 11px;
  border-left: 2px solid var(--accent);
  border-radius: 0 7px 7px 0;
  background: rgba(0, 0, 0, 0.25);
}

.bond-relation-proof dt {
  color: var(--accent);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.bond-relation-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  line-height: 1.55;
}

.bond-hidden-section {
  position: relative;
  padding: clamp(18px, 4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(168, 119, 255, 0.46);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 59, 169, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(72, 42, 118, 0.28), rgba(7, 8, 14, 0.92) 58%);
}

.bond-hidden-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(177, 133, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177, 133, 255, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
}

.bond-hidden-section > * { position: relative; }

.bond-hidden-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.bond-hidden-card {
  --hidden-accent: #b98cff;
  padding: 17px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--hidden-accent) 52%, transparent);
  border-radius: 12px;
  background: rgba(5, 5, 11, 0.78);
  box-shadow: inset 0 0 34px rgba(148, 87, 255, 0.07);
}

.bond-hidden-card.is-unlocked {
  --hidden-accent: #ff4da6;
  border-color: color-mix(in srgb, var(--hidden-accent) 68%, white 8%);
  box-shadow: inset 0 0 42px rgba(255, 77, 166, 0.1), 0 0 24px rgba(255, 77, 166, 0.08);
}

.bond-hidden-content { transition: filter 320ms ease, opacity 320ms ease, transform 320ms ease; }
.bond-hidden-card.is-unlocked.is-sealed .bond-hidden-content { pointer-events: none; user-select: none; filter: blur(9px); opacity: 0.2; transform: translateY(6px); }
.bond-hidden-card.is-unlocked.is-sealed .bond-pair-visual > img { filter: blur(8px) saturate(0.6) brightness(0.55); transform: scale(1.07); }
.bond-hidden-card.is-unlocked.is-sealed .bond-pair-visual::after {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 3;
  content: "RARE FILE SEALED";
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(8, 5, 13, 0.82);
  box-shadow: 0 0 28px rgba(255, 77, 166, 0.28);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.bond-hidden-card.is-revealed { animation: bond-hidden-reveal 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }

@keyframes bond-hidden-reveal {
  0% { box-shadow: inset 0 0 42px rgba(255, 77, 166, 0.1), 0 0 0 rgba(255, 77, 166, 0); }
  45% { box-shadow: inset 0 0 50px rgba(255, 77, 166, 0.18), 0 0 38px rgba(255, 77, 166, 0.34); }
  100% { box-shadow: inset 0 0 42px rgba(255, 77, 166, 0.1), 0 0 24px rgba(255, 77, 166, 0.08); }
}

.bond-hidden-card .bond-pair-visual {
  margin: -17px -17px 16px;
  border-color: color-mix(in srgb, var(--hidden-accent) 42%, transparent);
}

.bond-hidden-card .bond-pair-visual figcaption span { color: var(--hidden-accent); }

.bond-hidden-card.is-locked .bond-pair-visual > img {
  filter: blur(12px) grayscale(0.55) brightness(0.38) saturate(0.55);
  transform: scale(1.08);
}

.bond-hidden-card.is-locked .bond-pair-visual::after {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 2;
  content: "LOCKED";
  padding: 8px 12px;
  color: #efe4ff;
  border: 1px solid rgba(239, 228, 255, 0.52);
  border-radius: 999px;
  background: rgba(10, 7, 17, 0.74);
  box-shadow: 0 0 24px rgba(177, 133, 255, 0.25);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.bond-hidden-card .bond-hidden-topline span { color: var(--hidden-accent); }
.bond-hidden-card .bond-hidden-topline em { background: var(--hidden-accent); }
.bond-hidden-card h4 { margin: 10px 0 0; font-size: clamp(20px, 3.2vw, 27px); line-height: 1.05; letter-spacing: -0.035em; }
.bond-hidden-card > p { margin: 9px 0 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.bond-hidden-card > p strong { color: #fff; }
.bond-hidden-card .bond-relation-tags span { border-color: color-mix(in srgb, var(--hidden-accent) 40%, transparent); background: color-mix(in srgb, var(--hidden-accent) 10%, transparent); }
.bond-hidden-card .bond-relation-proof > div { border-left-color: var(--hidden-accent); }
.bond-hidden-card .bond-relation-proof dt { color: var(--hidden-accent); }

.bond-hidden-progress {
  height: 7px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bond-hidden-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8d69ff, #ff4da6);
  box-shadow: 0 0 14px rgba(255, 77, 166, 0.38);
}

.bond-hidden-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  line-height: 1.55;
}

.bond-hidden-reveal { color: #fff; border: 1px solid color-mix(in srgb, var(--hidden-accent) 68%, transparent); background: color-mix(in srgb, var(--hidden-accent) 19%, #08080d 81%); }
.bond-hidden-card.is-unlocked .bond-hidden-reveal { color: #09090d; border-color: var(--hidden-accent); background: var(--hidden-accent); }
.bond-hidden-card.is-progress-shown .bond-hidden-progress { box-shadow: 0 0 0 3px rgba(185, 140, 255, 0.12), 0 0 24px rgba(255, 77, 166, 0.24); }
.bond-hidden-card.is-progress-shown .bond-hidden-progress span { animation: bond-progress-pulse 760ms ease both; }

@keyframes bond-progress-pulse {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.bond-pair-switcher {
  position: sticky;
  top: 12px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  gap: 14px;
  margin-top: 30px;
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: 14px;
  background: rgba(8, 9, 14, 0.91);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.bond-pair-switcher > div:first-child { padding: 5px 7px; }
.bond-pair-switcher > div:first-child span { display: block; color: var(--accent); font-size: 8px; font-weight: 950; letter-spacing: 0.12em; }
.bond-pair-switcher > div:first-child strong { display: block; margin-top: 5px; font-size: 14px; }
.bond-pair-switcher-buttons { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 7px; }
.bond-pair-switcher button {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 900;
}

.bond-pair-switcher button i { color: var(--accent); font-style: normal; }
.bond-pair-switcher button.is-active { color: #0a0a0d; border-color: var(--accent); background: var(--accent); }
.bond-pair-switcher button.is-active i { color: #0a0a0d; }
.is-pair-hidden { display: none !important; }

.bond-round-section {
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: 18px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 10%, #0a0b10 90%), #08090d 64%);
}

.bond-round-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.bond-round-card { padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0, 0, 0, 0.26); }
.bond-round-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bond-round-head span { color: var(--accent); font-size: 8px; font-weight: 950; letter-spacing: 0.1em; }
.bond-round-head em { color: rgba(255, 255, 255, 0.46); font-size: 8px; font-style: normal; font-weight: 850; }
.bond-round-card h4 { margin: 15px 0 0; font-size: clamp(20px, 3.2vw, 29px); line-height: 1.08; letter-spacing: -0.035em; }
.bond-round-card > p { margin: 8px 0 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.bond-round-choices { display: grid; gap: 7px; margin-top: 15px; }
.bond-round-choices button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  color: #fff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font: inherit;
}

.bond-round-choices button span { font-size: 10px; font-weight: 950; }
.bond-round-choices button small { color: rgba(255, 255, 255, 0.42); font-size: 8px; }
.bond-round-choices button.is-selected { color: #0a0a0d; border-color: var(--accent); background: var(--accent); }
.bond-round-choices button.is-selected small { color: rgba(0, 0, 0, 0.58); }
.bond-round-result { margin-top: 12px; padding: 15px; border: 1px dashed color-mix(in srgb, var(--accent) 60%, transparent); border-radius: 10px; background: color-mix(in srgb, var(--accent) 10%, transparent); animation: bond-round-in 300ms ease both; }
.bond-round-result > span { color: var(--accent); font-size: 8px; font-weight: 950; letter-spacing: 0.1em; }
.bond-round-result h5 { margin: 8px 0 0; font-size: 18px; }
.bond-round-result p { margin: 7px 0 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.bond-round-result strong { display: block; margin-top: 10px; padding: 10px; color: rgba(255, 255, 255, 0.88); border-left: 2px solid var(--accent); background: rgba(0, 0, 0, 0.24); font-size: 9px; line-height: 1.6; }
.bond-round-copy { width: 100%; margin-top: 10px; padding: 10px; color: #0a0a0d; border: 0; border-radius: 8px; background: var(--accent); cursor: pointer; font: inherit; font-size: 9px; font-weight: 950; }

@keyframes bond-round-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.bond-disclaimer {
  margin: 14px 0 0;
  padding-top: 13px;
  color: rgba(255, 250, 240, 0.43);
  border-top: 1px solid var(--line);
  font-size: 9px;
  line-height: 1.6;
}

.bond-landing { width: 100%; }
.bond-landing > .bond-panel { margin-top: 30px; }

.bond-identity-card {
  position: relative;
  min-height: 410px;
  padding: clamp(24px, 5vw, 44px);
  overflow: hidden;
  color: #0b0b0d;
  border: 3px solid #0b0b0d;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.68), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 84%, white 16%), #fff7e8 66%, #ff9ed0);
  box-shadow: 0 18px 0 #0b0b0d;
  isolation: isolate;
}

.bond-identity-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.bond-identity-card::after {
  position: absolute;
  right: -24px;
  bottom: -92px;
  z-index: -1;
  content: "BOND";
  color: rgba(11, 11, 13, 0.065);
  font-size: clamp(110px, 22vw, 230px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.1em;
}

.bond-identity-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: min(58%, 520px);
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(11, 11, 13, 0.28);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.bond-identity-eyebrow {
  position: relative;
  z-index: 3;
  margin: 34px 0 8px;
  font-size: 12px;
  font-weight: 900;
}

.bond-identity-card > h3 {
  position: relative;
  z-index: 3;
  width: min(58%, 540px);
  margin: 0;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.bond-identity-subtitle {
  position: relative;
  z-index: 3;
  width: min(54%, 500px);
  margin: 15px 0 0;
  font-size: 13px;
  line-height: 1.62;
  font-weight: 700;
}

.bond-identity-tags {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: min(54%, 500px);
  margin-top: 16px;
}

.bond-identity-tags span {
  padding: 6px 9px;
  border: 2px solid #0b0b0d;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 950;
}

.bond-score-seal {
  position: absolute;
  bottom: 30px;
  left: clamp(24px, 5vw, 44px);
  z-index: 4;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bond-score-seal strong { font-size: 48px; line-height: 0.8; letter-spacing: -0.08em; }
.bond-score-seal span { max-width: 120px; font-size: 9px; font-weight: 950; line-height: 1.3; }
.bond-identity-card .bond-ip-lineup { width: min(52%, 470px); height: 98%; }

.bond-section-block { margin-top: 46px; }

.bond-section-title {
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) minmax(240px, 1fr) minmax(260px, 1.15fr);
  gap: 18px;
  align-items: end;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.bond-section-title > span { color: var(--accent); font-size: 9px; font-weight: 950; letter-spacing: 0.13em; }
.bond-section-title h3 { margin: 0; font-size: clamp(23px, 4vw, 34px); line-height: 1; letter-spacing: -0.04em; }
.bond-section-title > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.bond-identity-deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.bond-identity-person {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  min-height: 248px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ip-color) 48%, var(--line));
  border-radius: 13px;
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--ip-color) 18%, transparent), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.bond-person-id-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.bond-person-id-head span { color: var(--muted); font-size: 9px; font-weight: 950; letter-spacing: 0.11em; }
.bond-person-id-head em { padding: 5px 8px; color: #0b0b0d; border-radius: 999px; background: var(--ip-color); font-size: 9px; font-style: normal; font-weight: 950; }
.bond-identity-person > img { width: 104px; height: 132px; object-fit: contain; border-radius: 9px; background: color-mix(in srgb, var(--ip-color) 10%, transparent); }
.bond-person-id-copy > p:first-child { margin: 0; color: var(--muted); font-size: 9px; font-weight: 850; }
.bond-person-id-copy h4 { margin: 6px 0 9px; font-size: 22px; line-height: 1; letter-spacing: -0.04em; }
.bond-person-id-copy > div { display: flex; flex-wrap: wrap; gap: 4px; }
.bond-person-id-copy > div span { padding: 4px 6px; border: 1px solid var(--line); border-radius: 999px; font-size: 8px; }
.bond-person-id-copy strong { display: block; margin-top: 13px; color: var(--ip-color); font-size: 11px; }
.bond-person-id-copy > p:last-child { margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }

.bond-map-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 1.1fr);
  gap: 14px;
}

.bond-map-layout > .bond-section-title { grid-column: 1 / -1; }
.bond-radar { margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, 0.035); }
.bond-radar figcaption span { display: block; color: var(--accent); font-size: 9px; font-weight: 950; letter-spacing: 0.12em; }
.bond-radar figcaption strong { display: block; margin-top: 6px; font-size: 22px; }
.bond-radar figcaption p { margin: 6px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.bond-radar svg { display: block; width: min(100%, 410px); margin: 8px auto 0; overflow: visible; }
.bond-radar-grid polygon,
.bond-radar-grid line { fill: none; stroke: rgba(255, 255, 255, 0.14); stroke-width: 1; }
.bond-radar-shape { fill: color-mix(in srgb, var(--accent) 24%, transparent); stroke: var(--accent); stroke-width: 3; }
.bond-radar-dots circle { fill: var(--accent); stroke: #0b0b0d; stroke-width: 2; }
.bond-radar-labels text { fill: rgba(255, 250, 240, 0.72); font-size: 9px; font-weight: 850; text-anchor: middle; dominant-baseline: middle; }

.bond-dimension-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.bond-dimension-list article { padding: 14px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 255, 255, 0.045); }
.bond-dimension-list article > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.bond-dimension-list article > div:first-child span { color: var(--muted); font-size: 9px; font-weight: 900; }
.bond-dimension-list article > div:first-child strong { font-size: 21px; letter-spacing: -0.04em; }
.bond-dimension-list article p { margin: 8px 0 0; color: var(--muted); font-size: 9px; line-height: 1.45; }

.bond-conversation-lab ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin: 14px 0 0; padding: 0; list-style: none; }
.bond-conversation-lab li { min-height: 148px; padding: 17px; color: #0b0b0d; border-radius: 12px; background: color-mix(in srgb, var(--accent) 86%, white 14%); }
.bond-conversation-lab li span { display: block; font-size: 11px; font-weight: 950; letter-spacing: 0.12em; }
.bond-conversation-lab li p { margin: 24px 0 0; font-size: 13px; font-weight: 800; line-height: 1.55; }

.quiz-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 20;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  color: #0b0b0d;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  font-size: 13px;
  font-weight: 900;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.quiz-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.quiz-footer {
  padding: 22px 0 40px;
  color: rgba(255, 250, 240, 0.48);
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .quiz-topbar { align-items: flex-start; }
  .quiz-brand span { display: none; }
  .quiz-nav a:nth-child(2) { display: none; }
  .hub-hero { grid-template-columns: 1fr; padding-top: 24px; }
  .hub-signal { padding: 18px; }
  .hub-section-head { display: block; }
  .hub-section-head p { margin-top: 12px; }
  .hub-quick-paths { grid-template-columns: 1fr 1fr; }
  .hub-quick-paths a { min-height: 150px; }
  .hub-quick-paths strong { margin-top: 30px; }
  .test-hub-grid { grid-template-columns: 1fr; }
  .hub-test-card { min-height: 250px; padding: 20px; }
  .quiz-shell.is-result-layout { width: 100%; }
  .quiz-result { border-radius: 14px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-hero { padding: 28px 22px; }
  .result-hero.has-result-ip { grid-template-columns: 1fr; gap: 24px; min-height: 0; }
  .result-name { font-size: clamp(38px, 12vw, 58px); }
  .result-ip-visual { min-height: 0; }
  .result-ip-visual img { min-height: 0; aspect-ratio: 1; }
  .result-body { gap: 42px; padding: 24px 18px 30px; }
  .result-snapshot-grid { grid-template-columns: 1fr; }
  .result-about-card,
  .result-score-card { min-height: 0; }
  .result-about-card > p { font-size: clamp(20px, 6.3vw, 26px); }
  .result-metric-grid { grid-template-columns: 1fr; }
  .result-logic { padding: 22px 18px; }
  .result-logic-list article { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; }
  .result-logic-list article > span { width: 32px; height: 32px; }
  .result-logic-list .result-logic-action { margin-inline: -4px; padding: 18px 14px; }
  .result-section-heading { grid-template-columns: 1fr; gap: 14px; }
  .result-section-heading h2 br { display: none; }
  .result-card { min-height: 0; padding: 22px 68px 24px 20px; }
  .result-story { grid-template-columns: 1fr; grid-template-areas: "head" "visual" "beats"; padding: 20px; }
  .result-story-head { display: block; }
  .result-story-download { margin-top: 18px; }
  .result-story h2 { font-size: clamp(30px, 9.5vw, 44px); }
  .result-story-beats li { padding: 15px 0; }
  .result-finale { grid-template-columns: 1fr; }
  .result-finale-actions .result-actions { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 86px 1fr 38px; }
  .bond-heading { display: block; }
  .bond-taxonomy { display: inline-block; margin-top: 14px; }
  .bond-promise,
  .bond-metrics { grid-template-columns: 1fr; }
  .bond-promise > div { min-height: 0; }
  .bond-promise strong { margin-top: 9px; }
  .bond-people { grid-template-columns: 1fr; }
  .bond-join-form > div { grid-template-columns: 1fr; }
  .bond-join-form .quiz-button { width: 100%; }
  .bond-pair-grid,
  .bond-hidden-grid,
  .bond-analysis-grid,
  .bond-round-grid { grid-template-columns: 1fr; }
  .bond-pair-switcher { position: relative; top: auto; grid-template-columns: 1fr; }
  .bond-pair-switcher-buttons { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
  .bond-pair-switcher button { flex: 0 0 auto; }
  .bond-visual-trigger span { display: none; }
  .bond-visual-trigger { min-width: 34px; justify-content: center; }
  .bond-report-hero { padding-bottom: 240px; }
  .bond-ip-lineup { right: 8px; width: 92%; height: 250px; }

  .bond-identity-card { min-height: 680px; padding-bottom: 305px; box-shadow: 0 11px 0 #0b0b0d; }
  .bond-identity-topline,
  .bond-identity-card > h3,
  .bond-identity-subtitle,
  .bond-identity-tags { width: 100%; }
  .bond-identity-topline { gap: 10px; }
  .bond-identity-card .bond-ip-lineup { right: 0; width: 100%; height: 300px; }
  .bond-score-seal { bottom: 276px; }
  .bond-section-title { display: block; }
  .bond-section-title h3 { margin-top: 9px; }
  .bond-section-title > p { margin-top: 9px; }
  .bond-identity-deck,
  .bond-map-layout,
  .bond-dimension-list,
  .bond-conversation-lab ol { grid-template-columns: 1fr; }
  .bond-map-layout > .bond-section-title { grid-column: auto; }
  .bond-identity-person { grid-template-columns: 86px 1fr; min-height: 0; }
  .bond-identity-person > img { width: 86px; height: 116px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Result system: dark unified stage + readable paper cards (2026-09-04) */
.quiz-wrap.has-result-layout { width: min(100% - 32px, 1480px); }
.quiz-shell.is-result-layout { width: min(100%, 1480px); }

.quiz-result {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  background: linear-gradient(145deg, #0b0a10 0%, #15111d 54%, #0a1917 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .46);
}

.quiz-result::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 8;
  height: 9px;
  content: "";
  background: linear-gradient(90deg, #00f2db 0 28%, #9b70ff 28% 66%, #ff4f9b 66% 100%);
}

.result-hero,
.result-hero.has-result-ip {
  display: grid;
  grid-template-columns: minmax(250px, .86fr) minmax(300px, .76fr) minmax(390px, 1.18fr);
  gap: clamp(22px, 2.6vw, 38px);
  align-items: start;
  min-height: 0;
  padding: clamp(40px, 4vw, 58px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 51% 10%, color-mix(in srgb, var(--result-ip-color, var(--accent)) 22%, transparent), transparent 32%),
    radial-gradient(circle at 98% 72%, rgba(0, 242, 219, .09), transparent 30%),
    #0d0c12;
}

.result-hero::before {
  position: absolute;
  inset: 9px 0 auto;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .13);
}

.result-hero::after { opacity: .22; }

.result-hero-copy {
  align-self: center;
  padding: 16px 0;
}

.result-kicker { color: #b9a0ff; }

.result-name {
  max-width: 520px;
  font-size: clamp(42px, 4.15vw, 64px);
  color: #fffaf4;
  text-shadow: 0 16px 50px color-mix(in srgb, var(--result-ip-color, var(--accent)) 22%, transparent);
}

.result-tags { gap: 7px; }
.result-tags span {
  color: #111116;
  border: 2px solid #111116;
  background: #fffdf8;
  box-shadow: 2px 3px 0 color-mix(in srgb, var(--result-ip-color, var(--accent)) 72%, #fff 28%);
}

.result-tags span:nth-child(2) { background: color-mix(in srgb, var(--result-ip-color, var(--accent)) 60%, #fff7c7 40%); }
.result-tags span:nth-child(3) { background: #bff2df; }

.result-fit-note {
  max-width: 520px;
  color: rgba(255, 255, 255, .61);
  border-top-color: rgba(255, 255, 255, .14);
}

.result-ip-visual {
  align-self: center;
  min-height: 0;
  border: 3px solid #fff;
  border-radius: 22px;
  background: #fff;
  box-shadow: 8px 9px 0 #08080c, 0 28px 70px rgba(0, 0, 0, .4);
}

.result-ip-visual img {
  min-height: 0;
  aspect-ratio: 1;
  object-fit: cover;
}

.result-ip-visual figcaption {
  color: #fff;
  border-top: 2px solid #111116;
  background: #111116;
}

.result-ip-visual figcaption p { color: rgba(255, 255, 255, .64); }

.result-snapshot {
  align-self: stretch;
  min-width: 0;
  gap: 12px;
}

.result-snapshot-heading {
  padding: 0 2px;
}

.result-snapshot-heading p { margin-bottom: 5px; }
.result-snapshot-heading h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
}

.result-snapshot-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.result-about-card,
.result-score-card {
  min-height: 0;
  padding: clamp(18px, 2vw, 25px);
  color: #111116;
  border: 2px solid #111116;
  border-radius: 16px;
  box-shadow: 4px 5px 0 #07070a;
}

.result-about-card {
  background: linear-gradient(145deg, color-mix(in srgb, var(--result-ip-color, var(--accent)) 22%, #fffaf4), #fffdfa 78%);
}

.result-about-card > p {
  margin-top: 11px;
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.5;
}

.result-score-card { background: #fffdfa; }
.result-score-card-head { margin-bottom: 10px; }
.result-score-card-head strong,
.result-score-card-empty > strong { color: #111116; font-size: 16px; }
.result-score-card-head em { color: #574b68; border-color: #b8aec1; background: #f2edf5; }
.result-score-card .score-row strong { color: #17151b; }
.result-score-card .score-row em { color: #635d66; }
.result-score-card .score-track { background: #ddd7df; }
.result-score-card-empty > p { color: #5f5863; }

.result-score-rows .score-row {
  grid-template-columns: minmax(76px, 1fr) minmax(88px, 1.35fr) 34px;
  gap: 7px;
  margin: 7px 0;
}

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

.result-metric-grid article {
  min-height: 104px;
  padding: 14px 12px;
  color: #111116;
  border: 2px solid #111116;
  border-radius: 13px;
  background: #fff2b5;
  box-shadow: 3px 4px 0 #07070a;
}

.result-metric-grid article:nth-child(2) { background: #cff2e4; }
.result-metric-grid article:nth-child(3) { background: #f7cfe2; }
.result-metric-grid span { color: #5c5660; font-size: 10px; }
.result-metric-grid strong { color: #111116; font-size: clamp(14px, 1.25vw, 18px); }

.result-body {
  gap: clamp(30px, 4vw, 48px);
  padding: clamp(28px, 3.4vw, 48px);
  background:
    linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px),
    transparent;
  background-size: 56px 48px;
}

.result-insight-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}

.result-logic {
  align-self: stretch;
  gap: 18px;
  padding: clamp(26px, 3vw, 40px);
  color: #111116;
  border: 2px solid #111116;
  border-radius: 22px;
  background: #fffdfa;
  box-shadow: 7px 8px 0 #07070a;
}

.result-logic-head { max-width: none; }
.result-logic-head > p { color: #67577b; }
.result-logic-head h2 { color: #111116; font-size: clamp(31px, 3.7vw, 48px); }
.result-logic-head > span { color: #625b64; }

.result-logic-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.result-logic-list article,
.result-logic-list .result-logic-action {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  min-height: 154px;
  margin: 0;
  padding: 18px;
  border: 1.5px solid #201e24;
  border-radius: 14px;
  background: #fff;
}

.result-logic-list .result-logic-action {
  background: color-mix(in srgb, var(--result-ip-color, #7ce6cf) 13%, #ebfff7 87%);
}

.result-logic-list article > span {
  width: 32px;
  height: 32px;
  color: #0a090c;
  background: color-mix(in srgb, var(--result-ip-color, var(--accent)) 75%, #fff 25%);
}

.result-logic-list h3 { color: #111116; font-size: 17px; }
.result-logic-list p { margin-top: 7px; color: #514b55; font-size: 13px; line-height: 1.68; }

.result-story {
  grid-template-columns: 1fr;
  grid-template-areas: "head" "visual" "beats";
  gap: 16px;
  padding: clamp(24px, 2.5vw, 34px);
  border: 2px solid #07070a;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 6%, color-mix(in srgb, var(--result-ip-color) 22%, transparent), transparent 34%),
    #14131a;
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--result-ip-color) 76%, #08080c 24%);
}

.result-story-head { display: block; }
.result-story h2 { font-size: clamp(28px, 3.2vw, 42px); }
.result-story-download { margin-top: 16px; }
.result-story-visual { border-width: 2px; border-color: color-mix(in srgb, var(--result-ip-color) 68%, #fff 10%); }
.result-story-beats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.result-story-beats li {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
}
.result-story-beats li > span { width: 28px; height: 28px; }
.result-story-beats p { font-size: 11px; }

.result-finale {
  border: 2px solid #08080c;
  border-radius: 20px;
  box-shadow: 6px 7px 0 color-mix(in srgb, var(--accent) 38%, #08080c 62%);
}

.bond-panel {
  margin-top: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 34%),
    #131219;
  box-shadow: 6px 7px 0 rgba(0, 0, 0, .68);
}

@media (max-width: 1180px) {
  .quiz-shell.is-result-layout { width: min(100%, 1040px); }
  .result-hero,
  .result-hero.has-result-ip { grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); }
  .result-snapshot { grid-column: 1 / -1; }
  .result-snapshot-grid { grid-template-columns: minmax(0, 1fr) minmax(310px, .9fr); }
  .result-insight-stage { grid-template-columns: 1fr; }
  .result-story { grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr); grid-template-areas: "head head" "visual beats"; }
  .result-story-head { display: flex; }
  .result-story-download { margin-top: 0; }
  .result-story-beats { grid-template-columns: 1fr; gap: 0; }
  .result-story-beats li { border-width: 0 0 1px; border-radius: 0; background: transparent; }
}

@media (max-width: 760px) {
  .quiz-wrap.has-result-layout { width: min(100% - 20px, 1480px); }
  .quiz-shell.is-result-layout { width: 100%; }
  .quiz-result { border-radius: 16px; }
  .quiz-result::before { height: 7px; }
  .result-hero,
  .result-hero.has-result-ip {
    grid-template-columns: minmax(0, 1.18fr) minmax(120px, .82fr);
    column-gap: 12px;
    row-gap: 22px;
    padding: 32px 18px 28px;
  }
  .result-hero-copy { padding: 3px 2px 0; }
  .result-kicker { margin-bottom: 8px; font-size: 10px; }
  .result-name { font-size: clamp(29px, 8.8vw, 40px); }
  .result-tags { gap: 5px; margin-top: 14px; }
  .result-tags span { padding: 5px 7px; font-size: 9px; }
  .result-fit-note { margin-top: 13px; padding-top: 12px; font-size: 11px; }
  .result-ip-visual { width: 100%; max-width: 520px; justify-self: center; box-shadow: 5px 6px 0 #07070a; }
  .result-ip-visual figcaption { padding: 10px; }
  .result-ip-visual figcaption span { font-size: 8px; }
  .result-ip-visual figcaption strong { margin-top: 4px; font-size: 14px; }
  .result-ip-visual figcaption p { margin-top: 4px; font-size: 9px; }
  .result-snapshot { grid-column: 1 / -1; }
  .result-snapshot-heading h2 { font-size: 32px; }
  .result-snapshot-grid { grid-template-columns: 1fr; }
  .result-about-card,
  .result-score-card { padding: 18px 16px; }
  .result-about-card > p { font-size: clamp(20px, 6.3vw, 26px); }
  .result-score-rows .score-row { grid-template-columns: minmax(82px, 1fr) minmax(86px, 1.2fr) 34px; }
  .result-metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .result-metric-grid article { min-height: 112px; padding: 13px 9px; }
  .result-metric-grid strong { font-size: 14px; }
  .result-body { gap: 32px; padding: 24px 14px 30px; background-size: 42px 40px; }
  .result-insight-stage { grid-template-columns: 1fr; gap: 24px; }
  .result-logic { padding: 22px 14px; box-shadow: 5px 6px 0 #07070a; }
  .result-logic-list { grid-template-columns: 1fr; }
  .result-logic-list article,
  .result-logic-list .result-logic-action { min-height: 0; padding: 16px 13px; }
  .result-story { grid-template-columns: 1fr; grid-template-areas: "head" "visual" "beats"; padding: 20px 14px; box-shadow: 5px 6px 0 color-mix(in srgb, var(--result-ip-color) 72%, #08080c 28%); }
  .result-story-head { display: block; }
  .result-story-download { width: 100%; margin-top: 16px; }
  .result-story-beats { grid-template-columns: 1fr; gap: 7px; }
  .result-story-beats li { padding: 12px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; background: rgba(255, 255, 255, .035); }
  .result-finale { grid-template-columns: 1fr; box-shadow: 4px 5px 0 color-mix(in srgb, var(--accent) 34%, #08080c 66%); }
  .result-finale-actions .result-actions { grid-template-columns: 1fr; }
  .bond-panel { border-radius: 17px; box-shadow: 4px 5px 0 rgba(0, 0, 0, .68); }
}

@media (max-width: 340px) {
  .result-hero,
  .result-hero.has-result-ip { grid-template-columns: 1fr; }
  .result-name { font-size: clamp(36px, 12vw, 50px); }
  .result-ip-visual { max-width: 290px; }
  .result-snapshot { grid-column: auto; }
}
