:root {
  --background: #faf9f6;
  --brand-orange: #f9943b;
  --text-gray: #4d4d4d;
  --progress-yellow: #f9f794;
  --progress-empty: #ffffff;
  --footer-gray: #777777;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 20px;
}

.card {
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.logo {
  width: 220px;
  max-width: 50vw;
  height: auto;
  display: block;
  margin: 0 auto 42px;
}

h1 {
  margin: 0;
  color: var(--brand-orange);
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 700;
  line-height: 1.1;
}

.status-text {
  margin: 28px 0 38px;
  color: var(--text-gray);
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}

.progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 5vw, 42px);
}

.progress-circle {
  width: clamp(54px, 11vw, 82px);
  height: clamp(54px, 11vw, 82px);
  border: 5px solid var(--progress-yellow);
  border-radius: 50%;
  background: var(--progress-empty);
  opacity: 0.25;
  transition: opacity 250ms ease, transform 250ms ease;
}

.progress-circle.active {
  opacity: 1;
  transform: scale(1.03);
}

.q1.active {
  background: conic-gradient(
    var(--progress-yellow) 0deg 90deg,
    var(--progress-empty) 90deg 360deg
  );
}

.q2.active {
  background: conic-gradient(
    var(--progress-yellow) 0deg 180deg,
    var(--progress-empty) 180deg 360deg
  );
}

.q3.active {
  background: conic-gradient(
    var(--progress-yellow) 0deg 270deg,
    var(--progress-empty) 270deg 360deg
  );
}

.q4.active {
  background: var(--progress-yellow);
}

.honeypot,
#turnstile-widget {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-note {
  max-width: 560px;
  margin: 48px auto 0;
  color: var(--footer-gray);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.footer-note a {
  color: var(--footer-gray);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .logo {
    width: 180px;
    margin-bottom: 34px;
  }

  .status-text {
    margin-bottom: 32px;
  }

  .progress-circle {
    border-width: 4px;
  }

  .footer-note {
    margin-top: 40px;
    font-size: 10.5px;
  }
}
