@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/quiz/assets/_vinext_fonts/geist-8ac0455e797f/geist-98bbbccb.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/quiz/assets/_vinext_fonts/geist-mono-00e989178794/geist-mono-013b2f2f.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --ink: #050706;
  --panel: #090d0b;
  --panel-raised: #0c110e;
  --text: #f2f5f3;
  --muted: rgba(226, 238, 230, 0.6);
  --line: rgba(226, 238, 230, 0.14);
  --line-strong: rgba(49, 248, 137, 0.48);
  --green: #31f889;
  --green-bright: #74ffad;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(49, 248, 137, 0.075), transparent 34rem),
    var(--ink);
  color: var(--text);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.quiz-shell {
  position: relative;
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
}

.quiz-shell::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(226, 238, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 238, 230, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

.quiz-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(49, 248, 137, 0.52);
  background: rgba(49, 248, 137, 0.05);
  color: var(--text);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  place-items: center;
}

.brand-glyph {
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.brand-glyph span {
  color: var(--green);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

.brand-copy small,
.header-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-note {
  color: var(--green);
}

.progress {
  height: 2px;
  background: rgba(226, 238, 230, 0.07);
}

.progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(49, 248, 137, 0.5);
  transition: width 240ms ease;
}

.step {
  flex: 1;
}

.hero-step {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
  padding: 80px 0 92px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 1px;
  background: var(--green);
}

h1,
h2 {
  margin: 0;
  font-family: var(--mono);
  font-weight: 520;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 680px;
  font-size: clamp(50px, 6.2vw, 82px);
  line-height: 0.98;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

h2 {
  max-width: 780px;
  font-size: clamp(35px, 4.3vw, 54px);
  line-height: 1.03;
}

.hero-lede,
.helper,
.final-lede {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lede {
  max-width: 630px;
  margin: 25px 0 28px;
  font-size: 17px;
}

.proof-list {
  display: flex;
  margin: 0 0 34px;
  padding: 0;
  flex-wrap: wrap;
  gap: 11px 22px;
  list-style: none;
  color: rgba(242, 245, 243, 0.78);
  font-family: var(--mono);
  font-size: 10px;
}

.proof-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof-list span {
  color: var(--green);
}

.primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  border: 1px solid var(--green);
  border-radius: 0;
  background: var(--green);
  color: #031108;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.015em;
  padding: 0 19px;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.primary-button:hover {
  border-color: var(--green-bright);
  background: var(--green-bright);
  transform: translateY(-1px);
}

.time-note {
  margin: 12px 0 0;
  color: rgba(226, 238, 230, 0.42);
  font-family: var(--mono);
  font-size: 9px;
}

.signal-card,
.step-card,
.final-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(9, 13, 11, 0.96);
  box-shadow: 22px 22px 0 rgba(49, 248, 137, 0.025);
}

.signal-card::before,
.step-card::before,
.final-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 84px;
  height: 2px;
  background: var(--green);
  content: "";
}

.signal-card-bar,
.step-card-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  color: rgba(226, 238, 230, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-card-bar i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.pricing-table {
  min-width: 0;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(128px, 1.5fr) repeat(2, minmax(48px, 0.65fr)) 52px;
  min-height: 62px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(226, 238, 230, 0.08);
  padding: 10px 15px;
}

.pricing-heading {
  min-height: 38px;
  background: rgba(49, 248, 137, 0.035);
  color: rgba(226, 238, 230, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.05em;
  padding-block: 7px;
  text-transform: uppercase;
}

.pricing-heading span:not(:first-child) {
  text-align: right;
}

.pricing-model-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.pricing-provider-logo,
.pricing-provider-monogram {
  display: inline-flex;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #eef3ef;
}

.pricing-provider-logo {
  object-fit: contain;
  padding: 4px;
}

.pricing-provider-monogram {
  color: #071008;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.pricing-model {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.pricing-model strong {
  overflow: hidden;
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 620;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-model small {
  overflow: hidden;
  color: rgba(226, 238, 230, 0.43);
  font-size: 8px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-value {
  color: rgba(242, 245, 243, 0.82);
  font-family: var(--mono);
  font-size: 9px;
  text-align: right;
}

.pricing-saving {
  border: 1px solid rgba(49, 248, 137, 0.26);
  background: rgba(49, 248, 137, 0.07);
  color: var(--green);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  padding: 5px 4px;
  text-align: center;
}

.pricing-loading {
  display: grid;
  min-height: 248px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  place-items: center;
  text-align: center;
}

.pricing-footer-link {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  padding: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.pricing-footer-link:hover {
  color: var(--green-bright);
}

.question-step,
.final-step {
  display: grid;
  place-items: center;
  padding: 62px 0 78px;
}

.step-card {
  width: min(790px, 100%);
}

.step-card-body {
  padding: clamp(28px, 5vw, 54px);
}

.step-card-body .eyebrow {
  margin-bottom: 20px;
}

.helper {
  margin: 16px 0 28px;
  font-size: 13px;
}

.option-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  border: 0;
}

.option-list button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(12, 17, 14, 0.85);
  color: var(--text);
  cursor: pointer;
  padding: 0 18px;
  text-align: left;
  transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.option-list button:hover,
.option-list button.is-selected {
  border-color: var(--line-strong);
  background: rgba(49, 248, 137, 0.07);
}

.option-list button span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 550;
}

.option-list button b {
  color: var(--green);
  font-size: 15px;
}

.option-list button:disabled {
  cursor: wait;
}

.option-list button:disabled:not(.is-selected) {
  opacity: 0.48;
}

.back-button {
  margin-top: 20px;
  border: 0;
  background: transparent;
  color: rgba(226, 238, 230, 0.48);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  padding: 10px 0;
}

.back-button:hover {
  color: var(--green);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.field-grid label {
  display: grid;
  gap: 9px;
  color: rgba(242, 245, 243, 0.82);
  font-size: 11px;
}

.field-grid input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #070a08;
  color: var(--text);
  padding: 0 15px;
}

.field-grid input::placeholder {
  color: rgba(226, 238, 230, 0.33);
}

.field-grid input:focus {
  border-color: var(--line-strong);
}

.form-button {
  width: 100%;
}

.final-card {
  width: min(790px, 100%);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
}

.result-check {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--mono);
  font-size: 20px;
  place-items: center;
}

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

.final-card h2 {
  max-width: 690px;
  margin-inline: auto;
}

.final-lede {
  max-width: 620px;
  margin: 20px auto 26px;
  font-size: 14px;
}

.booking-proof {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-proof span {
  border: 1px solid var(--line);
  color: rgba(242, 245, 243, 0.72);
  font-family: var(--mono);
  font-size: 8px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.booking-button {
  min-width: min(100%, 380px);
}

.final-card .back-button {
  display: block;
  margin-inline: auto;
}

.quiz-footer {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(226, 238, 230, 0.35);
  font-family: var(--mono);
  font-size: 8px;
}

.quiz-footer a {
  color: inherit;
  text-decoration: none;
}

.quiz-footer a:hover {
  color: var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .hero-step {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .signal-card {
    width: min(100%, 620px);
  }
}

@media (max-width: 600px) {
  .quiz-shell {
    width: min(100% - 32px, 1180px);
  }

  .quiz-header {
    min-height: 68px;
  }

  .brand-copy small,
  .header-note {
    display: none;
  }

  .hero-step {
    align-content: center;
    min-height: calc(100svh - 140px);
    padding: 50px 0 62px;
  }

  .pricing-row {
    grid-template-columns: minmax(116px, 1.35fr) repeat(2, minmax(42px, 0.62fr)) 48px;
    gap: 7px;
    padding-inline: 11px;
  }

  .pricing-model-cell {
    gap: 8px;
  }

  .pricing-provider-logo,
  .pricing-provider-monogram {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .proof-list {
    display: grid;
  }

  .primary-button {
    width: 100%;
  }

  .question-step,
  .final-step {
    align-items: start;
    padding: 30px 0 48px;
  }

  .step-card-body {
    padding: 27px 19px 22px;
  }

  .step-card-bar {
    padding: 0 13px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .final-card {
    padding: 38px 20px 26px;
  }

  .eyebrow.centered {
    align-items: center;
    font-size: 8px;
  }

  .booking-proof {
    display: grid;
  }
}

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