:root {
  color-scheme: light;
  --bg: #f8f2e9;
  --paper: #fffaf2;
  --panel: rgba(255, 255, 255, .82);
  --ink: #20242d;
  --muted: #68707f;
  --line: rgba(32, 36, 45, .12);
  --coral: #ed735f;
  --teal: #1eaa8a;
  --blue: #3f7fd1;
  --amber: #e4a331;
  --violet: #8b65c9;
  --shadow: 0 24px 70px rgba(48, 43, 37, .14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(237, 115, 95, .14), transparent 32%),
    linear-gradient(315deg, rgba(30, 170, 138, .13), transparent 36%),
    var(--bg);
}

button {
  border: 0;
  font: inherit;
}

.app-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 18px 16px 48px;
}

.screen {
  display: none;
}

.screen-active {
  display: block;
}

.hero-panel {
  position: relative;
  min-height: calc(100svh - 132px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: min(44px, 9vw);
  background: linear-gradient(180deg, rgba(248, 242, 233, 0), rgba(248, 242, 233, .92) 22%, rgba(248, 242, 233, .98));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #304657;
  font-size: 13px;
  font-weight: 700;
}

.kicker span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(30, 170, 138, .13);
}

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

h1 {
  max-width: 7em;
  font-size: clamp(45px, 14vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 620px;
  margin-top: 18px;
  color: #4b5360;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions,
.result-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #263142, #1eaa8a);
  box-shadow: 0 12px 28px rgba(30, 170, 138, .25);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.stat-strip div,
.feature-grid article,
.panel,
.question-card,
.submit-zone,
.result-card {
  border: 1px solid rgba(255, 255, 255, .78);
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(48, 43, 37, .08);
}

.stat-strip div {
  padding: 15px 10px;
  border-radius: 18px;
  text-align: center;
}

.stat-strip strong {
  display: block;
  color: var(--coral);
  font-size: 28px;
  line-height: 1;
}

.stat-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.feature-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.feature-grid article,
.panel {
  border-radius: 20px;
  padding: 18px;
}

.feature-grid h2,
.panel h3 {
  font-size: 16px;
  line-height: 1.35;
}

.feature-grid p,
.panel p,
.disclaimer,
#testHint {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-grid p {
  margin-top: 8px;
}

.disclaimer {
  margin-top: 18px;
  text-align: center;
}

.sticky-progress {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 20px;
  background: rgba(255, 250, 242, .9);
  box-shadow: 0 16px 42px rgba(48, 43, 37, .09);
  backdrop-filter: blur(18px);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #263142;
  color: white;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.progress-wrap {
  min-width: 0;
  flex: 1;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #303845;
  font-size: 13px;
  font-weight: 800;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32, 36, 45, .1);
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--teal));
  transition: width .28s ease;
}

.question-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  counter-reset: quiz;
}

.question-card {
  border-radius: var(--radius);
  padding: 20px;
  counter-increment: quiz;
}

.question-card.hidden {
  display: none;
}

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

.question-no::after {
  content: counter(quiz);
}

.question-title {
  margin-top: 14px;
  color: #232a36;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.58;
}

.option-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.option-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
  border: 2px solid rgba(32, 36, 45, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-code {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f1eadf;
  color: #3f4652;
  font-weight: 900;
}

.option-text {
  min-width: 0;
  color: #3f4652;
  font-size: 15px;
  line-height: 1.55;
  word-break: break-word;
}

.option-dot {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(32, 36, 45, .16);
  border-radius: 999px;
}

.option-card:has(input:checked) {
  border-color: #263142;
  background: #fff;
  box-shadow: 0 12px 24px rgba(32, 36, 45, .08);
}

.option-card:has(input:checked) .option-code {
  color: white;
  background: #263142;
}

.option-card:has(input:checked) .option-dot {
  border-color: #263142;
  box-shadow: inset 0 0 0 5px #fff;
  background: var(--teal);
}

.missing {
  margin-top: 12px;
  color: #c8372a;
  font-size: 13px;
  font-weight: 800;
}

.submit-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
}

.result-card {
  display: grid;
  gap: 18px;
  margin-top: 4px;
  padding: 20px;
  border-radius: 30px;
  overflow: hidden;
  animation: reveal-up .55s cubic-bezier(.2,.8,.2,1) both;
}

.result-visual {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, .75), transparent 28%),
    linear-gradient(135deg, var(--result-a, #ed735f), var(--result-b, #1eaa8a));
}

.result-avatar {
  width: 100%;
  display: grid;
  place-items: center;
}

/* Hand-drawn result mascots. The SVG is injected by renderResult() so every
   personality has its own little visual signature. */
.avatar-art {
  width: min(100%, 390px);
  padding: 15px;
  filter: drop-shadow(0 18px 18px rgba(32, 36, 45, .16));
  animation: avatar-bob 3.8s ease-in-out infinite;
}

.avatar-art svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

@keyframes avatar-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

.result-symbol {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  color: #fff;
  background: rgba(32, 36, 45, .88);
  box-shadow: 0 22px 48px rgba(32, 36, 45, .25);
  font-size: 68px;
  font-weight: 900;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
}

.orbit-one {
  width: 210px;
  height: 100px;
  transform: rotate(-22deg);
}

.orbit-two {
  width: 250px;
  height: 128px;
  transform: rotate(24deg);
}

.result-copy {
  align-self: center;
}

.result-kicker {
  margin-bottom: 12px;
}

.result-copy h2 {
  font-size: clamp(34px, 11vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
}

.match-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  color: #304657;
  font-size: 13px;
  font-weight: 900;
}

.result-intro,
#resultDesc {
  margin-top: 14px;
  color: #454d5a;
  font-size: 15px;
  line-height: 1.85;
}

.result-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.result-stamps span {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--result-a, var(--coral)) 32%, white);
  border-radius: 999px;
  color: #3c4652;
  background: color-mix(in srgb, var(--result-a, var(--coral)) 10%, white);
  font-size: 12px;
  font-weight: 850;
}

.verdict-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--result-a, var(--coral)) 13%, white), rgba(255,255,255,.86));
}

.verdict-panel::after {
  content: "“";
  position: absolute;
  top: -28px;
  right: 14px;
  color: color-mix(in srgb, var(--result-a, var(--coral)) 22%, transparent);
  font-family: Georgia, serif;
  font-size: 128px;
  line-height: 1;
  pointer-events: none;
}

.panel-eyebrow,
.manual-label {
  color: color-mix(in srgb, var(--result-a, var(--coral)) 75%, #263142);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.verdict {
  position: relative;
  z-index: 1;
  max-width: 730px;
  margin-top: 9px;
  color: #263142;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 850;
  line-height: 1.48;
}

.verdict-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.panel-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.panel-note {
  color: var(--muted);
  font-size: 11px;
}

.manual-grid {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.manual-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.64);
}

.manual-item p {
  color: #454d5a;
  font-size: 13px;
  line-height: 1.65;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--result-a, #ed735f) 35%, white);
  border-radius: 999px;
  color: #304657;
  background: color-mix(in srgb, var(--result-a, #ed735f) 10%, white);
  font-size: 12px;
  font-weight: 850;
}

.result-quote {
  margin-top: 16px !important;
  padding: 14px 16px;
  border-left: 4px solid var(--result-a, #ed735f);
  border-radius: 0 14px 14px 0;
  color: #303845 !important;
  background: rgba(255, 255, 255, .62);
  font-size: 17px !important;
  font-weight: 850;
  line-height: 1.55 !important;
}

.panel {
  margin-top: 14px;
}

.dimension-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.dimension-item {
  display: grid;
  gap: 8px;
}

.dimension-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #303845;
  font-size: 13px;
  font-weight: 850;
}

.dimension-line em {
  display: inline-block;
  margin-left: 7px;
  padding: 3px 6px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--result-b, var(--teal)) 78%, #263142);
  background: color-mix(in srgb, var(--result-b, var(--teal)) 11%, white);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .03em;
  vertical-align: 1px;
}

.dimension-line small {
  margin-left: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32, 36, 45, .1);
}

.bar span {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--result-a, #ed735f), var(--result-b, #1eaa8a));
}

.dimension-note,
.top-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.top-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .7);
}

.top-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.top-score {
  color: #263142;
  font-weight: 900;
  white-space: nowrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(20, 23, 30, .62);
}

.modal.open {
  display: grid;
}

.modal-card {
  width: min(100%, 430px);
}

.poster {
  aspect-ratio: 3 / 4.35;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .28), transparent 25%),
    linear-gradient(145deg, var(--result-a, #ed735f), var(--result-b, #1eaa8a) 58%, #263142);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
}

.poster-head,
.poster-foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  font-weight: 850;
  opacity: .88;
}

.poster-mark {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin: 48px auto 26px;
  border-radius: 34px;
  background: rgba(32, 36, 45, .85);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .22);
  font-size: 64px;
  font-weight: 900;
}

.poster h2 {
  text-align: center;
  font-size: 38px;
  line-height: 1.05;
}

.poster p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.poster-bars {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.poster-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .24);
}

.poster-bar span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: rgba(255, 255, 255, .86);
}

.poster-foot {
  margin-top: 24px;
  display: block;
  text-align: center;
}

.modal-actions {
  justify-content: center;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 720px) {
  .app-shell {
    padding-top: 28px;
  }

  .hero-panel {
    min-height: 660px;
  }

  .hero-art {
    object-position: center 44%;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .question-card {
    padding: 26px;
  }

  .result-card {
    grid-template-columns: .85fr 1.15fr;
    align-items: stretch;
  }

  .result-visual {
    min-height: 330px;
  }

  .dimension-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .manual-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .manual-item {
    display: block;
  }

  .manual-item p {
    margin-top: 7px;
  }
}

@media (max-width: 520px) {
  .app-shell {
    padding-inline: 12px;
  }

  .hero-panel {
    border-radius: 26px;
  }

  .btn {
    width: 100%;
  }

  .submit-zone {
    align-items: stretch;
    flex-direction: column;
  }

  .option-card {
    grid-template-columns: 32px 1fr 20px;
    gap: 10px;
  }

  .poster {
    padding: 20px;
  }
}

.poster-doodle {
  display: block;
  width: min(86%, 250px);
  height: auto;
  margin: 35px auto -32px;
  filter: drop-shadow(0 14px 10px rgba(0, 0, 0, .2));
  transform: rotate(-2deg);
}

.poster-doodle + .poster-mark {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 24px 0 18px auto;
  border-radius: 15px;
  font-size: 21px;
}

/* --- 2026 refresh: neon lab / internet creature archive --- */
:root {
  --bg: #10131b;
  --paper: #171b26;
  --panel: rgba(25, 30, 42, .88);
  --ink: #f5f3ee;
  --muted: #a7afbd;
  --line: rgba(255,255,255,.14);
  --coral: #ff5d8f;
  --teal: #b9f63b;
  --blue: #66d9ff;
  --amber: #ffd34e;
  --violet: #b899ff;
  --shadow: 0 28px 80px rgba(0,0,0,.36);
  --radius: 26px;
}
html { background: var(--bg); }
body {
  color: var(--ink);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 8% 4%, rgba(185,246,59,.13), transparent 26rem), radial-gradient(circle at 92% 16%, rgba(255,93,143,.17), transparent 28rem), linear-gradient(120deg, transparent 0 45%, rgba(102,217,255,.04) 45% 46%, transparent 46% 100%);
}
.app-shell { width: min(100%, 1180px); padding: 18px 18px 64px; }
.topbar { display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 6px 4px 18px; }
.brand { display:inline-flex; align-items:center; gap:10px; color:var(--ink); text-decoration:none; font-weight:950; letter-spacing:-.04em; font-size:18px; }
.brand small { margin-left:2px; color:var(--teal); font-size:10px; letter-spacing:.14em; }
.brand-mark { display:grid; place-items:center; width:30px; height:30px; border-radius:9px; background:var(--teal); color:#131820; font-size:18px; transform:rotate(-8deg); box-shadow: 4px 4px 0 rgba(255,93,143,.7); }
.topbar-meta { display:flex; align-items:center; gap:9px; color:#c3c9d3; font-size:12px; font-weight:800; letter-spacing:.04em; }
.live-dot { width:8px; height:8px; border-radius:50%; background:var(--coral); box-shadow:0 0 0 5px rgba(255,93,143,.14); animation:pulse-dot 1.8s infinite; }
.topbar-divider { width:1px; height:16px; background:var(--line); }
.hero-panel { min-height: 670px; border:1px solid rgba(255,255,255,.16); border-radius:32px; background:#1b202d; box-shadow:var(--shadow); }
.hero-panel::after { content:'SCROLL / TAKE THE QUIZ'; position:absolute; right:22px; top:20px; z-index:2; color:rgba(255,255,255,.6); font-size:10px; font-weight:900; letter-spacing:.14em; writing-mode:vertical-rl; }
.hero-noise { position:absolute; inset:0; pointer-events:none; opacity:.14; background-image: radial-gradient(rgba(255,255,255,.24) .7px, transparent .7px); background-size:7px 7px; mix-blend-mode:screen; }
.hero-art { opacity:.7; mix-blend-mode:screen; filter: saturate(1.4) contrast(1.06); }
.hero-copy { padding: clamp(26px, 7vw, 82px); background: linear-gradient(180deg, rgba(16,19,27,0) 7%, rgba(16,19,27,.72) 26%, rgba(16,19,27,.98) 70%); }
.kicker { border-color:rgba(185,246,59,.38); background:rgba(185,246,59,.12); color:var(--teal); text-transform:uppercase; letter-spacing:.08em; }
.kicker span { background:var(--teal); box-shadow:0 0 0 5px rgba(185,246,59,.15); }
h1 { max-width: 9em; font-size: clamp(50px, 10vw, 104px); line-height:.9; letter-spacing:-.08em; color:#fff; }
h1 em { color:var(--teal); font-style:normal; text-shadow: 5px 5px 0 rgba(255,93,143,.82); }
.hero-sub { max-width:650px; margin-top:22px; color:#c4cad4; font-size:16px; line-height:1.75; }
.hero-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.hero-tags span { padding:7px 10px; border:1px solid rgba(255,255,255,.17); border-radius:6px; color:#e6e9ee; background:rgba(255,255,255,.07); font-size:11px; font-weight:850; }
.hero-actions { margin-top:28px; }
.btn { min-height:52px; border-radius:12px; letter-spacing:.01em; }
.btn-primary { color:#10131b; background:var(--teal); box-shadow:5px 5px 0 var(--coral); }
.btn-primary:hover { background:#d3ff62; box-shadow:7px 7px 0 var(--coral); }
.btn-ghost { border-color:rgba(255,255,255,.18); color:#f6f4ef; background:rgba(255,255,255,.06); }
.stat-strip { gap:12px; margin:16px 0; }
.stat-strip div { position:relative; overflow:hidden; border:1px solid rgba(255,255,255,.14); border-radius:16px; text-align:left; padding:15px 16px; background:#1a1f2c; box-shadow:none; }
.stat-strip div::after { content:'✳'; position:absolute; right:13px; top:10px; color:rgba(185,246,59,.6); font-size:18px; }
.stat-label { display:block; color:#848c9a; font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.stat-strip strong { margin-top:4px; color:var(--teal); font-size:34px; letter-spacing:-.06em; }
.stat-strip span:last-child { color:#b4bbc8; font-size:12px; }
.feature-grid { gap:12px; margin-top:12px; }
.feature-grid article { min-height:170px; border:1px solid rgba(255,255,255,.12); border-radius:18px; padding:18px; background:#1b202d; box-shadow:none; }
.feature-card-lime { box-shadow: inset 0 4px 0 var(--teal) !important; }
.feature-card-pink { box-shadow: inset 0 4px 0 var(--coral) !important; }
.feature-card-blue { box-shadow: inset 0 4px 0 var(--blue) !important; }
.feature-index { color:#87909e; font-size:10px; font-weight:900; letter-spacing:.14em; }
.feature-grid h2 { margin-top:30px; color:#fff; font-size:18px; }
.feature-grid p { color:#aab2c0; font-size:14px; line-height:1.7; }
.disclaimer { color:#77808f; }
.sticky-progress { border-color:rgba(255,255,255,.16); border-radius:16px; background:rgba(20,24,34,.9); box-shadow:0 18px 42px rgba(0,0,0,.3); }
.icon-btn { background:var(--teal); color:#141820; border-radius:11px; }
.progress-top { color:#e8eaf0; }
.progress-track { background:rgba(255,255,255,.12); }
.progress-track span { background:linear-gradient(90deg, var(--coral), var(--amber), var(--teal)); }
.question-list { gap:12px; }
.question-card { border-color:rgba(255,255,255,.13); border-radius:20px; padding:22px; background:#191e2a; box-shadow:none; }
.question-meta { color:#8d96a4; }
.question-title { color:#fff; font-size:20px; letter-spacing:-.02em; }
.option-list { gap:9px; }
.option-card { min-height:62px; border:1px solid rgba(255,255,255,.12); border-radius:13px; background:#222837; }
.option-card:hover { border-color:rgba(185,246,59,.7); transform:translateX(3px); }
.option-code { background:#303849; color:#c5cbd5; border-radius:8px; }
.option-text { color:#d9dde5; }
.option-dot { border-color:rgba(255,255,255,.25); }
.option-card:has(input:checked) { border-color:var(--teal); background:rgba(185,246,59,.11); box-shadow: 4px 4px 0 rgba(255,93,143,.6); }
.option-card:has(input:checked) .option-code { background:var(--teal); color:#11151c; }
.option-card:has(input:checked) .option-dot { border-color:var(--teal); background:var(--teal); box-shadow:inset 0 0 0 5px #191e2a; }
.submit-zone { border-color:rgba(255,255,255,.13); border-radius:16px; background:#1b202d; box-shadow:none; }
#testHint { color:#9fa8b6; }
.result-card { border-color:rgba(255,255,255,.14); border-radius:26px; padding:14px; background:#1b202d; box-shadow:var(--shadow); }
.result-visual { min-height:330px; border-radius:20px; background:linear-gradient(135deg, var(--result-a, #ff5d8f), var(--result-b, #b9f63b)); overflow:hidden; }
.result-visual::before { content:''; position:absolute; inset:0; background-image:radial-gradient(rgba(255,255,255,.35) 1px,transparent 1px); background-size:12px 12px; opacity:.18; }
.result-orbit-label { position:absolute; top:14px; left:16px; z-index:3; color:rgba(16,19,27,.75); font-size:10px; font-weight:950; letter-spacing:.12em; }
.result-avatar { position:absolute; inset:35px; z-index:2; display:grid; place-items:center; }
.result-avatar svg { width:min(92%, 280px); height:auto; filter:drop-shadow(7px 9px 0 rgba(16,19,27,.25)); transform:rotate(-4deg); }
.result-symbol { display:none; }
.result-sticker { position:absolute; right:13px; bottom:14px; z-index:4; padding:7px 10px; border:2px solid #10131b; border-radius:6px; color:#10131b; background:var(--teal); font-size:10px; font-weight:950; transform:rotate(4deg); }
.orbit { border-color:rgba(16,19,27,.35); }
.result-copy { padding:12px 10px 12px 8px; }
.result-copy h2 { color:#fff; }
.match-pill { border-color:rgba(255,255,255,.15); color:#dce1e9; background:rgba(255,255,255,.08); }
.result-intro, #resultDesc { color:#b9c0cc; }
.result-stamps span, .result-tag { border-color:color-mix(in srgb, var(--result-a, var(--coral)) 55%, #fff); color:#f6f5f1; background:color-mix(in srgb, var(--result-a, var(--coral)) 25%, #171b26); }
.panel { border-color:rgba(255,255,255,.13); border-radius:20px; background:#191e2a; box-shadow:none; }
.panel p, .dimension-note, .top-list span, .manual-item p { color:#aeb6c4; }
.verdict-panel { background:linear-gradient(135deg, color-mix(in srgb, var(--result-a, var(--coral)) 27%, #191e2a), #191e2a); }
.verdict { color:#fff; }
.panel-eyebrow, .manual-label { color:var(--teal); }
.manual-item, .top-item { border:1px solid rgba(255,255,255,.1); background:#222837; }
.heading-note { margin-left:8px; color:#8992a0; font-size:11px; font-weight:700; }
.dimension-line { color:#f0f1f3; }
.bar { background:rgba(255,255,255,.1); }
.result-quote { color:#f4f3ef !important; background:rgba(255,255,255,.06); }
.modal { background:rgba(5,7,11,.78); }
.poster { border-color:rgba(255,255,255,.24); }
@keyframes pulse-dot { 50% { box-shadow:0 0 0 8px rgba(255,93,143,0); } }
@media (min-width:720px) { .hero-copy { max-width:74%; } .feature-grid { grid-template-columns:repeat(3,1fr); } .result-copy { padding:24px 26px; } }
@media (max-width:620px) { .topbar-meta span:not(.live-dot):not(.topbar-divider) { display:none; } .topbar-divider { display:none; } .hero-panel { min-height:680px; } .hero-panel::after { display:none; } .hero-copy { padding:28px 22px; } h1 { font-size:clamp(48px,16vw,76px); } .stat-strip { grid-template-columns:1fr 1fr 1fr; } .stat-strip div { padding:12px 10px; } .stat-strip strong { font-size:28px; } .feature-grid article { min-height:145px; } .feature-grid h2 { margin-top:22px; } .question-title { font-size:18px; } }
.poster-avatar { display:grid; place-items:center; width:min(86%, 260px); height:210px; margin:24px auto 2px; }
.poster-avatar .avatar-art { width:100%; padding:0; filter:drop-shadow(0 14px 8px rgba(0,0,0,.2)); animation:none; }
.poster-avatar .avatar-art svg { width:100%; }
.poster-mark { margin:8px 0 12px auto; }

/* Motion layer: small, looping signals keep the lab feeling alive without
   changing the DOM or interrupting the quiz flow. */
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(185,246,59,.22) 0 3%, transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(255,93,143,.23) 0 4%, transparent 22%),
    radial-gradient(circle at 58% 82%, rgba(102,217,255,.18) 0 3%, transparent 20%),
    conic-gradient(from 45deg at 52% 45%, transparent 0 20%, rgba(185,246,59,.08) 28%, transparent 38% 62%, rgba(255,93,143,.08) 71%, transparent 80%);
  filter: blur(16px) saturate(1.25);
  opacity: .9;
  transform: translate3d(0, 0, 0);
  animation: hero-aurora 16s ease-in-out infinite alternate;
}

.hero-noise {
  animation: noise-drift 14s linear infinite;
}

.hero-noise::before,
.hero-noise::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(185,246,59,.25);
  border-radius: 50%;
  transform-origin: center;
}

.hero-noise::before {
  width: 42vw;
  height: 42vw;
  min-width: 300px;
  min-height: 300px;
  right: -12%;
  top: -16%;
  box-shadow: 0 0 0 18px rgba(185,246,59,.035), 0 0 0 42px rgba(255,93,143,.03);
  animation: orbit-float 18s ease-in-out infinite;
}

.hero-noise::after {
  width: 24vw;
  height: 24vw;
  min-width: 190px;
  min-height: 190px;
  left: -8%;
  bottom: -15%;
  border-color: rgba(102,217,255,.25);
  animation: orbit-float 12s ease-in-out -4s infinite reverse;
}

.hero-art {
  animation: art-breathe 12s ease-in-out infinite;
}

.hero-tags span {
  animation: tag-flicker 5s ease-in-out infinite;
}

.hero-tags span:nth-child(2) { animation-delay: -1.8s; }
.hero-tags span:nth-child(3) { animation-delay: -3.4s; }

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -70%;
  left: -34%;
  width: 24%;
  height: 240%;
  background: rgba(255,255,255,.38);
  mix-blend-mode: screen;
  opacity: .7;
  pointer-events: none;
  transform: rotate(22deg) translateX(-240%);
  transition: transform .55s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: rotate(22deg) translateX(760%);
}

.btn-primary {
  animation: button-breathe 2.8s ease-in-out infinite;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  animation-play-state: paused;
}

.btn:focus-visible,
.icon-btn:focus-visible,
.option-card:has(input:focus-visible) {
  outline: 3px solid rgba(102,217,255,.85);
  outline-offset: 3px;
}

.icon-btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: rotate(-7deg) scale(1.06);
  box-shadow: 4px 4px 0 var(--coral);
}

.stat-strip div,
.feature-grid article,
.option-card,
.panel,
.top-item {
  transition: transform .24s cubic-bezier(.2,.8,.2,1), border-color .24s ease, box-shadow .24s ease;
}

.stat-strip div:hover,
.feature-grid article:hover,
.panel:hover {
  transform: translateY(-3px) rotate(-.25deg);
  border-color: rgba(185,246,59,.35);
}

.option-card:hover,
.option-card:focus-within {
  transform: translateX(4px);
}

@keyframes hero-aurora {
  0% { transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(3%, 2%, 0) rotate(7deg) scale(1.06); }
  100% { transform: translate3d(-1%, 4%, 0) rotate(-5deg) scale(1.02); }
}

@keyframes noise-drift {
  0% { background-position: 0 0; }
  100% { background-position: 84px 56px; }
}

@keyframes orbit-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); opacity: .55; }
  50% { transform: translate3d(18px, -12px, 0) rotate(14deg) scale(1.08); opacity: .95; }
}

@keyframes art-breathe {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.025) translate3d(0, -5px, 0); }
}

@keyframes tag-flicker {
  0%, 84%, 100% { opacity: .88; transform: translateY(0); }
  88% { opacity: 1; transform: translateY(-2px) rotate(-1deg); }
  92% { opacity: .68; transform: translateY(1px) rotate(1deg); }
}

@keyframes button-breathe {
  0%, 100% { transform: translateY(0); box-shadow: 5px 5px 0 var(--coral); }
  50% { transform: translateY(-2px); box-shadow: 7px 8px 0 var(--coral), 0 0 0 5px rgba(185,246,59,.08); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* Motion layer: a living lab background and tactile controls */
body { position: relative; overflow-x: hidden; }
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  border-radius: 45% 55% 62% 38% / 42% 38% 62% 58%;
  filter: blur(2px);
  opacity: .22;
  mix-blend-mode: screen;
}
body::before {
  top: -18vw;
  left: -14vw;
  background: radial-gradient(circle at 35% 35%, rgba(185,246,59,.9), transparent 34%), radial-gradient(circle at 68% 62%, rgba(102,217,255,.62), transparent 44%);
  animation: blob-drift-a 18s ease-in-out infinite alternate;
}
body::after {
  right: -18vw;
  bottom: -20vw;
  background: radial-gradient(circle at 42% 45%, rgba(255,93,143,.86), transparent 34%), radial-gradient(circle at 70% 68%, rgba(184,153,255,.58), transparent 46%);
  animation: blob-drift-b 22s ease-in-out infinite alternate;
}
.app-shell { position: relative; z-index: 1; }
.hero-panel { isolation: isolate; animation: panel-breathe 8s ease-in-out infinite; }
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: -1;
  pointer-events: none;
  background: conic-gradient(from 210deg at 52% 50%, transparent 0 16%, rgba(185,246,59,.18) 22%, transparent 31% 50%, rgba(255,93,143,.18) 58%, transparent 68% 100%);
  filter: blur(22px);
  animation: hero-orbit 16s linear infinite;
}
.hero-noise { animation: noise-shift 8s steps(8) infinite; }
.hero-panel::after { animation: label-flicker 4.5s ease-in-out infinite; }
.kicker { animation: kicker-breathe 3.6s ease-in-out infinite; }
.btn { position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -45%;
  width: 28%;
  height: 160%;
  opacity: 0;
  transform: rotate(20deg) translateX(-20px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: opacity .2s ease;
}
.btn:hover::before { opacity: .9; animation: button-glint .72s ease-out both; }
.btn-primary { animation: button-breathe 3.2s ease-in-out infinite; }
.btn-primary:active { animation: none; transform: translate(3px, 3px) scale(.98); box-shadow: 2px 2px 0 var(--coral); }
.btn-ghost:hover { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(185,246,59,.1); }
.feature-card { transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, box-shadow .28s ease; }
.feature-card:hover { transform: translateY(-5px) rotate(-.4deg); border-color: rgba(255,255,255,.3); box-shadow: 7px 8px 0 rgba(255,93,143,.22) !important; }
.feature-card:nth-child(2):hover { transform: translateY(-5px) rotate(.5deg); box-shadow: 7px 8px 0 rgba(185,246,59,.2) !important; }
.feature-card:nth-child(3):hover { transform: translateY(-5px) rotate(-.6deg); box-shadow: 7px 8px 0 rgba(102,217,255,.2) !important; }
.stat-strip div { animation: stat-float 5s ease-in-out infinite; }
.stat-strip div:nth-child(2) { animation-delay: -1.7s; }
.stat-strip div:nth-child(3) { animation-delay: -3.2s; }
.option-card { transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.option-card:active { transform: scale(.99); }
.question-card { animation: question-in .45s both; }
.question-card:nth-child(2) { animation-delay: .04s; }
.question-card:nth-child(3) { animation-delay: .08s; }
.question-card:nth-child(4) { animation-delay: .12s; }
.progress-track span { animation: progress-glow 2.2s ease-in-out infinite; }
.result-sticker { animation: sticker-wiggle 4.8s ease-in-out infinite; }

@keyframes blob-drift-a {
  0% { transform: translate3d(0,0,0) rotate(0deg) scale(1); border-radius:45% 55% 62% 38% / 42% 38% 62% 58%; }
  50% { transform: translate3d(9vw, 8vh,0) rotate(24deg) scale(1.12); border-radius:61% 39% 46% 54% / 56% 63% 37% 44%; }
  100% { transform: translate3d(2vw, 15vh,0) rotate(46deg) scale(.94); border-radius:35% 65% 58% 42% / 65% 44% 56% 35%; }
}
@keyframes blob-drift-b {
  0% { transform: translate3d(0,0,0) rotate(0deg) scale(1); border-radius:52% 48% 38% 62% / 46% 58% 42% 54%; }
  50% { transform: translate3d(-11vw,-8vh,0) rotate(-26deg) scale(1.13); border-radius:38% 62% 55% 45% / 62% 42% 58% 38%; }
  100% { transform: translate3d(-4vw,-17vh,0) rotate(-48deg) scale(.92); border-radius:65% 35% 42% 58% / 37% 62% 38% 63%; }
}
@keyframes hero-orbit { to { transform: rotate(360deg); } }
@keyframes noise-shift { 0%,100% { transform: translate(0,0); } 25% { transform: translate(5px,-3px); } 50% { transform: translate(-3px,5px); } 75% { transform: translate(4px,2px); } }
@keyframes panel-breathe { 0%,100% { box-shadow: var(--shadow); } 50% { box-shadow: 0 30px 92px rgba(0,0,0,.44), 0 0 0 1px rgba(185,246,59,.06); } }
@keyframes label-flicker { 0%,88%,100% { opacity: .72; } 91% { opacity: .3; } 94% { opacity: .9; } }
@keyframes kicker-breathe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); box-shadow: 0 0 0 5px rgba(185,246,59,.05); } }
@keyframes button-breathe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); box-shadow: 6px 7px 0 var(--coral), 0 0 0 5px rgba(185,246,59,.05); } }
@keyframes button-glint { from { transform: rotate(20deg) translateX(-20px); } to { transform: rotate(20deg) translateX(360px); } }
@keyframes stat-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes question-in { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }
@keyframes progress-glow { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.15); } }
@keyframes sticker-wiggle { 0%,88%,100% { transform: rotate(4deg); } 92% { transform: rotate(7deg) translateY(-2px); } 96% { transform: rotate(1deg); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Result screen: one loud doodle, one line of truth. */
#resultScreen .result-card {
  width: min(100%, 760px);
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 16px;
}
#resultScreen .result-visual {
  min-height: clamp(340px, 55vw, 500px);
}
#resultScreen .result-copy {
  padding: 2px 14px 10px;
  text-align: center;
}
#resultScreen .result-kicker { margin-inline: auto; }
#resultScreen .result-copy h2,
#resultScreen .verdict {
  font-family: "Hiragino Maru Gothic ProN", "Arial Rounded MT Bold", "PingFang SC", sans-serif;
  font-weight: 950;
  letter-spacing: -.065em;
  text-shadow: 3px 3px 0 rgba(255,93,143,.72), -1px -1px 0 rgba(185,246,59,.48);
}
#resultScreen .result-copy h2 { font-size: clamp(42px, 9vw, 78px); }
#resultScreen .match-pill,
#resultScreen .result-intro,
#resultScreen .result-stamps { display: none; }
#resultScreen .panel:not(.verdict-panel) { display: none; }
#resultScreen .verdict-panel {
  width: min(100%, 760px);
  margin: 14px auto 0;
  padding: clamp(22px, 5vw, 42px);
  text-align: center;
}
#resultScreen .verdict-panel .panel-eyebrow { font-size: 11px; }
#resultScreen .verdict {
  max-width: none;
  margin-top: 14px;
  font-size: clamp(24px, 5.2vw, 42px);
  line-height: 1.3;
}
#resultScreen .verdict-meta { justify-content: center; opacity: .72; }
#resultScreen .result-actions {
  width: min(100%, 760px);
  margin-inline: auto;
  justify-content: center;
}
#resultScreen .result-actions .btn { min-width: 150px; }

/* Livelier display type across the lab, with readable body copy kept intact. */
h1, h2, h3, .brand, .btn, .feature-index, .panel-eyebrow, .kicker {
  font-family: "Hiragino Maru Gothic ProN", "Arial Rounded MT Bold", "PingFang SC", sans-serif;
}
h1, h2 { font-weight: 950; }
.question-title { letter-spacing: -.035em; }
@media (max-width: 620px) {
  #resultScreen .result-visual { min-height: 340px; }
  #resultScreen .result-copy h2 { font-size: 44px; }
  #resultScreen .verdict { font-size: 26px; }
}

/* Lean result mode: one doodle, one sentence, zero dashboard clutter. */
#resultScreen .result-copy,
#resultScreen .manual-panel,
#resultScreen > .panel:not(.verdict-panel) {
  display: none !important;
}

#resultScreen .result-card {
  display: block;
  padding: 12px;
}

#resultScreen .result-visual {
  min-height: clamp(340px, 58vw, 560px);
  border-radius: 22px;
}

#resultScreen .result-avatar {
  inset: 28px;
}

#resultScreen .result-avatar svg {
  width: min(94%, 440px);
}

#resultScreen .verdict-panel {
  margin-top: 14px;
  padding: clamp(22px, 5vw, 38px);
  text-align: center;
}

#resultScreen .verdict-panel .panel-eyebrow,
#resultScreen .verdict-panel .verdict-meta {
  display: none;
}

#resultScreen .verdict {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(21px, 4.4vw, 34px);
  line-height: 1.45;
  text-wrap: balance;
}

/* Bright wall mode: keep the punk stickers, lift the whole canvas. */
:root {
  --bg: #f6f1e8;
  --paper: #fffdf7;
  --panel: rgba(255,253,247,.88);
  --ink: #171a24;
  --muted: #626979;
  --line: rgba(23,26,36,.14);
  --shadow: 0 24px 72px rgba(48,42,34,.16);
}
body {
  color: var(--ink);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 8% 4%, rgba(185,246,59,.28), transparent 26rem), radial-gradient(circle at 92% 16%, rgba(255,93,143,.2), transparent 28rem), linear-gradient(120deg, transparent 0 45%, rgba(38,51,74,.045) 45% 46%, transparent 46% 100%);
}
body::before, body::after { opacity: .3; mix-blend-mode: multiply; }
.topbar-meta { color: #5e6573; }
.topbar-divider { background: rgba(23,26,36,.18); }
.hero-panel { border-color: rgba(23,26,36,.14); background: #fffdf7; box-shadow: var(--shadow); }
.hero-art { opacity: .62; mix-blend-mode: multiply; filter: saturate(1.35) contrast(1.04); }
.hero-copy { background: linear-gradient(180deg, rgba(255,253,247,0) 6%, rgba(255,253,247,.82) 30%, rgba(255,253,247,.98) 74%); }
.hero-panel::after { color: rgba(23,26,36,.5); }
.kicker { border-color: rgba(78,110,35,.34); background: rgba(185,246,59,.28); color: #36511a; }
h1 { color: #171a24; text-shadow: none; }
h1 em { color: #75a600; text-shadow: 4px 4px 0 rgba(255,93,143,.75); }
.hero-sub { color: #4e5665; }
.hero-tags span { border-color: rgba(23,26,36,.16); color: #303745; background: rgba(255,255,255,.72); }
.stat-strip div, .feature-grid article { border-color: rgba(23,26,36,.13); background: rgba(255,253,247,.9); }
.stat-strip div::after { color: #7aa516; }
.stat-label, .feature-index { color: #737b88; }
.stat-strip span:last-child, .feature-grid p { color: #616a78; }
.feature-grid h2 { color: #171a24; }
.disclaimer { color: #7b8089; }
.sticky-progress { border-color: rgba(23,26,36,.14); background: rgba(255,253,247,.9); box-shadow: 0 16px 42px rgba(48,42,34,.12); }
.progress-top { color: #303744; }
.question-card, .submit-zone { border-color: rgba(23,26,36,.13); background: rgba(255,253,247,.92); }
.question-meta { color: #707886; }
.question-title { color: #171a24; }
.option-card { border-color: rgba(23,26,36,.13); background: #f1eee8; }
.option-code { background: #e3e0d8; color: #454c59; }
.option-text { color: #343b49; }
.option-dot { border-color: rgba(23,26,36,.24); }
.option-card:has(input:checked) { background: rgba(185,246,59,.18); box-shadow: 4px 4px 0 rgba(255,93,143,.62); }
.option-card:has(input:checked) .option-dot { box-shadow: inset 0 0 0 5px #fffdf7; }
#testHint { color: #687181; }
.result-card, .panel { border-color: rgba(23,26,36,.14); background: rgba(255,253,247,.92); box-shadow: 0 18px 50px rgba(48,42,34,.1); }
.result-copy h2, #resultScreen .result-copy h2 { color: #171a24; }
.result-intro, #resultDesc { color: #4f5867; }
.match-pill { color: #394252; background: rgba(23,26,36,.06); }
.verdict-panel { background: linear-gradient(135deg, color-mix(in srgb, var(--result-a, var(--coral)) 20%, #fffdf7), rgba(255,253,247,.92)); }
.verdict { color: #171a24; }
.manual-item, .top-item { background: #f1eee8; border-color: rgba(23,26,36,.11); }
.dimension-line { color: #303744; }
.result-quote { color: #303744 !important; background: rgba(23,26,36,.06); }
.modal { background: rgba(23,26,36,.48); }
