/* GOODFEEL — Quick Check styles (vanilla CSS, no framework)
   Note: assumes tokens.css AND styles.css are linked before this one — styles.css supplies
   the shared .btn / .field / .eyebrow / .lede / .consent-row / .form-status classes the
   engine reuses, this file only adds check-specific screens on top. */

.cc-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.cc-topbar {
  padding: 20px;
  border-bottom: 1px solid var(--sage-20);
  background: var(--ivory);
}
.cc-topbar__inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-topbar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.cc-topbar span {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.cc-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 20px 80px;
}
.cc-shell {
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.check-screen {
  animation: cc-fade-in 0.5s ease both;
}
@keyframes cc-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .check-screen {
    animation: none;
  }
}

.check-intro h1 {
  margin-block: 14px 18px;
  font-size: clamp(28px, 5vw, 42px);
}
.check-intro__text {
  text-align: center;
  color: var(--ink-60);
  max-width: 460px;
  margin: 20px auto 0;
  line-height: 1.7;
}
.check-meta {
  text-align: center;
  font-size: 13px;
  color: var(--ink-40);
  margin-top: 26px;
}

.check-progress {
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--stone);
  overflow: hidden;
  margin-bottom: 18px;
}
.check-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--sage-dark));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}
.check-step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.check-question__text {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.3;
  margin-bottom: 30px;
}
.check-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-option {
  text-align: left;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1.5px solid var(--sage-20);
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.check-option:hover {
  border-color: var(--sage);
  background: var(--stone);
}
.check-option:active {
  transform: scale(0.99);
}
.check-back {
  margin-top: 26px;
  background: none;
  border: none;
  color: var(--ink-40);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}
.check-back:hover {
  color: var(--sage-dark);
}

.check-gate h2 {
  margin-block: 14px 12px;
  font-size: clamp(24px, 4.5vw, 34px);
}
.check-gate__form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.check-privacy-note {
  font-size: 12.5px;
  color: var(--ink-40);
  text-align: center;
  line-height: 1.6;
}

.check-result h2 {
  margin-block: 14px 14px;
  font-size: clamp(24px, 4.5vw, 34px);
}
.check-steps {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--sage-20);
  border-radius: 18px;
  padding: 24px 26px;
}
.check-steps__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 0 0 14px;
}
.check-steps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.6;
}
.check-steps li::before {
  content: "→ ";
  color: var(--sage-dark);
}
.check-email-note {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--sage-dark);
  background: rgba(140, 161, 132, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
}
.check-result__next {
  margin-top: 40px;
  text-align: center;
}
.check-result__next-text {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 440px;
  margin-inline: auto;
}
