:root {
  --font: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --ink: #111216;
  --fg: #202226;
  --muted: color-mix(in srgb, var(--ink) 55%, transparent);
  --surface: #f4f4f4;
  --card: #fff;
  --line: #e7e7e7;
  --accent: #ff2c2c;
  --accent-soft: #ffd6d6;
  --accent-ink: #c41010;
  --dur: 0.15s;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --max: 64rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  font-family: var(--font);
  background: var(--surface);
  color: var(--fg);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.main,
.legal {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.main {
  flex: 1;
  padding: 24px 0 48px;
}

@media (min-width: 768px) {
  .main,
  .legal {
    width: min(var(--max), calc(100% - 48px));
  }

  .main {
    padding: 40px 0 56px;
  }
}

.fade-in-up {
  animation: fade-in-up 0.4s var(--ease) both;
}

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

.hero {
  display: grid;
  gap: 44px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.05fr 0.92fr;
    gap: 56px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  margin-top: 24px;
  font-size: clamp(38px, 7.6vw, 68px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}

.mark {
  display: inline-block;
  background: var(--accent);
  padding: 0 10px;
  transform: rotate(-1.4deg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.lead {
  margin-top: 28px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.62;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.lead b {
  color: var(--ink);
  font-weight: 700;
}

@media (min-width: 640px) {
  .lead {
    font-size: 18px;
  }
}

.brutal-6 {
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.brutal-8 {
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.cta-brutal {
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

@media (max-width: 640px) {
  .brutal-6,
  .brutal-8,
  .cta-brutal {
    box-shadow: 4px 4px 0 var(--ink);
  }
}

.spots {
  margin-top: 32px;
  max-width: 480px;
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
}

.spots-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.spots-row span {
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.spots-count {
  flex: none;
  font-size: 15px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.spots-count em {
  font-style: normal;
  color: var(--accent-ink);
}

.slots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.slot {
  height: 12px;
  flex: 1;
  border-radius: 4px;
  border: 2px solid var(--ink);
}

.slot.is-taken {
  background: repeating-linear-gradient(
    45deg,
    var(--ink),
    var(--ink) 3px,
    transparent 3px,
    transparent 6px
  );
}

.slot.is-free {
  background: var(--accent);
}

.spots .note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.35;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 800;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.cta svg {
  width: 20px;
  height: 20px;
  transition: transform var(--dur) var(--ease);
}

.cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.cta:hover svg {
  transform: translateX(4px);
}

.cta:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

@media (min-width: 640px) {
  .cta {
    width: auto;
    font-size: 18px;
  }
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  list-style: none;
}

.trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.trust svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.profile-wrap {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  padding-top: 16px;
  overflow: visible;
}

@media (min-width: 1024px) {
  .profile-wrap {
    max-width: none;
    margin: 0;
    justify-self: center;
  }
}

.profile {
  position: relative;
  background: var(--card);
  border-radius: 24px;
  padding: 32px 24px 24px;
  text-align: center;
}

.spark {
  pointer-events: none;
  position: absolute;
  top: -24px;
  right: -12px;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: var(--accent);
  transform: rotate(12deg);
  user-select: none;
}

.avatar-ring {
  width: min(100%, 280px);
  aspect-ratio: 3 / 4;
  margin: 0 auto 18px;
  border-radius: 22px;
  padding: 5px;
  background: conic-gradient(from 210deg, #ff6b6b, var(--accent), var(--accent-ink), var(--accent), #ff6b6b);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px;
  border: 4px solid var(--card);
  background: var(--ink);
  display: block;
}

.profile h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.handle {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.handle svg {
  width: 15px;
  height: 15px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.stat {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 10px;
}

.stat b {
  display: block;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat b em {
  font-style: normal;
  color: var(--accent-ink);
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.stat span + span {
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 11px;
}

.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
  margin-top: 40px;
}

.marquee {
  margin-inline: -6%;
  transform: rotate(-1.6deg);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: 28s linear infinite marquee-scroll;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--ink);
}

@media (min-width: 640px) {
  .marquee-track {
    font-size: 16px;
  }
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.legal {
  padding: 0 0 24px;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.legal a {
  font-weight: 600;
  color: var(--fg);
}

.legal a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Quiz */
.quiz-stage {
  width: 100%;
}

.quiz-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.phase {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.q-num {
  font-size: 12px;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.bar {
  margin-top: 8px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.bar > i {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ink) 45%, transparent);
  background: var(--accent);
  transition: transform 0.36s var(--ease);
}

.reassure {
  margin-top: 8px;
  font-size: 12px;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.screen {
  margin-top: 28px;
  max-width: 640px;
  animation: fade-in-up 0.28s var(--ease) both;
}

.screen h2 {
  font-size: clamp(26px, 4.4vw, 36px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}

.help {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.options {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.option {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.option:hover {
  border-color: color-mix(in srgb, var(--ink) 25%, transparent);
}

.option.is-picked {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ink) 10%, transparent);
}

.option strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.option small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

body[data-view="quiz"] footer {
  display: none;
}

@media (max-width: 767px) {
  body[data-view="quiz"] .main {
    width: 100%;
    padding: 12px 0 24px;
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .quiz-stage {
    width: min(26.5rem, calc(100% - 32px));
    margin: 0 auto;
  }

  .quiz-head {
    gap: 8px;
  }

  .phase {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .reassure {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 22rem;
  }

  .screen {
    margin-top: 16px;
    max-width: none;
  }

  .screen h2 {
    font-size: 1.35rem;
    line-height: 1.22;
    letter-spacing: -0.03em;
    max-width: 18.5rem;
  }

  .help {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.45;
    max-width: 22rem;
  }

  .options {
    margin-top: 14px;
    gap: 8px;
  }

  .option {
    align-items: flex-start;
    padding: 11px 13px;
    font-size: 14px;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .option small {
    margin-top: 3px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .screen .nav {
    margin-top: 16px;
  }

  .screen .field {
    margin-top: 14px;
    max-width: 22rem;
  }

  .screen .field input {
    height: 52px;
    padding: 12px 14px;
  }

  .screen .field textarea {
    min-height: 7.5rem;
    padding: 12px 14px;
    resize: vertical;
  }

  .screen .btn {
    padding: 11px 16px;
    font-size: 14px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  box-shadow: 4px 4px 0 var(--ink);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-ghost {
  background: var(--card);
}

.field {
  margin-top: 20px;
}

.field input,
.field textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  padding: 14px 16px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ink) 10%, transparent);
}

.split {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

@media (min-width: 640px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.list-card {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 16px;
}

.list-card.is-yes {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background: var(--accent-soft);
}

.list-card p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.list-card ul {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  list-style: none;
}

.list-card li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.list-card.is-yes li::before {
  content: "✓";
  color: var(--accent-ink);
  font-weight: 800;
}

.list-card.is-no li::before {
  content: "–";
  font-weight: 800;
}

.verdict-grid {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .verdict-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.v-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  padding: 16px;
}

.v-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  font-size: 18px;
  margin-bottom: 10px;
}

.v-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.micro {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.4;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.result-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit {
  margin: 10px 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.fit b {
  color: var(--ink);
  background: var(--accent);
  padding: 0 5px;
  border-radius: 4px;
}

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

@media (min-width: 900px) {
  .result-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.offer,
.form-card {
  background: var(--card);
  border-radius: 16px;
  padding: 22px;
}

.offer h3,
.form-card h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
  font-weight: 800;
}

.offer-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ingot {
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.option .ingot {
  width: 36px;
  height: 20px;
  margin-top: 4px;
}

.offer li.is-plus::before {
  content: "+";
  font-weight: 900;
}

.tiers-lead {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.tier {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  box-shadow: 3px 3px 0 #111;
}

.tier small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.tier b {
  margin-left: auto;
  color: var(--accent-ink);
  white-space: nowrap;
}

.tier.is-on {
  background: var(--accent-soft);
}

.tier:disabled {
  cursor: default;
}

.price {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price s {
  font-size: 16px;
  color: color-mix(in srgb, var(--ink) 45%, transparent);
  margin-right: 8px;
}

.price span {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.blurb {
  margin: 12px 0 14px;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  font-weight: 500;
}

.guarantee {
  margin: -4px 0 14px;
  padding: 10px 12px;
  background: var(--accent-soft);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.guarantee strong {
  letter-spacing: 0.06em;
  font-weight: 800;
}

.offer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.offer li {
  display: flex;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.offer li::before {
  content: "▸";
  color: var(--accent-ink);
}

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

.talk-note {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.offer-notes {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.offer-notes[hidden] {
  display: none;
}

.offer-notes p {
  margin: 0;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 16%, var(--surface));
  border: 2px solid #111;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #111;
}

.reason.is-you {
  border-left: 5px solid var(--accent);
}

.proof {
  margin: 18px 0 8px;
}

.proof-lead {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
}

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

@media (min-width: 560px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-card {
  margin: 0;
}

.proof-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  box-shadow: 4px 4px 0 #111;
}

.proof-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
  opacity: 0;
  pointer-events: none;
}

.proof-video.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.proof-holder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  color: #fff;
  background:
    repeating-linear-gradient(
      -45deg,
      #161616,
      #161616 10px,
      #1f1f1f 10px,
      #1f1f1f 20px
    );
}

.proof-holder[hidden] {
  display: none;
}

.proof-play {
  width: 46px;
  height: 46px;
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 3px 3px 0 #000;
}

.proof-holder strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.proof-holder small {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.72;
}

.proof-card figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 62%, transparent);
}

.reason {
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.alt {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}

.alt b {
  color: var(--accent-ink);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  margin-top: 8px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.error {
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  min-height: 1.2em;
}

.analyze {
  min-height: 56dvh;
  display: grid;
  place-items: center;
  text-align: center;
}

.spinner {
  width: 46px;
  height: 46px;
  border: 5px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.steps {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  text-align: left;
  max-width: 420px;
  margin-inline: auto;
}

.steps li {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 40%, transparent);
}

.steps li.is-on {
  color: var(--ink);
}

.thanks {
  max-width: 560px;
  margin: 24px auto 0;
  background: var(--card);
  border-radius: 16px;
  padding: 28px 24px;
}

.thanks-logo {
  display: block;
  height: 84px;
  width: auto;
  margin-bottom: 8px;
}

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .screen,
  .marquee-track,
  .spinner,
  .bar > i,
  .cta,
  .btn {
    animation: none;
    transition: none;
  }
}
