:root {
  --ink: #0a0a0a;
  --paper: #f5f1ea;
  --warm: #efeae3;
  --blue: #1d2dc1;
  --gold: #d4a017;
  --muted: #6f6a61;
  --line: #ddd6cb;
  --white: #fff;
  --danger: #b54708;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  transition: background-color .2s ease;
}

body[data-screen-theme="dark"] {
  background: var(--ink);
}

body[data-screen-theme="blue"] {
  background: var(--blue);
}

body[data-screen-theme="light"] {
  background: var(--paper);
}

button,
input {
  font: inherit;
}

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

.app {
  width: 100%;
  max-width: 460px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
}

.screen {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--paper);
}

.screen.dark {
  color: var(--white);
  background: var(--ink);
}

.screen.blue {
  color: var(--white);
  background: var(--blue);
}

.screen.hero {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, .16), rgba(10, 10, 10, .72)),
    radial-gradient(circle at 20% 20%, rgba(212, 160, 23, .42), transparent 34%),
    linear-gradient(135deg, #1a1a1a, #111 58%, #342707);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: max(18px, env(safe-area-inset-top)) 18px 8px;
  color: inherit;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.crumb {
  color: rgba(255, 255, 255, .65);
  color: color-mix(in srgb, currentColor 65%, transparent);
}

.step {
  color: var(--gold);
}

.back-control {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  letter-spacing: inherit;
  text-align: left;
  text-transform: uppercase;
}

.topbar .back-control {
  max-width: 58%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 24px;
  animation: fadeLift .46s ease both;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.08;
}

h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.13;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

em {
  color: var(--gold);
}

p {
  margin: 0 0 14px;
  color: inherit;
  line-height: 1.58;
}

.muted {
  color: #6f6a61;
  color: color-mix(in srgb, currentColor 62%, transparent);
}

.small {
  font-size: 12px;
}

.fineprint {
  margin-top: 8px;
  color: rgba(255, 255, 255, .54);
  color: color-mix(in srgb, currentColor 54%, transparent);
  font-size: 11px;
}

.once-note {
  margin: 16px 0 2px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 178, 61, .38);
  border-radius: 8px;
  color: var(--white);
  background: rgba(226, 178, 61, .12);
  font-size: 14px;
}

.actions {
  display: grid;
  gap: 10px;
  padding: 0 20px max(24px, env(safe-area-inset-bottom));
}

.btn {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

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

.btn.gold {
  color: var(--ink);
  background: var(--gold);
}

.btn.light {
  color: var(--blue);
  background: var(--white);
}

.btn.ghost {
  color: currentColor;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
}

.btn.gold-glass {
  color: var(--white);
  background: rgba(212, 160, 23, .3);
  border-color: var(--gold);
}

.btn.final-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  color: var(--ink);
  background:
    linear-gradient(135deg, #f2c63d, var(--gold));
  box-shadow: 0 12px 28px rgba(212, 160, 23, .28);
  overflow: hidden;
}

.btn.final-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .34);
  pointer-events: none;
}

.blocked-content {
  text-align: left;
}

.blocked-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.final-check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.btn:focus-visible,
.answer:focus-visible,
.choice-card:focus-visible,
.furniture-slide:focus-visible,
input:focus-visible {
  outline: 3px solid #e2b23d;
  outline: 3px solid color-mix(in srgb, var(--gold) 70%, white);
  outline-offset: 2px;
}

.picturing-screen {
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.picturing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .2;
  pointer-events: none;
}

.picturing-bg path {
  stroke: var(--gold);
  stroke-width: 1.2;
  fill: none;
}

.quiz-intro-screen .topbar {
  color: var(--ink);
}

.quiz-intro-content {
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 10px;
}

.intro-eyebrow {
  color: var(--blue);
  letter-spacing: .2em;
}

.quiz-title {
  width: 100%;
  margin: 0 0 22px;
  font-size: 42px;
  line-height: .98;
}

.quiz-title.huge {
  max-width: 100%;
  font-size: clamp(44px, 11.4vw, 56px);
  line-height: .98;
}

.quiz-title em {
  color: var(--gold);
  font-style: italic;
  white-space: nowrap;
}

.quiz-title .accent-blue {
  color: var(--blue);
  font-style: normal;
}

.quiz-intro-subtitle {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.15;
}

.quiz-intro-actions {
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.quiz-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  color: #aaa;
  font-size: 11px;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.chrono-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.reveal-screen {
  overflow: hidden;
}

.reveal-screen::before,
.profile-screen::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(212, 160, 23, .42);
  border-radius: 50%;
  opacity: .5;
}

.reveal-note {
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 18px;
}

.cartel-screen h2 {
  color: var(--blue);
  font-style: italic;
}

.cartel-cards {
  display: grid;
  gap: 9px;
  margin: 16px 0;
}

.cartel-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 11px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
  animation: fadeLift .4s ease both;
}

.cartel-card:nth-child(2) {
  animation-delay: .06s;
}

.cartel-card:nth-child(3) {
  animation-delay: .12s;
}

.cartel-card .thumb {
  width: 50px;
  height: 58px;
  border-radius: 6px;
  font-size: 22px;
}

.cartel-card p {
  margin-bottom: 4px;
  color: #444;
  font-size: 11px;
  line-height: 1.45;
}

.cartel-label {
  margin: 0 0 4px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cartel-repair {
  color: var(--blue) !important;
}

.cartel-repair span {
  color: #777;
}

.cartel-note {
  position: relative;
  margin-top: 12px;
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.cartel-note p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 14px;
  line-height: 1.62;
}

.cartel-note em {
  color: var(--gold);
}

.picturing-line {
  position: absolute;
  top: -30px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(212, 160, 23, .45);
  border-radius: 50%;
}

.coaching-screen .content {
  justify-content: center;
}

.answer-recap,
.argument-panel,
.next-panel {
  border-radius: 8px;
  padding: 14px;
}

.answer-recap {
  margin: 4px 0 12px;
  color: var(--ink);
  background: var(--white);
}

.answer-recap p:last-child,
.argument-panel p:last-child,
.next-panel p:last-child {
  margin-bottom: 0;
}

.argument-panel {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
}

.argument-hint {
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 14px;
}

.profile-medallion {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  animation: softPop .48s ease both;
}

.profile-medallion span {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.profile-medallion small {
  max-width: 92px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.next-panel {
  margin-top: 12px;
  color: var(--white);
  background: rgba(10, 10, 10, .18);
}

.editorial-profile-screen {
  overflow: hidden;
}

.editorial-profile-screen .picturing-bg {
  opacity: .34;
}

.editorial-profile-screen .picturing-bg path {
  stroke: rgba(212, 160, 23, .58);
}

.editorial-profile-content {
  justify-content: center;
  align-items: flex-start;
}

.editorial-profile-content .eyebrow {
  color: var(--gold);
}

.editorial-profile-content h1 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(46px, 12.6vw, 58px);
  font-style: italic;
  line-height: .92;
}

.editorial-score-line {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.editorial-profile-card {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  animation: fadeLift .42s ease both;
}

.editorial-profile-card p {
  margin: 0;
}

.editorial-next-card {
  margin-top: 18px;
  border-left: 2px solid var(--gold);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  animation: fadeLift .42s .08s ease both;
}

.editorial-next-card p:last-child {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
}

.furniture-screen .content {
  overflow: hidden;
}

.furniture-screen h2 {
  font-size: 28px;
  line-height: 1.1;
}

.step-label {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.furniture-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% - 36px);
  gap: 12px;
  margin: 12px -20px 12px;
  padding: 0 20px 4px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.furniture-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.furniture-carousel::-webkit-scrollbar {
  display: none;
}

.furniture-slide {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  height: clamp(330px, 48svh, 430px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  scroll-snap-align: start;
  animation: fadeLift .42s ease both;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.furniture-slide.selected {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.furniture-slide.selected::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 3px solid var(--blue);
  border-radius: 8px;
  pointer-events: none;
}

.furniture-visual {
  display: block;
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--warm);
}

.furniture-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.furniture-visual.is-icon {
  background: #fff;
}

.furniture-visual.is-icon img {
  padding: 0;
  object-fit: cover;
}

.furniture-visual-empty {
  background:
    linear-gradient(145deg, rgba(29, 45, 193, .08), rgba(212, 160, 23, .18)),
    var(--warm);
}

.furniture-copy {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.slide-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #888;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.furniture-copy strong {
  font-size: 18px;
}

.furniture-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.dots span {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--line);
}

.dots span.act {
  background: var(--blue);
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font-size: 16px;
  letter-spacing: 0;
}

input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.error {
  min-height: 18px;
  margin: 0;
  color: #ffd29a;
  font-size: 12px;
}

.progress {
  display: grid;
  grid-template-columns: repeat(var(--total), 1fr);
  gap: 5px;
  margin: 0 0 22px;
}

.progress span {
  height: 4px;
  border-radius: 99px;
  background: var(--line);
}

.progress span.done {
  background: var(--blue);
}

.progress span.current {
  background: var(--gold);
}

.range-wrap {
  display: grid;
  gap: 18px;
  margin: 18px 0;
  text-align: center;
}

.percent {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--white);
  font-size: 68px;
  line-height: 1;
}

.percent span {
  color: var(--gold);
  font-size: 36px;
}

input[type="range"] {
  width: 100%;
  height: 36px;
  margin: 0;
  accent-color: var(--gold);
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .36), var(--gold));
}

input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, .28), 0 4px 10px rgba(0, 0, 0, .32);
  -webkit-appearance: none;
  appearance: none;
}

input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .36), var(--gold));
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, .28), 0 4px 10px rgba(0, 0, 0, .32);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.answers {
  display: grid;
  gap: 9px;
  margin-top: 8px;
}

.question-screen,
.situation-screen {
  background: var(--paper);
}

.question-screen .topbar,
.situation-screen .topbar {
  color: var(--ink);
}

.question-helper {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.question-kicker {
  margin-bottom: 12px;
  color: var(--gold);
}

.question-context {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.client-quote {
  position: relative;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 16px 16px;
  background: var(--white);
}

.client-quote p {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
}

.client-quote .quote-signature {
  margin: 7px 0 0;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.myth-signature {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.quote-mark {
  position: absolute;
  top: 5px;
  left: 14px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.myth-screen {
  overflow: hidden;
}

.myth-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 45, 193, .26), transparent 32%),
    linear-gradient(180deg, #0a0a0a, #141414);
}

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

.myth-quote {
  color: var(--white);
  font-style: italic;
  text-align: center;
}

.myth-helper {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  text-align: center;
}

.huis-question-screen {
  background: var(--paper);
}

.huis-question-screen .topbar {
  color: var(--ink);
}

.huis-question-screen .crumb,
.huis-question-screen .step {
  color: #777;
}

.huis-question-content {
  justify-content: flex-start;
  padding-top: 14px;
}

.huis-question-content .progress {
  margin-bottom: 36px;
}

.myth-card {
  position: relative;
  margin: 0 0 24px;
  border-radius: 10px;
  padding: 24px 20px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  animation: fadeLift .42s ease both;
}

.myth-card .picturing-line {
  top: -52px;
  right: -36px;
  width: 112px;
  height: 112px;
  border-color: rgba(212, 160, 23, .42);
}

.myth-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 28px;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.myth-card h2 em,
.myth-card h2 strong {
  color: var(--gold);
}

.myth-helper.light {
  margin-bottom: 22px;
  color: #5f594f;
}

.huis-question-screen .vf-answer {
  border-radius: 8px;
  min-height: 66px;
  padding: 16px 18px;
}

.huis-question-screen .vf-answer strong {
  flex: 1;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.answer-arrow {
  color: var(--blue);
  font-size: 18px;
}

.question-note {
  margin-top: 26px;
  color: #8d867b;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 12px;
  text-align: center;
}

.point-verdict-screen {
  background: var(--paper);
}

.point-verdict-screen .topbar {
  color: var(--ink);
}

.point-verdict-screen .crumb,
.point-verdict-screen .step {
  color: #777;
}

.point-verdict-content {
  justify-content: flex-start;
  padding-top: 10px;
}

.point-answer-card {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  animation: fadeLift .42s ease both;
}

.point-answer-card.is-wrong .point-check {
  border-color: #8c2d1f;
  color: #8c2d1f;
  font-size: 0;
}

.point-answer-card.is-wrong .point-check::before {
  content: "×";
  display: block;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

.point-answer-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.point-answer-label {
  margin-bottom: 7px !important;
  color: var(--blue);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.point-check {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.point-argument-card {
  position: relative;
  margin-top: 14px;
  border-radius: 8px;
  padding: 18px 18px 20px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  animation: fadeLift .42s .08s ease both;
}

.point-argument-card .picturing-line {
  top: -48px;
  right: -34px;
  border-color: rgba(212, 160, 23, .42);
}

.point-argument-card > *:not(.picturing-line) {
  position: relative;
  z-index: 1;
}

.point-argument-card .cartel-label,
.point-why-card .cartel-label {
  color: var(--gold);
}

.point-quote {
  margin: 0 0 14px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
}

.point-argument-card p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.point-why-card {
  margin-top: 14px;
  border-left: 2px solid var(--gold);
  padding: 13px 14px;
  background: #eee4cf;
  animation: fadeLift .42s .14s ease both;
}

.point-why-card p:last-child {
  margin-bottom: 0;
  color: #4c4335;
  font-size: 14px;
  line-height: 1.5;
}

.huis-verdict-screen {
  overflow: hidden;
}

.huis-verdict-screen .picturing-bg {
  opacity: .32;
}

.huis-verdict-screen .picturing-bg path {
  stroke: rgba(212, 160, 23, .58);
}

.huis-verdict-screen .topbar {
  color: var(--white);
}

.huis-verdict-screen .crumb,
.huis-verdict-screen .step {
  color: rgba(255, 255, 255, .82);
}

.huis-verdict-content {
  justify-content: center;
  padding-top: 34px;
}

.huis-verdict-content .eyebrow {
  color: var(--white);
}

.huis-verdict-content h1 {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: clamp(60px, 16.5vw, 76px);
  font-style: italic;
  line-height: .9;
}

.huis-section-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.huis-metric-card {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  animation: fadeLift .42s ease both;
}

.huis-metric {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(30px, 8.5vw, 42px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.huis-question-card {
  margin-top: 14px;
  border-left: 2px solid var(--gold);
  padding: 13px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  animation: fadeLift .42s .08s ease both;
}

.huis-question-card p:last-child {
  margin-bottom: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 16px;
}

.siege-verdict-screen {
  overflow: hidden;
}

.siege-verdict-screen .picturing-bg {
  opacity: .34;
}

.siege-verdict-screen .picturing-bg path {
  stroke: rgba(212, 160, 23, .58);
}

.siege-verdict-screen .topbar {
  color: var(--white);
}

.siege-verdict-screen .crumb,
.siege-verdict-screen .step {
  color: rgba(255, 255, 255, .82);
}

.siege-verdict-content {
  justify-content: center;
  align-items: flex-start;
  padding-top: 32px;
}

.siege-verdict-content .eyebrow {
  color: var(--gold);
}

.siege-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  margin: 6px 0 14px;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: .9;
  white-space: nowrap;
}

.siege-metric span {
  font-size: clamp(64px, 20vw, 92px);
  letter-spacing: 0;
}

.siege-metric small {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 400;
}

.siege-metric.compact {
  gap: 8px;
}

.siege-metric.compact span {
  font-size: clamp(40px, 10.8vw, 58px);
}

.siege-metric.compact small {
  font-size: clamp(20px, 5.6vw, 30px);
}

.siege-metric.unit-break {
  display: block;
}

.siege-metric.unit-break span,
.siege-metric.unit-break small {
  display: block;
}

.siege-metric.unit-break small {
  margin-top: 8px;
}

.siege-metric-copy {
  max-width: 330px;
  margin: 0 0 26px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

.siege-client-card {
  width: 100%;
  border-left: 2px solid var(--gold);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  animation: fadeLift .42s .08s ease both;
}

.siege-client-card .cartel-label {
  color: var(--gold);
}

.siege-client-card p:last-child {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
}

.siege-footnote {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.huis-profile-screen {
  overflow: hidden;
}

.huis-profile-screen .picturing-bg {
  opacity: .34;
}

.huis-profile-screen .picturing-bg path {
  stroke: rgba(212, 160, 23, .58);
}

.huis-profile-content {
  justify-content: center;
  align-items: flex-start;
}

.huis-profile-content .eyebrow {
  color: var(--gold);
}

.huis-profile-content h1 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(48px, 13.5vw, 62px);
  font-style: italic;
  line-height: .92;
}

.huis-score-line {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.huis-profile-card {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  animation: fadeLift .42s ease both;
}

.huis-profile-card p {
  margin: 0;
}

.huis-complete-card {
  margin-top: 18px;
  border-left: 2px solid var(--gold);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  animation: fadeLift .42s .08s ease both;
}

.huis-complete-card p:last-child {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
}

.vf-answers {
  gap: 10px;
}

.vf-answer {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
}

.gold-letter {
  color: var(--gold);
  background: rgba(212, 160, 23, .1);
}

.answer,
.choice-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  line-height: 1.42;
  cursor: pointer;
  animation: fadeLift .38s ease both;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.answer:nth-child(2),
.choice-card:nth-child(2) {
  animation-delay: .04s;
}

.answer:nth-child(3),
.choice-card:nth-child(3) {
  animation-delay: .08s;
}

.answer:nth-child(4),
.choice-card:nth-child(4) {
  animation-delay: .12s;
}

.answer.selected,
.choice-card.selected {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 99px;
  color: var(--blue);
  background: #eef0ff;
  background: color-mix(in srgb, var(--blue) 8%, white);
  font-size: 11px;
  font-weight: 700;
}

.verdict {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 99px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: softPop .34s ease both;
}

.big-number {
  margin: 12px 0 14px;
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--white);
  font-size: clamp(72px, 19vw, 88px);
  line-height: .92;
  white-space: nowrap;
}

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

.furniture {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.thumb {
  height: 82px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(29, 45, 193, .14), rgba(212, 160, 23, .22)),
    var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 34px;
}

.image-thumb {
  background-color: var(--warm);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.projection {
  --projection-visual-height: clamp(420px, 70svh, calc(100svh - 178px));
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--projection-visual-height);
  overflow: hidden;
  color: var(--white);
  background: #050505;
  justify-content: flex-end;
}

.projection .content {
  justify-content: flex-end;
}

.projection > .topbar {
  display: none;
}

.projection-image-layer {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: calc(var(--projection-visual-height) + 48px);
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, .08) 0%, rgba(10, 10, 10, 0) 54%, rgba(5, 5, 5, .12) 78%, rgba(5, 5, 5, .58) 94%, #050505 100%),
    var(--layer-image, var(--projection-fallback));
  background-size: 100% 100%, var(--layer-size, cover);
  background-repeat: no-repeat;
  background-position: center, var(--layer-position, center 76%);
  pointer-events: none;
}

.projection-image-previous {
  z-index: 1;
}

.projection-image-current.enter-right {
  animation: imageEnterRight .42s ease both;
}

.projection-image-current.enter-left {
  animation: imageEnterLeft .42s ease both;
}

.projection-image-previous.exit-left {
  animation: imageExitLeft .42s ease both;
}

.projection-image-previous.exit-right {
  animation: imageExitRight .42s ease both;
}

.projection::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.projection::after {
  content: "";
  position: absolute;
  inset: calc(var(--projection-visual-height) - 120px) 0 auto;
  z-index: 2;
  height: 210px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, .1) 35%, rgba(5, 5, 5, .65) 76%, #050505 100%);
  pointer-events: none;
}

.projection-top {
  position: absolute;
  top: max(20px, calc(env(safe-area-inset-top) + 14px));
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.projection-top button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-transform: uppercase;
}

.projection-top span,
.projection-kicker span {
  border-radius: 99px;
  padding: 4px 9px;
  color: var(--ink);
  background: rgba(212, 160, 23, .95);
  font-weight: 700;
  line-height: 1.1;
}

.projection-arrow {
  position: absolute;
  top: calc(var(--projection-visual-height) * .56);
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, .5);
  font-size: 22px;
}

.projection-arrow.prev {
  left: 12px;
}

.projection-arrow.next {
  right: 12px;
}

.projection-dots {
  position: absolute;
  top: max(62px, calc(env(safe-area-inset-top) + 56px));
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.projection-dots span {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .34);
  overflow: hidden;
}

.projection-dots i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
}

.projection-dots span.act i {
  background: var(--white);
  animation: slideTimer var(--slide-duration, 5500ms) linear both;
}

@keyframes slideTimer {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.projection-overlay {
  position: relative;
  z-index: 3;
  max-height: none;
  margin: -18px 18px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  padding: 12px 14px;
  overflow: visible;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(22, 19, 16, .72), rgba(5, 5, 5, .86)),
    rgba(10, 10, 10, .7);
  animation: projectionRise .52s ease both;
}

.projection-overlay .projection-kicker {
  display: flex;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-shadow: none;
  text-transform: uppercase;
}

.projection-overlay .projection-kicker span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  text-shadow: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.projection-overlay h1 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.12;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .38);
}

.projection-overlay p {
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.32;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .34);
}

.projection-overlay .projection-quote {
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .34);
}

.projection .actions {
  position: relative;
  z-index: 3;
  gap: 6px;
  padding: 0 18px max(12px, env(safe-area-inset-bottom));
}

.projection .btn {
  min-height: 44px;
  padding: 11px 14px;
}

.projection .btn.ghost {
  min-height: 32px;
  padding: 6px 10px;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .18);
  font-size: 11px;
}

.projection .btn.final-cta {
  min-height: 50px;
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPop {
  from {
    opacity: 0;
    transform: scale(.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes projectionRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-height: 720px) {
  .projection {
    --projection-visual-height: clamp(350px, 63svh, calc(100svh - 185px));
  }

  .projection-overlay {
    max-height: none;
    margin-top: -14px;
    padding: 10px 12px;
  }

  .projection-overlay h1 {
    font-size: 18px;
  }

  .projection-overlay p,
  .projection-quote {
    font-size: 12px;
  }

  .projection-overlay .projection-quote {
    font-size: 14px;
  }

  .projection .btn.final-cta {
    min-height: 46px;
  }
}

@keyframes imageEnterRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes imageEnterLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes imageExitLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes imageExitRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

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

.pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 99px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.summary-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(10, 10, 10, .14);
  border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  padding-bottom: 9px;
  font-size: 14px;
}

.sync-banner {
  margin: 6px 18px 0;
  border: 1px solid rgba(212, 160, 23, .38);
  border-radius: 8px;
  padding: 9px 11px;
  color: #412b00;
  background: #ffe8c2;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.hidden {
  display: none;
}

.sync-frame,
.sync-form {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.fallback {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 20px;
  color: var(--white);
}

.dashboard-screen {
  background: var(--paper);
}

.dashboard-topbar {
  color: var(--ink);
}

.dashboard-content {
  gap: 14px;
}

.dashboard-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--warm);
  font-size: 12px;
}

.dashboard-grid {
  display: grid;
  gap: 12px;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
}

.dashboard-card p,
.dashboard-card h2 {
  margin: 0 0 8px;
}

.dashboard-card .dashboard-help {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.dashboard-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.dashboard-card span,
.dashboard-event small {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-mini-bars {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.dashboard-mini-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 10px;
}

.dashboard-mini-bar span,
.dashboard-mini-empty {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.dashboard-mini-bar strong {
  font-size: 14px;
  line-height: 1;
}

.dashboard-card-wide h2 {
  font-size: 18px;
}

.dashboard-bars,
.dashboard-events {
  display: grid;
  gap: 8px;
}

.dashboard-bar,
.dashboard-event {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.dashboard-bar {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.dashboard-login-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dashboard-login-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dashboard-login-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  font-size: 16px;
}

@media (min-width: 520px) {
  .app {
    box-shadow: 0 0 0 1px rgba(10, 10, 10, .08), 0 18px 70px rgba(10, 10, 10, .18);
  }

  body[data-screen-theme="dark"] .app,
  body[data-screen-theme="blue"] .app {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 20px 80px rgba(0, 0, 0, .34);
  }
}
