:root {
  color-scheme: light;
  --black: #050505;
  --ink: #101318;
  --muted: #6f7480;
  --line: #e5e7eb;
  --soft: #f6f6f4;
  --white: #fff;
  --danger: #9f1239;
  --success: #166534;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.intro-screen {
  min-height: 100vh;
  display: grid;
  align-content: space-between;
  padding: clamp(30px, 6vw, 84px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.17), transparent 18%),
    radial-gradient(circle at 78% 74%, rgba(255,255,255,.11), transparent 24%),
    linear-gradient(135deg, #111, #000 62%);
  overflow: hidden;
  cursor: pointer;
}

.intro-screen[hidden],
.lead-app[hidden],
.idle-modal[hidden],
.gdpr-modal[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.intro-brand,
.intro-footer {
  position: relative;
  z-index: 1;
}

.intro-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  display: block;
  width: clamp(190px, 22vw, 255px);
  height: auto;
}

.intro-brand p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.intro-touch {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
}

.intro-touch strong {
  position: relative;
  display: block;
  margin: 18px 0;
  font-size: clamp(76px, 15vw, 190px);
  line-height: .78;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: 0;
}

.electric-text {
  isolation: isolate;
  text-shadow: 0 0 26px rgba(255,255,255,.2);
  animation: electricJolt 4.8s steps(1, end) infinite;
}

.electric-text::before,
.electric-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  color: var(--white);
  text-transform: uppercase;
  mix-blend-mode: screen;
  pointer-events: none;
}

.electric-text::before {
  text-shadow: -3px 0 rgba(122,244,255,.9), 0 0 18px rgba(122,244,255,.55);
  animation: electricSliceA 4.8s steps(1, end) infinite;
}

.electric-text::after {
  text-shadow: 3px 0 rgba(255,255,255,.72), 0 0 22px rgba(255,255,255,.35);
  animation: electricSliceB 4.8s steps(1, end) infinite;
}

.intro-touch small {
  display: inline-flex;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.34);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.intro-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lead-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 41vw) 1fr;
  background:
    linear-gradient(110deg, rgba(255,255,255,.02), rgba(255,255,255,0) 30%),
    var(--soft);
}

.brand-panel {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: clamp(28px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,0) 24%),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.16), transparent 20%),
    linear-gradient(180deg, #101010, #000);
  overflow: hidden;
}

.brand-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -14% 16%;
  height: 34vh;
  border: 1px solid rgba(255,255,255,.1);
  transform: skewY(-8deg);
  pointer-events: none;
}

.brand-top,
.brand-copy,
.privacy-note {
  position: relative;
  z-index: 1;
}

.brand-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-top p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.74);
  font-weight: 800;
}

.brand-copy {
  margin-top: clamp(80px, 16vh, 180px);
  max-width: 620px;
}

.brand-copy h1 {
  margin: 16px 0 24px;
  max-width: 430px;
  font-size: 58px;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 1000;
  font-style: italic;
}

.brand-copy p {
  max-width: 480px;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  font-weight: 650;
}

.service-note {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  padding: 18px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-size: 13px;
  line-height: 1.5;
}

.service-note strong {
  display: block;
  color: var(--white);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
}

.privacy-note {
  position: absolute;
  left: clamp(28px, 5vw, 72px);
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-note strong {
  display: block;
  color: var(--white);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
}

.form-panel {
  position: relative;
  min-height: 100vh;
  padding: clamp(22px, 4vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.close-home-button {
  position: absolute;
  top: clamp(18px, 3vw, 38px);
  right: clamp(18px, 3vw, 38px);
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--black);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.close-home-button:hover,
.close-home-button:focus-visible {
  transform: scale(1.04);
  border-color: rgba(0,0,0,.3);
  background: var(--white);
  outline: none;
}

form {
  width: min(760px, 100%);
}

.progress-wrap {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.progress-track {
  height: 3px;
  margin-top: 12px;
  background: #dededb;
  overflow: hidden;
}

.progress-bar {
  width: 25%;
  height: 100%;
  background: var(--black);
  transition: width .55s var(--ease);
}

.form-step,
.success-step {
  background: var(--white);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
  animation: stepIn .48s var(--ease) both;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes electricJolt {
  0%, 70%, 100% {
    transform: translate3d(0,0,0) skewX(0);
    filter: none;
  }
  71% {
    transform: translate3d(-2px,1px,0) skewX(-1.2deg);
    filter: drop-shadow(0 0 12px rgba(255,255,255,.34));
  }
  72% {
    transform: translate3d(3px,-1px,0) skewX(1.6deg);
  }
  73% {
    transform: translate3d(-1px,0,0) skewX(-.8deg);
  }
  74%, 77% {
    transform: translate3d(0,0,0) skewX(0);
  }
  78% {
    transform: translate3d(2px,0,0);
    filter: drop-shadow(0 0 18px rgba(122,244,255,.28));
  }
  79% {
    transform: translate3d(-2px,-1px,0);
  }
  80% {
    transform: translate3d(0,0,0);
    filter: none;
  }
}

@keyframes electricSliceA {
  0%, 70%, 100% {
    opacity: 0;
    transform: translate3d(0,0,0);
    clip-path: inset(0 0 0 0);
  }
  71% {
    opacity: .9;
    transform: translate3d(-7px,-2px,0);
    clip-path: inset(0 0 72% 0);
  }
  72% {
    opacity: .8;
    transform: translate3d(6px,2px,0);
    clip-path: inset(38% 0 36% 0);
  }
  73%, 78% {
    opacity: 0;
  }
  79% {
    opacity: .72;
    transform: translate3d(-5px,1px,0);
    clip-path: inset(70% 0 2% 0);
  }
  80% {
    opacity: 0;
  }
}

@keyframes electricSliceB {
  0%, 70%, 100% {
    opacity: 0;
    transform: translate3d(0,0,0);
    clip-path: inset(0 0 0 0);
  }
  71% {
    opacity: .7;
    transform: translate3d(6px,2px,0);
    clip-path: inset(68% 0 4% 0);
  }
  72% {
    opacity: 0;
  }
  73% {
    opacity: .82;
    transform: translate3d(-4px,-1px,0);
    clip-path: inset(18% 0 58% 0);
  }
  74%, 78% {
    opacity: 0;
  }
  79% {
    opacity: .68;
    transform: translate3d(5px,-2px,0);
    clip-path: inset(0 0 74% 0);
  }
  80% {
    opacity: 0;
  }
}

.eyebrow {
  display: inline-flex;
  color: #8b9099;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .38em;
  text-transform: uppercase;
  font-style: italic;
}

h2 {
  margin: 12px 0 12px;
  font-size: 62px;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 1000;
  font-style: italic;
  overflow-wrap: break-word;
}

h3 {
  margin: 30px 0 12px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #8b9099;
}

.step-copy {
  max-width: 540px;
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #3a3e46;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.field em {
  color: #a2a6ad;
  font-style: normal;
  letter-spacing: .1em;
}

.field input,
.admin-filters input,
.admin-filters select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfbfa;
  color: var(--ink);
  padding: 18px 18px;
  outline: none;
  font-weight: 800;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.field input:focus,
.admin-filters input:focus,
.admin-filters select:focus {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-1px);
}

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

.primary-offers {
  grid-template-columns: 1fr;
}

.support-offers {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.section-subtitle {
  display: block;
  margin: 30px 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.choice-card {
  position: relative;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  background: #fbfbfa;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.offer-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  justify-content: start;
  column-gap: 20px;
  row-gap: 8px;
}

.support-card {
  min-height: 118px;
  padding: 14px 12px;
}

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

.offer-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: currentColor;
  color: var(--black);
  transition: color .28s var(--ease), transform .28s var(--ease);
}

.support-card .offer-icon {
  width: 24px;
  height: 24px;
}

.choice-card span {
  max-width: 260px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.08;
}

.offer-card .offer-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.offer-card span,
.offer-card small {
  grid-column: 2;
}

.offer-card span {
  max-width: none;
}

.choice-card.support-card span {
  max-width: none;
  font-size: 11px;
  line-height: 1.02;
  overflow-wrap: normal;
}

.choice-card small {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.offer-card small {
  margin-top: 0;
}

.choice-card:has(input:checked),
.choice-card.is-selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-3px);
}

.choice-card:has(input:checked) .offer-icon,
.choice-card.is-selected .offer-icon {
  color: var(--white);
  transform: translateY(-2px);
}

.choice-card:has(input:checked) small,
.choice-card.is-selected small {
  color: rgba(255,255,255,.68);
}

.choice-card:hover,
.option-group button:hover,
.choice-row button:hover {
  transform: translateY(-2px);
  border-color: var(--black);
}

.conditional-block {
  display: none;
  border-top: 1px solid var(--line);
  padding-top: 2px;
  margin-top: 20px;
  animation: blockIn .35s var(--ease) both;
}

.conditional-block.is-visible {
  display: block;
}

.contact-preferences {
  display: none;
}

.contact-preferences.is-visible {
  display: block;
  margin-top: 26px;
  animation: blockIn .35s var(--ease) both;
}

.contact-preferences + .legal-box {
  margin-top: 32px;
}

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

.option-group,
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contact-decision button {
  flex: 1 1 230px;
}

.option-group button,
.choice-row button {
  border: 1px solid var(--line);
  background: #fbfbfa;
  padding: 13px 16px;
  min-height: 48px;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.option-group button.is-selected,
.choice-row button.is-selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.empty-qualification {
  padding: 24px;
  color: var(--muted);
  border: 1px dashed #c9ccd2;
  font-weight: 800;
}

.empty-qualification[hidden] {
  display: none;
}

.switch-row,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 850;
  line-height: 1.5;
}

.check-row[hidden] {
  display: none !important;
}

.switch-row {
  margin: 28px 0 18px;
  padding: 20px;
  background: #fbfbfa;
  border: 1px solid var(--line);
}

.switch-row input,
.check-row input {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  accent-color: var(--black);
  flex: 0 0 auto;
}

.legal-box {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fbfbfa;
}

.legal-box p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.text-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--black);
  font-weight: 1000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-nav {
  width: min(760px, 100%);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.form-nav[hidden],
.form-error[hidden],
.success-step[hidden] {
  display: none !important;
}

.primary-action,
.secondary-action,
.admin-export,
.admin-filters button {
  border: 1px solid var(--black);
  min-height: 54px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .2em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), opacity .25s var(--ease);
}

.primary-action,
.admin-export,
.admin-filters button {
  background: var(--black);
  color: var(--white);
}

.secondary-action {
  background: transparent;
  color: var(--black);
}

.primary-action:hover,
.secondary-action:hover,
.admin-export:hover,
.admin-filters button:hover {
  transform: translateY(-2px);
}

.primary-action:disabled,
.secondary-action:disabled {
  opacity: .42;
  transform: none;
  cursor: not-allowed;
}

.form-error {
  width: min(760px, 100%);
  margin-top: 14px;
  padding: 16px 18px;
  color: var(--danger);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  font-weight: 850;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.success-step h2 {
  max-width: 680px;
}

.success-step p {
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 30px;
}

.return-note {
  display: block;
  margin: -12px 0 26px;
  color: var(--muted);
  font-weight: 850;
}

.idle-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
}

.gdpr-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
}

.idle-card,
.gdpr-card {
  width: min(560px, 100%);
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.gdpr-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
}

.idle-card p {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
}

.gdpr-copy {
  display: grid;
  gap: 14px;
  margin: 20px 0 28px;
}

.gdpr-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}

.idle-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 850;
}

.is-submitting {
  cursor: progress;
}

.is-submitting .primary-action {
  opacity: .7;
}

.admin-body {
  background: var(--soft);
}

.admin-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.admin-header h1 {
  margin: 8px 0 0;
  font-size: 68px;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 0;
  font-style: italic;
}

@media (max-width: 1200px) {
  .brand-copy h1 {
    max-width: 380px;
    font-size: 50px;
  }

  h2 {
    font-size: 54px;
  }
}

.admin-export {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) 2fr;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-stats div {
  min-height: 96px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 38px rgba(0,0,0,.07);
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 36px;
  line-height: 1;
}

.admin-stats p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
}

.admin-stats small {
  padding: 6px 8px;
  background: #f2f2f0;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.admin-filters input {
  grid-column: span 2;
}

.admin-table-wrap {
  overflow-x: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1180px;
}

.admin-table th,
.admin-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 1000;
}

.admin-table strong,
.admin-table span,
.admin-table small,
.admin-table em {
  display: block;
}

.admin-table strong {
  font-weight: 1000;
}

.admin-table span,
.admin-table em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.admin-table small {
  width: fit-content;
  margin: 0 5px 5px 0;
  padding: 5px 7px;
  background: #f2f2f0;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-detail-grid {
  display: grid;
  gap: 8px;
  min-width: 240px;
}

.admin-detail-grid span {
  margin: 0;
  padding: 8px 10px;
  background: #f8f8f6;
  border: 1px solid var(--line);
  color: #404550;
  line-height: 1.35;
}

.admin-detail-grid b {
  display: block;
  margin-bottom: 2px;
  color: #8b9099;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.score-pill,
.sync {
  display: inline-flex !important;
  width: fit-content;
  padding: 6px 9px;
  color: var(--white) !important;
  background: var(--black);
  font-size: 10px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.score-hot {
  background: #111;
}

.score-warm {
  background: #68615a;
}

.score-cold {
  background: #9ca3af;
}

.sync-synced {
  background: var(--success);
}

.sync-failed {
  background: var(--danger);
}

.sync-skipped {
  background: #737373;
}

.empty-state {
  padding: 44px !important;
  text-align: center !important;
  color: var(--muted);
  font-weight: 900;
}

@media (max-width: 980px) {
  .lead-app {
    grid-template-columns: 1fr;
  }

  .intro-footer {
    flex-direction: column;
  }

  .brand-panel {
    position: relative;
    min-height: auto;
    padding: 28px;
  }

  .brand-copy {
    margin-top: 56px;
  }

  .brand-copy h1 {
    max-width: 560px;
    font-size: 56px;
  }

  .privacy-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 54px;
  }

  .form-panel {
    min-height: auto;
    padding: 20px;
  }

  .choice-grid,
  .field-grid,
  .admin-stats,
  .admin-filters {
    grid-template-columns: 1fr;
  }

  .support-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    min-height: 118px;
  }

  .support-card {
    min-height: 96px;
  }
}

@media (max-width: 700px) {
  .brand-panel {
    display: none;
  }

  .lead-app {
    min-height: 100vh;
  }

  .form-panel {
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 76px;
  }

  body[data-entry="qr"] .close-home-button {
    display: none;
  }
}

@media (max-width: 560px) {
  .form-step,
  .success-step {
    padding: 24px 18px;
  }

  h2 {
    font-size: 36px;
    line-height: .94;
  }

  .intro-touch strong {
    font-size: 52px;
    line-height: .9;
  }

  .brand-copy h1 {
    font-size: 44px;
  }

  .form-nav {
    flex-direction: column-reverse;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .primary-offers,
  .support-offers {
    grid-template-columns: 1fr;
  }

  .support-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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