:root {
  --paper: #f5f0e8;
  --paper-2: #eee7dc;
  --ink: #171716;
  --muted: #746f68;
  --red: #e64a3d;
  --red-dark: #b92f28;
  --acid: #d9ee68;
  --line: rgba(23, 23, 22, .15);
  --white: #fffdf8;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(47, 40, 32, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { color: inherit; }
.page-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .18; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
.topbar {
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; border-bottom: 1px solid var(--line); background: rgba(245, 240, 232, .88);
  backdrop-filter: blur(18px); position: sticky; top: 0; z-index: 50;
}
.brand { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50% 50% 46% 54%; background: var(--red); color: #fff; transform: rotate(-7deg); }
.brand-mark::first-letter { transform: rotate(7deg); }
.beta { font-size: 9px; letter-spacing: .11em; border: 1px solid var(--ink); border-radius: 20px; padding: 3px 7px; margin-left: 2px; }
.top-note { font-size: 12px; color: var(--muted); }
.text-button { border: 0; background: none; cursor: pointer; font-size: 12px; font-weight: 700; border-bottom: 1px solid var(--ink); padding: 4px 0; }

.hero { min-height: calc(100vh - 72px); padding: 9vh 8vw 5vh; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; }
.hero::before { content: "合拍"; position: absolute; right: -2vw; bottom: -10vh; font: 900 clamp(160px, 25vw, 420px)/.8 "Noto Sans SC"; color: rgba(230,74,61,.045); letter-spacing: -.14em; }
.hero-copy { max-width: 720px; position: relative; z-index: 2; }
.eyebrow, .section-number { display: flex; align-items: center; gap: 9px; color: var(--red); font-size: 10px; letter-spacing: .16em; font-weight: 800; }
.eyebrow span { width: 26px; height: 2px; background: var(--red); }
.hero h1 { font: 900 clamp(52px, 6.3vw, 100px)/1.04 "Noto Sans SC", sans-serif; letter-spacing: -.07em; margin: 24px 0; }
.hero-copy > p { color: #58534d; font-size: clamp(14px, 1.3vw, 18px); line-height: 1.9; max-width: 620px; }
.primary, .secondary { border: 0; border-radius: 999px; min-height: 54px; padding: 0 25px; cursor: pointer; font-weight: 700; transition: .25s ease; display: inline-flex; align-items: center; justify-content: center; gap: 26px; }
.primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(230,74,61,.24); }
.primary:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 12px 28px rgba(230,74,61,.3); }
.secondary { background: transparent; border: 1px solid var(--line); }
.secondary:hover { background: var(--white); border-color: var(--ink); }
.hero-cta { margin-top: 24px; min-width: 194px; }
.hero-cta span { font-size: 21px; }
.hero-visual { position: relative; width: min(40vw, 570px); aspect-ratio: 1; justify-self: end; }
.orbit { position: absolute; border: 1px solid rgba(23,23,22,.28); border-radius: 50%; inset: 8%; }
.orbit-one { animation: spin 22s linear infinite; }
.orbit-one::before { content: "♥"; position: absolute; top: 10%; left: 10%; width: 46px; height: 46px; background: var(--acid); display: grid; place-items: center; border-radius: 50%; transform: rotate(-28deg); }
.orbit-two { inset: 20%; border-style: dashed; animation: spin 18s linear infinite reverse; }
.orbit-two::after { content: "✦"; position: absolute; right: -11px; top: 50%; color: var(--red); font-size: 28px; }
.core-card { position: absolute; inset: 29%; border-radius: 50%; background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 24px 70px rgba(23,23,22,.22); }
.core-card strong { font-size: clamp(76px, 9vw, 130px); line-height: .9; color: var(--red); }
.core-kicker { font-size: 8px; letter-spacing: .2em; color: #aaa69f; }
.core-label { font-size: 11px; }
.float-tag { position: absolute; padding: 11px 16px; background: var(--white); border: 1px solid var(--ink); border-radius: 999px; box-shadow: 5px 6px 0 var(--ink); font-size: 11px; font-weight: 700; }
.tag-one { right: 0; top: 17%; transform: rotate(5deg); }
.tag-two { left: 1%; bottom: 23%; transform: rotate(-7deg); background: var(--acid); }
.tag-three { right: 3%; bottom: 17%; transform: rotate(4deg); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-foot { position: absolute; left: 8vw; right: 8vw; bottom: 3vh; border-top: 1px solid var(--line); padding-top: 16px; display: flex; gap: 28px; color: var(--muted); font-size: 9px; letter-spacing: .12em; }

.simulator { max-width: 1500px; margin: 0 auto; padding: 90px 5vw 120px; }
.stepper { display: flex; align-items: center; max-width: 760px; margin: 0 auto 76px; }
.step { border: 0; background: none; display: flex; align-items: center; gap: 9px; cursor: pointer; padding: 0; opacity: .35; white-space: nowrap; }
.step.active, .step.done { opacity: 1; }
.step b { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; font-size: 10px; }
.step.active b { background: var(--ink); color: #fff; }
.step.done b { background: var(--acid); }
.step span { font-size: 12px; font-weight: 700; }
.step-line { height: 1px; background: var(--line); flex: 1; margin: 0 20px; }
.step-line i { display: block; width: 0; height: 100%; background: var(--ink); transition: .4s; }
.step-line.filled i { width: 100%; }
.panel { display: none; animation: reveal .45s ease; }
.panel.active { display: block; }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.section-heading h2 { font: 800 clamp(34px, 4vw, 60px)/1.12 "Noto Sans SC"; letter-spacing: -.055em; margin: 12px 0; }
.section-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.live-total { width: 140px; height: 140px; border-radius: 50%; border: 1px solid var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 0 0 auto; }
.live-total span, .live-total small { font-size: 9px; color: var(--muted); }
.live-total strong { font-size: 42px; line-height: 1; }
.card { background: rgba(255,253,248,.7); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.preference-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 22px; }
.weight-card { padding: 18px 28px 18px; }
.card-label { padding: 5px 0 17px; border-bottom: 1px solid var(--line); font-size: 9px; letter-spacing: .15em; font-weight: 800; text-transform: uppercase; }
.weight-row { display: grid; grid-template-columns: 170px 1fr 46px; gap: 20px; align-items: center; min-height: 72px; border-bottom: 1px solid var(--line); }
.weight-row:last-child { border: 0; }
.weight-name b { display: block; font-size: 14px; }
.weight-name small { color: var(--muted); font-size: 10px; }
.weight-value { width: 42px; height: 30px; display: grid; place-items: center; border-radius: 8px; border: 1px solid var(--line); font-size: 12px; font-weight: 800; }
input[type="range"] { -webkit-appearance: none; appearance: none; height: 4px; width: 100%; border-radius: 6px; outline: none; background: linear-gradient(to right, var(--red) var(--fill, 50%), #dfd9d0 var(--fill, 50%)); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--white); border: 5px solid var(--red); cursor: grab; box-shadow: 0 2px 6px rgba(0,0,0,.13); }
.dark-card { background: var(--ink); color: #fff; padding: 24px; box-shadow: none; display: flex; flex-direction: column; }
.muted { color: #77736e; border-color: rgba(255,255,255,.14); }
.mini-donut { width: 132px; height: 132px; border-radius: 50%; margin: 32px auto 24px; background: conic-gradient(var(--red) 0 25%, var(--acid) 25% 45%, #353533 45%); position: relative; display: grid; place-items: center; }
.mini-donut::before { content: ""; position: absolute; inset: 14px; border-radius: 50%; background: var(--ink); }
.mini-donut span { position: relative; z-index: 1; font-size: 26px; font-weight: 800; }
.profile-preview h3 { font-size: 23px; margin: 0 0 10px; text-align: center; }
.profile-preview > p { color: #aaa69f; line-height: 1.75; font-size: 12px; text-align: center; margin: 0 0 30px; }
.profile-stat { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.13); padding: 14px 0; font-size: 11px; }
.profile-stat span { color: #77736e; }
.profile-stat strong { color: var(--acid); }
.subsection-heading { margin: 70px 0 22px; display: flex; justify-content: space-between; align-items: center; }
.subsection-heading > div { display: flex; align-items: center; gap: 12px; }
.subsection-heading h3 { font-size: 21px; margin: 0; }
.subsection-heading p { margin: 0; font-size: 11px; color: var(--muted); }
.mini-index { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; font-size: 10px; font-weight: 800; }
.mini-index.red { background: var(--red); color: #fff; border-color: var(--red); }
.context-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 8px 20px; }
.field { padding: 18px 14px; display: flex; flex-direction: column; gap: 9px; }
.field > span, .candidate-name-wrap label { font-size: 10px; color: var(--muted); font-weight: 700; }
.field > span small { font-weight: 400; }
select, input[type="text"], .candidate-name-wrap input { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 8px 22px 10px 0; color: var(--ink); outline: none; border-radius: 0; }
select:focus, input:focus { border-color: var(--red); }
.field-wide { grid-column: 1 / -1; border-top: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button { border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 8px 14px; cursor: pointer; font-size: 11px; transition: .2s; }
.chips button.selected { border-color: var(--ink); background: var(--ink); color: #fff; }
.hard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hard-item { padding: 18px; display: flex; align-items: center; gap: 12px; cursor: pointer; box-shadow: none; }
.hard-item input { display: none; }
.toggle { width: 38px; height: 22px; border-radius: 20px; background: #d6d0c7; position: relative; flex: 0 0 auto; transition: .2s; }
.toggle::after { content: ""; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; border-radius: 50%; background: white; transition: .2s; }
.hard-item input:checked + .toggle { background: var(--red); }
.hard-item input:checked + .toggle::after { transform: translateX(16px); }
.hard-item b, .hard-item small { display: block; }
.hard-item b { font-size: 11px; }
.hard-item small { color: var(--muted); font-size: 9px; margin-top: 3px; }
.panel-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 55px; }
.privacy-note { font-size: 10px; color: var(--muted); }
.next-btn { min-width: 235px; }

.compact-heading { align-items: center; }
.candidate-name-wrap { width: 220px; padding: 16px 20px; border-left: 1px solid var(--line); }
.candidate-name-wrap input { font-size: 25px; font-weight: 800; padding-top: 6px; }
.preset-section { margin: 6px 0 34px; }
.preset-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 25px; margin-bottom: 16px; }
.preset-heading > div { display: flex; align-items: center; gap: 12px; }
.preset-heading h3 { margin: 0 0 4px; font-size: 18px; }
.preset-heading p, .preset-heading > small { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.preset-heading > small { max-width: 330px; text-align: right; }
.preset-grid { display: grid; grid-template-columns: repeat(6, minmax(180px, 1fr)); gap: 12px; overflow-x: auto; padding: 2px 2px 14px; scrollbar-width: thin; scrollbar-color: var(--ink) transparent; }
.preset-card { min-width: 190px; min-height: 245px; border: 1px solid var(--line); border-radius: 19px; padding: 18px; background: var(--white); color: var(--ink); text-align: left; cursor: pointer; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.preset-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 12px 26px rgba(23,23,22,.1); }
.preset-card.active { border: 2px solid var(--ink); box-shadow: 5px 6px 0 var(--ink); transform: translateY(-3px); }
.preset-card.active::after { content: "已套用 ✓"; position: absolute; right: 11px; top: 11px; padding: 4px 7px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 9px; font-style: normal; }
.preset-symbol { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); font-size: 22px; margin-bottom: 20px; }
.preset-card > small { color: var(--muted); font-size: 10px; margin-bottom: 5px; }
.preset-card > b { font-size: 17px; }
.preset-card > p { margin: 11px 0 17px; font-size: 12px; line-height: 1.65; color: #5f5a54; }
.preset-card > em { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-style: normal; }
.preset-card.aries { background: #f9d8d2; }
.preset-card.aries .preset-symbol { background: var(--red); color: #fff; }
.preset-card.steady { background: #edf2d6; }
.preset-card.career { background: #dedddb; }
.preset-card.social { background: #f6dfaa; }
.preset-card.homebody { background: #e3e0d8; }
.preset-card.explorer { background: #d9e8e8; }
.candidate-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 22px; }
.candidate-main { display: flex; flex-direction: column; gap: 22px; }
.score-inputs, .tag-inputs, .behavior-card, .interest-card { padding: 24px; }
.card-title { display: flex; justify-content: space-between; align-items: center; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.card-title span { font-size: 13px; font-weight: 800; }
.card-title small { color: var(--muted); font-size: 9px; }
.rating-row { display: grid; grid-template-columns: 165px 1fr 48px; gap: 18px; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); }
.rating-row:last-child { border: 0; }
.rating-name b, .rating-name small { display: block; }
.rating-name b { font-size: 12px; }
.rating-name small { font-size: 9px; color: var(--muted); }
.rating-score { font-size: 12px; font-weight: 800; text-align: center; }
.rating-score b { font-size: 22px; }
.candidate-context { grid-template-columns: repeat(2, 1fr); padding: 0; box-shadow: none; border: 0; background: none; }
.candidate-context .field:nth-child(even) { border-left: 1px solid var(--line); padding-left: 24px; }
.candidate-side { display: flex; flex-direction: column; gap: 18px; }
.binary-row { display: flex; justify-content: space-between; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); gap: 12px; }
.binary-row:last-child { border: 0; }
.binary-row b, .binary-row small { display: block; }
.binary-row b { font-size: 11px; }
.binary-row small { color: var(--muted); font-size: 8px; margin-top: 3px; }
.binary-row select { width: 112px; font-size: 10px; }
.interest-card .chips { margin-top: 18px; }
.tip-card { background: var(--acid); border-radius: var(--radius); padding: 20px; transform: rotate(-1.5deg); }
.tip-card span { font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.tip-card p { font-size: 12px; line-height: 1.7; margin: 9px 0 0; }

.result-panel { margin: -90px -5vw -120px; }
.result-masthead { min-height: 440px; padding: 80px 8vw 65px; color: #fff; background: var(--ink); border-radius: 36px 36px 0 0; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; }
.result-masthead::after { content: "MATCH"; position: absolute; right: -2vw; bottom: -30px; font-size: clamp(100px, 18vw, 260px); font-weight: 900; line-height: .7; color: rgba(255,255,255,.025); letter-spacing: -.08em; }
.section-number.light { color: var(--acid); }
.result-title-block h2 { margin: 18px 0 8px; font-size: clamp(42px, 6vw, 84px); letter-spacing: -.06em; }
.result-title-block p { color: #817e78; font-size: 11px; }
.result-score-wrap { display: flex; align-items: center; gap: 28px; padding-right: 6vw; position: relative; z-index: 2; }
.score-ring { width: 220px; height: 220px; border-radius: 50%; background: conic-gradient(var(--red) 0 84%, #343431 84%); display: grid; place-items: center; position: relative; box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
.score-ring::before { content: ""; position: absolute; inset: 14px; background: var(--ink); border-radius: 50%; }
.score-ring > div { position: relative; display: flex; align-items: baseline; }
.score-ring strong { font-size: 72px; letter-spacing: -.08em; }
.score-ring span { color: #78756f; font-size: 10px; margin-left: 5px; }
.score-meta { width: 190px; }
.score-meta small { color: #85817b; }
.score-meta h3 { font-size: 25px; margin: 7px 0 5px; color: var(--acid); }
.score-meta span { color: #aaa69f; font-size: 11px; line-height: 1.6; }
.report-stamp { position: absolute; top: 42px; right: 38px; color: var(--red); border: 1px solid var(--red); border-radius: 50%; width: 72px; height: 72px; display: grid; place-items: center; text-align: center; font-size: 8px; letter-spacing: .12em; transform: rotate(11deg); }
.hard-alert { background: #ffe1dc; border: 1px solid #f1a69d; color: #74231c; margin: 30px 5vw 0; padding: 20px 24px; border-radius: 15px; display: flex; align-items: center; gap: 14px; font-size: 12px; line-height: 1.6; }
.hard-alert::before { content: "!"; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; background: var(--red); color: white; font-weight: 800; }
.hidden { display: none !important; }
.report-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 22px; padding: 34px 5vw 0; }
.report-main { display: flex; flex-direction: column; gap: 22px; }
.report-card, .side-report-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.report-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.report-card-head > div { display: flex; align-items: center; gap: 12px; }
.report-card-head h3 { margin: 0; font-size: 16px; }
.report-card-head span { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; font-size: 9px; }
.report-card-head small, .report-card-head > b { color: var(--muted); font-size: 8px; letter-spacing: .14em; }
.dimension-bars { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 44px; }
.dimension-item { display: grid; grid-template-columns: 96px 1fr 35px; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.dimension-item span { font-size: 10px; }
.dimension-item b { font-size: 11px; text-align: right; }
.bar-track { height: 5px; border-radius: 10px; background: var(--paper-2); overflow: hidden; }
.bar-track i { display: block; height: 100%; border-radius: 10px; background: var(--ink); width: 0; transition: width .9s ease; }
.dimension-item.low .bar-track i { background: var(--red); }
.verdict-card { background: var(--acid); position: relative; padding: 35px 65px; overflow: hidden; }
.quote-mark { position: absolute; right: 30px; top: -25px; font-size: 150px; color: rgba(23,23,22,.12); font-family: Georgia, serif; }
.verdict-label { font-size: 9px; letter-spacing: .14em; font-weight: 800; }
.verdict-card h3 { font: 700 clamp(22px, 2.6vw, 36px)/1.45 "Noto Sans SC"; letter-spacing: -.04em; max-width: 800px; margin: 15px 0; position: relative; }
.verdict-card p { font-size: 11px; line-height: 1.8; max-width: 750px; color: #4d5031; }
.two-column-report { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.insight-item { position: relative; padding: 16px 8px 16px 28px; border-top: 1px solid var(--line); }
.insight-item::before { content: ""; position: absolute; left: 4px; top: 22px; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.risk-card .insight-item::before { background: var(--red); }
.insight-item b { display: block; font-size: 12px; margin-bottom: 5px; }
.insight-item p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.report-side { display: flex; flex-direction: column; gap: 16px; }
.side-report-card > span { font-size: 9px; letter-spacing: .12em; color: var(--muted); font-weight: 800; }
.quality-card strong { display: block; font-size: 60px; letter-spacing: -.07em; margin-top: 12px; }
.side-report-card p { color: var(--muted); font-size: 10px; line-height: 1.7; }
.quality-track { height: 5px; background: var(--paper-2); border-radius: 10px; margin-top: 18px; }
.quality-track i { display: block; width: 78%; height: 100%; border-radius: 10px; background: var(--red); transition: .8s; }
.preference-card { background: var(--ink); color: white; }
.preference-card h3 { color: var(--acid); margin: 16px 0 5px; font-size: 21px; }
.preference-code { font-size: 9px; color: #77736e; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; margin-top: 18px; }
.sensitivity-card h3 { margin: 11px 0 0; font-size: 38px; }
.sensitivity-card h3 b { color: var(--red); }
.sensitivity-card button { width: 100%; border: 0; border-top: 1px solid var(--line); background: none; text-align: left; padding: 15px 0 0; margin-top: 10px; font-size: 10px; font-weight: 800; cursor: pointer; }
.missing-card ul { margin: 14px 0 0; padding-left: 16px; }
.missing-card li { font-size: 10px; line-height: 1.7; color: var(--muted); }
.experience-card { overflow: hidden; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.experience-item { min-height: 190px; padding: 22px; border-radius: 17px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.experience-item::after { content: ""; position: absolute; width: 110px; height: 110px; border: 1px solid currentColor; opacity: .12; border-radius: 50%; right: -34px; bottom: -42px; }
.experience-item.spark { background: #f8d9d2; color: #72271f; }
.experience-item.comfort { background: var(--acid); color: #34391b; }
.experience-item.sustain { background: var(--ink); color: #fff; }
.experience-item > span { font-size: 12px; font-weight: 800; }
.experience-item strong { font-size: 54px; line-height: 1; margin: 24px 0 12px; letter-spacing: -.07em; }
.experience-item p { margin: auto 0 0; font-size: 12px; line-height: 1.65; opacity: .72; }
.conversation-list { counter-reset: questions; }
.conversation-item { counter-increment: questions; display: grid; grid-template-columns: 42px 1fr auto; gap: 15px; align-items: center; padding: 18px 6px; border-top: 1px solid var(--line); }
.conversation-item::before { content: "0" counter(questions); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); font-size: 11px; font-weight: 800; }
.conversation-item b { display: block; font-size: 14px; margin-bottom: 5px; }
.conversation-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.conversation-item > span { color: var(--red); font-size: 18px; }
.observe-list { margin-top: 14px; }
.observe-item { border-top: 1px solid var(--line); padding: 14px 0; }
.observe-item b { display: block; font-size: 13px; margin-bottom: 5px; }
.observe-item p { margin: 0; font-size: 12px; line-height: 1.6; color: var(--muted); }

/* Readability uplift: the report should feel like something to read, not fine print. */
.eyebrow, .section-number { font-size: 12px; }
.core-kicker, .report-stamp { font-size: 10px; }
.core-label, .hero-foot { font-size: 12px; }
.float-tag { font-size: 13px; }
.step b { font-size: 12px; }
.step span { font-size: 14px; }
.section-heading p { font-size: 15px; line-height: 1.7; }
.live-total span, .live-total small, .card-label { font-size: 11px; }
.weight-name b { font-size: 16px; }
.weight-name small { font-size: 12px; }
.weight-value { font-size: 14px; }
.profile-preview > p { font-size: 14px; }
.profile-stat, .subsection-heading p { font-size: 13px; }
.field > span, .candidate-name-wrap label { font-size: 12px; }
.field select { font-size: 14px; }
.chips button { font-size: 13px; }
.hard-item b { font-size: 13px; }
.hard-item small { font-size: 11px; line-height: 1.4; }
.privacy-note { font-size: 12px; }
.card-title span { font-size: 15px; }
.card-title small { font-size: 11px; }
.rating-name b { font-size: 14px; }
.rating-name small { font-size: 11px; }
.rating-score { font-size: 14px; }
.binary-row b { font-size: 13px; }
.binary-row small { font-size: 10px; }
.binary-row select { font-size: 12px; }
.tip-card span { font-size: 11px; }
.tip-card p { font-size: 14px; }
.result-title-block p, .score-meta span { font-size: 13px; }
.score-ring span { font-size: 12px; }
.hard-alert { font-size: 14px; }
.report-card-head span { font-size: 11px; }
.report-card-head small, .report-card-head > b { font-size: 10px; }
.dimension-item span { font-size: 13px; }
.dimension-item b { font-size: 13px; }
.verdict-label { font-size: 11px; }
.verdict-card p { font-size: 14px; }
.insight-item b { font-size: 14px; }
.insight-item p { font-size: 12px; }
.side-report-card > span { font-size: 11px; }
.side-report-card p, .missing-card li { font-size: 12px; }
.preference-code { font-size: 11px; }
.sensitivity-card button { font-size: 12px; }
.disclaimer { font-size: 11px; }
.toast { font-size: 13px; }
.result-actions { display: flex; justify-content: center; gap: 12px; padding: 55px 5vw 25px; }
.disclaimer { max-width: 750px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 9px; line-height: 1.8; padding: 0 20px 55px; }
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; background: var(--ink); color: #fff; border-radius: 999px; padding: 12px 20px; font-size: 11px; z-index: 200; transition: .3s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .7fr; padding-left: 5vw; padding-right: 5vw; }
  .preference-layout, .candidate-layout, .report-grid { grid-template-columns: 1fr; }
  .profile-preview { display: grid; grid-template-columns: 150px 1fr; align-items: center; column-gap: 25px; }
  .profile-preview .card-label { grid-column: 1/-1; }
  .profile-preview > h3, .profile-preview > p { text-align: left; }
  .profile-preview > p { margin-bottom: 10px; }
  .profile-stat { grid-column: 2; }
  .mini-donut { grid-row: 2/6; }
  .hard-grid { grid-template-columns: repeat(2, 1fr); }
  .report-side { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .topbar { padding: 0 20px; height: 62px; }
  .top-note { display: none; }
  .hero { display: block; min-height: calc(100vh - 62px); padding: 11vh 24px 80px; }
  .hero h1 { font-size: clamp(46px, 14vw, 70px); }
  .hero-copy > p { font-size: 14px; }
  .hero-visual { width: 72vw; position: absolute; opacity: .16; right: -24vw; top: 10vh; }
  .hero-foot { left: 24px; right: 24px; }
  .simulator { padding: 65px 18px 90px; }
  .stepper { margin-bottom: 55px; }
  .step span { display: none; }
  .step-line { margin: 0 10px; }
  .section-heading { align-items: flex-start; }
  .section-heading h2 { font-size: 38px; }
  .live-total { width: 90px; height: 90px; }
  .live-total strong { font-size: 30px; }
  .live-total small { display: none; }
  .weight-card { padding: 14px 18px; }
  .weight-row { grid-template-columns: 105px 1fr 38px; gap: 10px; }
  .weight-name small { display: none; }
  .profile-preview { display: flex; }
  .profile-preview > h3, .profile-preview > p { text-align: center; }
  .mini-donut { margin-top: 24px; }
  .context-grid, .candidate-context { grid-template-columns: 1fr; }
  .candidate-context .field:nth-child(even) { border-left: 0; padding-left: 14px; }
  .field-wide { grid-column: auto; }
  .hard-grid, .report-side { grid-template-columns: 1fr; }
  .subsection-heading { align-items: flex-start; }
  .subsection-heading p { max-width: 140px; text-align: right; }
  .panel-actions { gap: 15px; }
  .privacy-note { display: none; }
  .panel-actions .primary { margin-left: auto; }
  .compact-heading { display: block; }
  .candidate-name-wrap { width: 100%; border-left: 0; border-top: 1px solid var(--line); margin-top: 24px; padding-left: 0; }
  .preset-heading { align-items: flex-start; }
  .preset-heading > small { max-width: 150px; }
  .preset-grid { margin-right: -18px; padding-right: 18px; grid-template-columns: repeat(6, 78vw); scroll-snap-type: x mandatory; }
  .preset-card { scroll-snap-align: start; min-height: 225px; }
  .rating-row { grid-template-columns: 105px 1fr 40px; }
  .result-panel { margin: -65px -18px -90px; }
  .result-masthead { display: block; padding: 65px 25px 45px; border-radius: 24px 24px 0 0; }
  .result-score-wrap { margin-top: 35px; padding: 0; gap: 18px; }
  .score-ring { width: 150px; height: 150px; }
  .score-ring strong { font-size: 52px; }
  .score-meta { width: 140px; }
  .report-stamp { width: 55px; height: 55px; right: 20px; top: 25px; }
  .dimension-bars, .two-column-report { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-item { min-height: 170px; }
  .conversation-item { grid-template-columns: 38px 1fr; }
  .conversation-item > span { display: none; }
  .verdict-card { padding: 28px; }
  .result-actions { flex-direction: column; }
  .result-actions button { width: 100%; }
}
