:root {
  --preview-purple: #46438a;
  --preview-plum: #3a2b55;
  --preview-cream: #f4e3c9;
  --preview-cream-light: #fbf3e2;
  --preview-teal: #5cc2b7;
  --preview-amber: #d69a3c;
  --preview-ink: #35264e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--preview-cream-light);
  color: var(--preview-ink);
}

button,
input { font: inherit; }

.free-help-header { top: 0; }

.free-help-header .wrap,
.free-help-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.free-help-nav {
  display: flex;
  align-items: center;
}

.header-back,
.free-help-footer a {
  color: var(--preview-purple);
  font-size: 0.88rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.start-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) 0 clamp(86px, 10vw, 146px);
  background: var(--preview-purple) url("/assets/img/background-dark.webp") center / cover no-repeat;
  color: var(--preview-cream);
}

.start-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -44% 28%;
  width: 90%;
  height: 74%;
  border-radius: 50%;
  border: 2px solid rgba(92, 194, 183, 0.24);
  box-shadow:
    0 0 0 42px rgba(92, 194, 183, 0.05),
    0 0 0 86px rgba(244, 227, 201, 0.04);
  transform: rotate(-7deg);
  pointer-events: none;
}

.start-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.start-copy { max-width: 720px; }

.start-copy .eyebrow,
.start-hero .eyebrow { color: var(--preview-teal); }

.start-copy h1 {
  margin: 12px 0 24px;
  max-width: 690px;
  color: var(--preview-cream);
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.start-lede {
  max-width: 670px;
  margin: 0;
  color: rgba(244, 227, 201, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.58;
}

.path-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.path-choice {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(244, 227, 201, 0.35);
  border-radius: 20px;
  padding: 20px;
  background: rgba(58, 43, 85, 0.4);
  color: var(--preview-cream);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.path-choice--primary {
  border-color: var(--preview-teal);
  background: var(--preview-teal);
  color: var(--preview-plum);
}

.path-choice:hover,
.path-choice:focus-visible {
  transform: translateY(-2px);
  border-color: var(--preview-teal);
  outline: none;
}

.path-choice span {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.82;
}

.path-choice strong {
  font-size: 1rem;
  line-height: 1.3;
}

.plain-facts {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(244, 227, 201, 0.72);
  font-size: 0.86rem;
}

.plain-facts li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--preview-teal);
  vertical-align: 1px;
}

.guide-cover {
  position: relative;
  display: block;
  transform: rotate(1.5deg);
  color: var(--preview-plum);
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.guide-cover:hover { transform: rotate(0deg) translateY(-3px); }

.guide-cover img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 28px 64px rgba(22, 12, 40, 0.34);
}

.guide-cover span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--preview-cream);
  color: var(--preview-plum);
  font-size: 0.76rem;
  font-weight: 800;
}

.problem-choice { text-align: center; }
.problem-choice h2 { max-width: 820px; margin-left: auto; margin-right: auto; }

.problem-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.problem-row article {
  min-height: 164px;
  padding: 24px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.problem-row span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--preview-amber);
  color: var(--preview-plum);
  font-weight: 800;
}

.problem-row p {
  margin: 18px 0 0;
  font-weight: 700;
  line-height: 1.4;
}

.second-step-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.second-step-art { text-align: center; }
.second-step-art img { width: min(100%, 430px); }

.second-step-grid h2 { max-width: 750px; }
.second-step-grid p { max-width: 680px; font-size: 1.08rem; line-height: 1.65; }

.check-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.check-benefits li {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(92, 194, 183, 0.15);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.call-path { background: var(--preview-cream-light); }

.call-path-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.call-path h2 { max-width: 720px; margin-bottom: 10px; }
.call-path p { margin: 0; color: rgba(53, 38, 78, 0.72); }

.check-view {
  min-height: 100vh;
  padding: 38px 22px 70px;
  background:
    linear-gradient(rgba(251, 243, 226, 0.88), rgba(251, 243, 226, 0.93)),
    url("/assets/img/background-soft.webp") center / cover fixed;
}

.check-shell {
  width: min(100%, 800px);
  margin: 0 auto;
}

.check-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-to-start,
.question-back,
.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--preview-purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.check-brand {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(53, 38, 78, 0.64);
}

.check-progress { margin-top: 38px; }

.progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: rgba(53, 38, 78, 0.67);
  font-size: 0.8rem;
  font-weight: 700;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(70, 67, 138, 0.13);
}

.progress-track span {
  display: block;
  width: 14.28%;
  height: 100%;
  border-radius: inherit;
  background: var(--preview-teal);
  transition: width 240ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.check-card {
  position: relative;
  min-height: 490px;
  margin-top: 24px;
  padding: clamp(30px, 6vw, 64px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(58, 43, 85, 0.12);
}

.question-back { margin-bottom: 28px; }

.question-kicker {
  margin: 0 0 12px;
  color: #277f77;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-title {
  max-width: 650px;
  margin: 0;
  color: var(--preview-plum);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.question-help {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(53, 38, 78, 0.7);
  font-size: 1rem;
  line-height: 1.55;
}

.job-form { margin-top: 32px; }

.job-form label,
.email-preview label {
  display: block;
  margin-bottom: 9px;
  color: var(--preview-plum);
  font-size: 0.88rem;
  font-weight: 800;
}

.job-form input,
.email-preview input {
  width: 100%;
  min-height: 58px;
  border: 2px solid rgba(70, 67, 138, 0.22);
  border-radius: 16px;
  padding: 14px 17px;
  background: #fff;
  color: var(--preview-plum);
  font-size: 1rem;
}

.job-form input:focus,
.email-preview input:focus {
  outline: 3px solid rgba(92, 194, 183, 0.42);
  outline-offset: 2px;
  border-color: var(--preview-purple);
}

.field-error {
  min-height: 24px;
  margin: 8px 0 0;
  color: #8d2f35;
  font-size: 0.86rem;
  font-weight: 700;
}

.job-form .btn { margin-top: 12px; }

.answer-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.answer-option {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 68px;
  border: 2px solid rgba(70, 67, 138, 0.14);
  border-radius: 18px;
  padding: 12px 17px;
  background: #fff;
  color: var(--preview-plum);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.answer-option:hover,
.answer-option:focus-visible {
  border-color: var(--preview-teal);
  background: rgba(92, 194, 183, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.answer-letter {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(70, 67, 138, 0.1);
  color: var(--preview-purple);
  font-size: 0.78rem;
  font-weight: 800;
}

.answer-text { font-weight: 700; line-height: 1.35; }

.result-card { margin: -18px; }

.result-header {
  padding: clamp(30px, 6vw, 54px);
  border-radius: 24px;
  background: var(--preview-purple) url("/assets/img/background-dark.webp") center / cover no-repeat;
  color: var(--preview-cream);
}

.result-header .question-kicker { color: var(--preview-teal); }

.result-title {
  margin: 0;
  color: var(--preview-cream);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.result-summary {
  max-width: 630px;
  margin: 18px 0 0;
  color: rgba(244, 227, 201, 0.88);
  font-size: 1.06rem;
  line-height: 1.58;
}

.result-body { padding: 34px 18px 0; }

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

.score-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(244, 227, 201, 0.42);
}

.score-label {
  display: block;
  color: rgba(53, 38, 78, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.score-value {
  display: block;
  margin-top: 7px;
  color: var(--preview-plum);
  font-size: 1.08rem;
  font-weight: 800;
}

.score-detail {
  display: block;
  margin-top: 6px;
  color: rgba(53, 38, 78, 0.66);
  font-size: 0.76rem;
  line-height: 1.4;
}

.screening-note {
  margin: 15px 2px 0;
  color: rgba(53, 38, 78, 0.64);
  font-size: 0.8rem;
  line-height: 1.5;
}

.reason-block,
.next-block,
.email-preview {
  margin-top: 26px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(92, 194, 183, 0.1);
}

.reason-block h2,
.next-block h2,
.email-preview h2 {
  margin: 0 0 12px;
  color: var(--preview-plum);
  font-size: 1.22rem;
}

.reason-block p,
.email-preview p { margin: 0; line-height: 1.6; }

.next-block ol {
  margin: 0;
  padding-left: 22px;
}

.next-block li { margin: 9px 0; padding-left: 6px; line-height: 1.5; }

.email-preview { background: rgba(214, 154, 60, 0.12); }

.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.demo-note {
  margin-top: 10px !important;
  color: rgba(53, 38, 78, 0.64);
  font-size: 0.8rem;
}

.email-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.email-row .btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.result-actions a { color: var(--preview-purple); font-weight: 700; }

.free-help-footer {
  padding: 30px 0;
  background: var(--preview-plum);
  color: rgba(244, 227, 201, 0.74);
}

.free-help-footer .brand img {
  width: 132px;
  filter: brightness(0) invert(1);
}

.free-help-footer .footer-tag,
.free-help-footer .footer-legal { margin: 0; font-size: 0.82rem; }

.free-help-footer-links a { color: var(--preview-cream); }

[hidden] { display: none !important; }

@media (max-width: 920px) {
  .start-hero-grid { grid-template-columns: 1fr; }
  .guide-cover { width: min(100%, 600px); margin: 0 auto; transform: none; }
  .problem-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .second-step-grid { grid-template-columns: 1fr; }
  .second-step-art img { width: min(70%, 340px); }
}

@media (max-width: 640px) {
  .free-help-header .wrap { min-height: 68px; }
  .free-help-header .brand img { width: 120px; }
  .header-back { font-size: 0.72rem; }
  .start-hero { padding-top: 72px; }
  .start-copy h1 { font-size: clamp(2.65rem, 14vw, 4.3rem); }
  .path-choices { grid-template-columns: 1fr; }
  .plain-facts { display: grid; gap: 10px; }
  .problem-row { grid-template-columns: 1fr; }
  .problem-row article { min-height: auto; }
  .check-benefits { grid-template-columns: 1fr; }
  .call-path-inner { align-items: stretch; flex-direction: column; }
  .call-path-inner .btn { width: 100%; text-align: center; }
  .check-view { padding: 26px 14px 48px; }
  .check-card { min-height: 500px; padding: 28px 20px; border-radius: 22px; }
  .progress-copy span:last-child { display: none; }
  .answer-option { grid-template-columns: 36px 1fr; padding: 11px 12px; }
  .answer-letter { width: 34px; height: 34px; }
  .result-card { margin: -8px; }
  .result-header { padding: 30px 24px; }
  .result-body { padding-left: 0; padding-right: 0; }
  .score-grid { grid-template-columns: 1fr; }
  .email-row { grid-template-columns: 1fr; }
  .email-row .btn { width: 100%; }
  .free-help-footer .wrap { align-items: flex-start; flex-direction: column; }
}

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