.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

header:not([data-site-chrome]),
footer:not([data-site-chrome]) {
  display: none !important;
}

header[data-site-chrome],
footer[data-site-chrome] {
  font-family: "Geist", var(--font-geist-sans), system-ui, sans-serif;
}

.site-chrome-dropdown-panel {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-4px);
}

.site-chrome-dropdown:hover .site-chrome-dropdown-panel,
.site-chrome-dropdown:focus-within .site-chrome-dropdown-panel,
.site-chrome-dropdown.is-open .site-chrome-dropdown-panel {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-chrome-mobile {
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.site-chrome-mobile.is-open {
  pointer-events: auto;
  max-height: 80vh;
  overflow: auto;
  opacity: 1;
}

.site-chrome-mobile-services {
  display: none;
  flex-direction: column;
  padding: 0 8px 8px;
}

.site-chrome-mobile-services.is-open {
  display: flex;
}

.site-chrome-hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-chrome-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.site-chrome-hamburger.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.quiz-overlay {
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.065);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.62);
  --muted-strong: rgba(245, 247, 251, 0.78);
  --blue: #4285f4;
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  padding: 24px 16px;
  place-items: center;
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-family: "Geist", var(--font-geist-sans), system-ui, sans-serif;
}

.quiz-overlay *,
.quiz-overlay *::before,
.quiz-overlay *::after {
  box-sizing: border-box;
}

.quiz-overlay button {
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.quiz-overlay[hidden] {
  display: none;
}

.quiz-card {
  position: relative;
  display: flex;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  flex-direction: column;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0b0d12;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.quiz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
}

.quiz-head {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.quiz-promise {
  margin: 0 36px 8px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.quiz-badge {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
}

.quiz-urg {
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.quiz-bar {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.quiz-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 220ms ease;
}

.quiz-count {
  display: block;
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.quiz-body {
  padding: 22px 28px 8px;
}

.quiz-q {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.3;
}

.quiz-hint {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.quiz-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.quiz-field span,
.quiz-sublabel {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.quiz-sublabel {
  margin: 16px 0 10px;
}

.quiz-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.quiz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiz-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}

.quiz-chip.is-on {
  border-color: color-mix(in srgb, var(--blue) 70%, transparent);
  background: color-mix(in srgb, var(--blue) 18%, transparent);
}

.quiz-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.quiz-consent a {
  color: var(--text);
  text-decoration: underline;
}

.quiz-err {
  margin: 12px 0 0;
  color: #f3b4ae;
  font-size: 13px;
}

.quiz-nav {
  display: flex;
  padding: 8px 28px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quiz-back {
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.quiz-next {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.quiz-foot {
  padding: 0 28px 24px;
  border-top: 1px solid var(--line-soft);
}

.quiz-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.quiz-orbar {
  margin: 16px 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.quiz-wa {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.quiz-legal {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
