:root {
  --bg: #eef7f5;
  --ink: #202326;
  --muted: #777b7e;
  --soft: #dfecea;
  --field: #e8eeee;
  --line: #d5dfdd;
  --blue: #119af2;
  --red: #ed1d26;
  --pill-a: #895d66;
  --pill-b: #d091a3;
  --pill-c: #1d3743;
  --pill-d: #3b101a;
  --pill-e: #4a3a52;
  --pill-f: #7d5359;
  --shadow: 0 8px 18px rgba(31, 36, 39, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  margin: 0;
}

.site-header {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(213, 223, 221, 0.9);
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  justify-content: space-between;
  min-height: 76px;
  padding: 10px clamp(18px, 5vw, 38px);
}

.site-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-brand img {
  display: block;
  height: 54px;
  width: 54px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: clamp(15px, 2.3vw, 30px);
  justify-content: flex-end;
  margin-left: auto;
}

.site-nav a {
  color: var(--ink);
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #a41924;
}

.site-cta {
  background: #a41924;
  border-radius: 10px;
  color: #ffffff;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 22px;
  text-decoration: none;
  white-space: nowrap;
}

.site-cta:hover {
  background: #7d2830;
}

.start-shell {
  margin: 0 auto;
  max-width: 1040px;
  min-height: 70vh;
  padding: 34px 20px 0;
}

.form-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto 30px;
  max-width: 620px;
}

.title-mark {
  display: block;
  height: auto;
  max-width: min(560px, 92vw);
  width: 100%;
}

.title-link {
  display: block;
  max-width: min(560px, 92vw);
  width: 100%;
}

.top-progress {
  background: #e4eeeb;
  border-radius: 999px;
  height: 8px;
  max-width: 560px;
  overflow: hidden;
  width: 100%;
}

.top-progress span {
  background: var(--blue);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 180ms ease;
  width: 20%;
}

.intake-form {
  margin: 0 auto;
  max-width: 590px;
}

.intro-copy {
  margin: 0 0 28px;
  text-align: center;
}

.intro-copy h1 {
  color: #606368;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}

.intro-copy p {
  color: #8b8e91;
  font-size: 13px;
  font-style: italic;
  margin: 2px 0 0;
}

.section-block {
  margin: 0 0 28px;
}

.section-block h2 {
  color: #3c4044;
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
}

.section-block .helper {
  color: #8a8d91;
  font-size: 14px;
  font-weight: 700;
  margin: 2px 0 16px;
}

.instruction {
  color: #6a6d70;
  font-size: 12px;
  margin: 8px 0 8px;
}

.field {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.field label,
.option-group legend {
  color: #55595d;
  font-size: 13px;
}

select,
input[type="text"],
input[type="email"] {
  appearance: none;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  min-height: 42px;
  padding: 10px 13px;
  width: 100%;
}

select {
  background-image: linear-gradient(45deg, transparent 50%, #899093 50%), linear-gradient(135deg, #899093 50%, transparent 50%);
  background-position: calc(100% - 19px) 17px, calc(100% - 13px) 17px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

::placeholder {
  color: #999;
}

.option-group {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
}

.section-block:has(.option-group) .helper {
  margin-bottom: 5px;
}

.option-group legend {
  margin-bottom: 8px;
}

.option-group .instruction {
  margin: -2px 0 8px;
}

.option {
  align-items: flex-start;
  color: #3d4245;
  display: flex;
  font-size: 14px;
  gap: 8px;
  line-height: 1.25;
}

.option input {
  margin-top: 1px;
}

.step-nav {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 26px 0 64px;
}

.submit-flow,
.page-progress {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submit-flow {
  min-height: 0;
}

.page-label {
  color: #8a8d91;
  margin: 0;
}

.page-dots {
  display: flex;
  gap: 6px;
}

.page-dots span {
  background: #d4dcda;
  border-radius: 999px;
  display: block;
  height: 10px;
  width: 10px;
}

.page-dots .active {
  background: var(--blue);
  width: 22px;
}

.button-row {
  display: flex;
  gap: 9px;
  justify-content: center;
}

.step-nav.is-final .button-row {
  margin-top: 2px;
}

.step-five-layout {
  display: grid;
  gap: 26px;
}

.nav-button,
.submit-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.nav-button {
  background: #2d2d2f;
  border-radius: 8px;
  color: white;
  min-height: 38px;
  padding: 0 18px;
}

.submit-button {
  background: var(--red);
  border-radius: 999px;
  color: white;
  min-height: 52px;
  min-width: min(360px, 86vw);
  padding: 0 26px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.final-submit-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-submit-block {
  margin-top: 22px;
}

.secondary-submit-block {
  margin-top: -4px;
}

.submit-note,
.draft-status {
  color: #596064;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.draft-status {
  color: var(--red);
  font-size: 13px;
  max-width: 420px;
}

.draft-status.reader-handoff {
  color: #303638;
}

.draft-status.reader-handoff a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.draft-status.reader-handoff a:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.field-error {
  outline: 2px solid rgba(237, 29, 38, 0.35);
  outline-offset: 2px;
}

.review-card {
  background: #fffdf8;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin: 0 auto 30px;
  max-width: 440px;
  padding: 18px 22px 20px;
}

.review-card header {
  text-align: center;
}

.review-card h2 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.review-card h2 span {
  color: var(--red);
}

.review-card header p {
  color: #6f7477;
  font-size: 12px;
  font-style: italic;
  margin: 2px 0 16px;
}

.review-people {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.review-person {
  background: #dfeeee;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  justify-items: center;
  min-height: 96px;
  padding: 16px 15px;
  text-align: center;
}

.review-person h3 {
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0 0 18px;
  text-align: center;
}

.review-person strong {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  text-align: center;
}

.review-person p {
  color: #6b7276;
  font-size: 10px;
  line-height: 1.25;
  margin: 0;
  max-width: 180px;
  text-align: center;
}

.review-pills {
  display: grid;
  gap: 9px 12px;
  grid-template-columns: 1fr 1fr;
  margin: 24px auto 26px;
  max-width: 340px;
}

.review-pill {
  align-items: stretch;
  border-radius: 999px;
  color: white;
  display: grid;
  font-size: 10px;
  font-weight: 800;
  grid-template-rows: 13px 1fr;
  line-height: 1.18;
  min-height: 60px;
  padding: 8px 12px 9px;
  place-items: center;
  text-align: center;
}

.review-pill strong,
.review-pill em {
  display: block;
  font-style: normal;
}

.review-pill strong {
  align-self: start;
  font-size: 9px;
  line-height: 1;
  opacity: 0.82;
  text-transform: uppercase;
}

.review-pill em {
  align-self: center;
  font-size: 11px;
  line-height: 1.15;
  margin-top: 0;
}

.review-pill:nth-child(1) { background: var(--pill-a); }
.review-pill:nth-child(2) { background: var(--pill-b); }
.review-pill:nth-child(3) { background: var(--pill-c); }
.review-pill:nth-child(4) { background: var(--pill-d); }
.review-pill:nth-child(5) { background: var(--pill-e); }
.review-pill:nth-child(6) { background: var(--pill-f); }

.benefits h3 {
  font-size: 18px;
  margin: 0 0 16px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  gap: 13px 20px;
  grid-template-columns: 1fr 1fr;
}

.benefit-grid span {
  font-size: 12px;
}

.account-details {
  margin: 0 auto;
  max-width: 590px;
  width: 100%;
}

.account-details h2 {
  font-size: 22px;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.account-details .account-subhead {
  color: var(--red);
  font-weight: 800;
  margin: 2px 0 20px;
  text-align: center;
}

.inline-review {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(31, 36, 39, 0.1);
  margin: 18px 0;
  padding: 12px 18px;
}

.final-inline-review {
  margin: -4px auto 0;
  max-width: 590px;
  width: 100%;
}

.final-preview-note {
  margin-top: -8px;
}

.stars {
  color: #f0a616;
  letter-spacing: 1px;
}

.inline-review p {
  margin: 2px 0 10px;
}

.inline-review strong,
.inline-review span {
  display: block;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
  margin-top: 6px;
}

.trust-line span {
  font-size: 13px;
}

.testimonials {
  margin: 0 auto 34px;
  max-width: 980px;
}

.testimonial-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 3px 6px rgba(31, 36, 39, 0.08);
  display: grid;
  gap: 10px;
  grid-template-rows: 18px 118px 196px 42px;
  justify-items: center;
  min-height: 414px;
  padding: 24px 18px 14px;
  text-align: center;
}

.testimonial-card blockquote {
  align-items: center;
  color: #707478;
  display: flex;
  font-size: 14px;
  justify-content: center;
  line-height: 1.3;
  margin: 0;
  min-height: 0;
}

.testimonial-card img {
  aspect-ratio: 2 / 3;
  height: 196px;
  object-fit: cover;
  width: 130px;
}

.testimonial-card footer {
  align-self: end;
  justify-self: stretch;
  text-align: left;
}

.testimonial-card footer strong,
.testimonial-card footer span {
  display: block;
  font-size: 12px;
}

.testimonial-card footer span {
  color: #999;
}

.testimonials h2 {
  font-size: 22px;
  margin: 34px 0 0;
  text-align: center;
}

.start-footer {
  background: white;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(160px, 1fr) repeat(3, minmax(140px, 0.5fr));
  margin-top: 36px;
  padding: 78px max(24px, calc((100vw - 980px) / 2)) 42px;
}

.footer-mark {
  height: auto;
  width: 72px;
}

.footer-home-link {
  display: inline-flex;
  line-height: 0;
}

.footer-column {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-column h2 {
  font-size: 14px;
  margin: 0;
}

.footer-column a,
.footer-column .footer-static {
  align-items: center;
  color: #b5a295;
  display: flex;
  gap: 8px;
  text-decoration: none;
}

.footer-column a[href^="mailto"] {
  color: var(--red);
  text-decoration: underline;
}

.footer-column img {
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.hidden {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 68px;
    padding: 9px 14px;
  }

  .site-brand img {
    height: 44px;
    width: 44px;
  }

  .site-nav {
    gap: 11px;
    justify-content: center;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    width: 100%;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    font-size: 12px;
  }

  .site-cta {
    border-radius: 9px;
    font-size: 12px;
    padding: 11px 13px;
  }

  .start-shell {
    padding-inline: 16px;
  }

  .title-mark {
    max-width: 360px;
  }

  .testimonial-track {
    display: flex;
    margin-inline: -16px;
    overflow-x: auto;
    padding: 0 16px 10px;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    flex: 0 0 min(236px, 78vw);
    scroll-snap-align: center;
  }

  .start-footer {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
}

@media (max-width: 520px) {
  .review-card {
    padding-inline: 14px;
  }

  .review-people,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
