/* ==========================================================================
   Recommendation page — Hero
   ========================================================================== */
.rec-hero {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    padding-block: 95px 74px;
}
.rec-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .7;
}
.rec-hero-bg .rec_hero_bg_img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.rec-hero__glow {
  position: absolute;
  top: clamp(-160px, -30vw, -280px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(420px, 70vw, 1000px);
  height: clamp(420px, 70vw, 1000px);
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #5a3690 0%, rgba(90, 54, 144, 0) 70%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.rec-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 20px;
    text-align: center;
}

.rec-hero__eyebrow {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2.86px;
    text-transform: uppercase;
    color: #cab5ff;
    margin: 0 0 clamp(14px, 2vw, 24px);
}

.rec-hero__heading {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: clamp(38px, 6vw + 12px, 90px);
    line-height: 93px;
    color: var(--color-text-light);
    margin: 0 0 clamp(12px, 2vw, 22px);
    letter-spacing: 0;
}

.rec-hero__description {
    font-family: var(--font-serif);
    font-size: clamp(17px, 0.9vw + 13px, 25px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 clamp(28px, 4vw, 38px);
}

.rec-hero__form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 100%;
  margin: 0 auto clamp(20px, 3vw, 28px);
}

.rec-hero__form-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid #7605f5;
  padding-inline: 20px;
}

.rec-hero__form-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(23, 23, 23, 0.45);
}

.rec-hero__form-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-family: var(--font-mono-label);
  font-size: 18px;
  color: #171717;
  padding-block: 16px;
}

.rec-hero__form-input::placeholder {
  color: rgba(23, 23, 23, 0.3);
}

.rec-hero__form-input:focus {
  outline: none;
}

.rec-hero__form-submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-text-light);
  background-color: #7605f5;
  padding-inline: 26px;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.rec-hero__form-submit svg {
  transition: transform 0.15s ease;
}

.rec-hero__form-submit:hover,
.rec-hero__form-submit:focus-visible {
  background-color: #8a2bff;
}

.rec-hero__form-submit:hover svg,
.rec-hero__form-submit:focus-visible svg {
  transform: translateX(3px);
}

.rec-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
  margin: 0 0 clamp(40px, 6vw, 64px);
  padding: 0;
}

.rec-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono-label);
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.rec-hero__trust svg {
  color: #741db3;
  flex-shrink: 0;
}

.rec-hero__panel {
  display: contents;
}
.rec-hero__stat {
    text-align: left;
}

@media (min-width: 1024px) {
  .rec-hero__panel {
    display: block;
    background-color: rgba(6, 3, 26, 0.6);
    border: 1px solid #53307a;
    border-radius: 30px;
    padding: 35px;
    margin: 0 0 84px;
  }

  .rec-hero__panel .rec-hero__form {
    margin-bottom: 28px;
  }

  .rec-hero__panel .rec-hero__trust {
    margin-bottom: 0;
  }
}

.rec-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    padding-top: 30px;
}

.rec-hero__stat-value {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 2vw + 22px, 40px);
  letter-spacing: -0.086em;
  line-height: 1;
  color: var(--color-text-light);
  margin: 0 0 10px;
}

.rec-hero__stat-value span {
  font-size: 1em;
}

.rec-hero__stat-label {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.rec-hero__stat--accent .rec-hero__stat-value {
  color: #b96cff;
}

.rec-hero__stat--accent .rec-hero__stat-label {
  color: rgba(221, 184, 255, 0.7);
}

@media (min-width: 768px) {
  .rec-hero__stat:not(:first-child) {
    position: relative;
  }

  .rec-hero__stat:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 0;
    width: 1px;
    height: 84px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.rec-hero__source {
  font-family: var(--font-base);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  margin: 44px 0 0;
}

@media (max-width: 767px) {
  .rec-hero__container {
    max-width: 100%;
  }

  .rec-hero__form {
    flex-wrap: wrap;
  }

  .rec-hero__form-field {
    flex-basis: 100%;
  }

  .rec-hero__form-submit {
    width: 100%;
    padding-block: 16px;
  }

  .rec-hero__trust {
    row-gap: 10px;
  }

  .rec-hero__stats {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .rec-hero__stat {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-block: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rec-hero__stat:last-child {
    border-bottom: 0;
  }

  .rec-hero__stat-value {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Recommendation page — Why now (traffic arrived before the tooling)
   ========================================================================== */
.rec-traffic {
    position: relative;
    background-color: #020010;
    padding-block: 118px 120px;
}

.rec-traffic__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.rec-traffic__header {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.rec-traffic__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #cab5ff;
  margin: 0 0 16px;
}

.rec-traffic__heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 76px;
    letter-spacing: -3.46px;
    line-height: 86px;
    color: #ffffff;
    margin: 0;
}

.rec-traffic__break {
  display: none;
}

@media (min-width: 1024px) {
  .rec-traffic__break {
    display: inline;
  }
}

.rec-traffic__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: clamp(28px, 4vw, 40px);
    max-width: 1134px;
    margin-inline: auto;
}

.rec-traffic__card {
    background: linear-gradient(180deg, #10031B, #02010B 100%);
    border: none;
    border-radius: 0;
    padding: 70px 40px 60px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.rec-traffic__card:hover {
  border-color: rgba(185, 108, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(120, 60, 200, 0.18);
}

.rec-traffic__card-bar {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background-color: #b96cff;
  margin-bottom: clamp(16px, 2vw, 24px);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.rec-traffic__card:hover .rec-traffic__card-bar {
  width: 56px;
  background-color: #d9a6ff;
}

.rec-traffic__card-heading {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #f5f5f7;
  margin: 0 0 14px;
}

.rec-traffic__card-description {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.rec-traffic__quote {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
  padding-left: 24px;
}

.rec-traffic__quote-bar {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 0;
  background-color: #b96cff;
}

.rec-traffic__quote p {
    font-family: var(--font-serif);
    font-size: 34px;
    letter-spacing: -0.072em;
    line-height: 44px;
    color: #ffffff;
    margin: 0;
}

.rec-traffic__source {
  font-family: var(--font-base);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 900px;
  margin: 60px auto 0;
  padding-left: 24px;
}

@media (max-width: 767px) {
  .rec-traffic__cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Recommendation page — The new website reality (shared .visitors component,
   see css/content.css; only the two-line conclusion differs from homepage)
   ========================================================================== */
.visitors__conclusion-lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.75vw, 54px);
  letter-spacing: -0.064em;
  line-height: 1.48;
  color: #ffffff;
  margin: 0;
}

.visitors__conclusion--plain {
  font-style: italic;
  font-family: 'Gelasio', var(--font-serif);
  font-size: clamp(28px, 3.75vw, 54px);
  letter-spacing: -0.064em;
  line-height: 1.48;
  color: #9d5cff;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .visitors__conclusion-lead {
    font-size: 36px;
    line-height: 40px;
    margin-top: 40px;
  }

  .visitors__conclusion--plain {
    font-size: 36px;
    line-height: 40px;
    margin-top: 4px;
  }
}

/* ==========================================================================
   Recommendation page — What AI looks for (six-factor grid / mobile slider)
   ========================================================================== */
.rec-factors {
  position: relative;
  background-color: #ffffff;
  padding-block: clamp(56px, 8vw, 120px);
}

.rec-factors__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.rec-factors__header {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}

@media (min-width: 1024px) {
  .rec-factors__header {
    margin-bottom: 33px;
  }
}

.rec-factors__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #9a60fb;
  margin: 0 0 16px;
}

.rec-factors__heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 76px;
    letter-spacing: -3.46px;
    line-height: 86px;
    color: #171717;
    margin: 0;
}

.rec-factors__viewport {
  width: 100%;
}

.rec-factors__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .rec-factors__list {
    column-gap: clamp(30px, 3.7vw, 53px);
  }
}

.rec-factors__card {
  background-color: #faf9fd;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 39px 44px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.rec-factors__card:hover {
  border-color: rgba(185, 108, 255, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(120, 60, 200, 0.12);
}

.rec-factors__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9px;
  background-color: #ede3ff;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.065em;
  color: #b96cff;
  margin-bottom: 30px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.rec-factors__card:hover .rec-factors__number {
  background-color: #b96cff;
  color: #ffffff;
  transform: scale(1.15) rotate(-8deg);
}

.rec-factors__card-heading {
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.27;
  color: #171717;
  margin: 0 0 14px;
}

.rec-factors__card-description {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(23, 23, 23, 0.72);
  margin: 0;
}

.rec-factors__dots {
  display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rec-factors__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .rec-factors__card {
    padding: 32px 28px 36px;
  }
}

@media (max-width: 767px) {
  .rec-factors__header {
    text-align: left;
    margin-bottom: 32px;
  }

  .rec-factors__heading {
    font-size: 32px;
    line-height: 1.108;
    letter-spacing: -0.0625em;
  }
}

@media (max-width: 767px) {
  .rec-factors__viewport {
    margin-inline: calc(var(--container-padding-inline) * -1);
    width: calc(100% + var(--container-padding-inline) * 2);
    overflow: hidden;
  }

  .rec-factors__list {
    display: flex;
    grid-template-columns: unset;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: var(--container-padding-inline);
  }

  .rec-factors__list::-webkit-scrollbar {
    display: none;
  }

  .rec-factors__card {
    flex: 0 0 auto;
    width: min(372px, calc(100vw - var(--container-padding-inline) * 2 - 30px));
    padding: 20px 20px 32px;
    scroll-snap-align: start;
  }

  .rec-factors__number {
    width: 48px;
    height: 48px;
    border-radius: 7.7px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .rec-factors__card-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .rec-factors__card-description {
    line-height: 1.625;
  }

  .rec-factors__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
  }

  .rec-factors__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #e2d4ff;
    padding: 0;
    border: 0;
    transition: width 0.2s ease, background-color 0.2s ease;
  }

  .rec-factors__dot.is-active {
    width: 32px;
    background-color: #50338b;
  }
}

@media (max-width: 400px) {
  .rec-factors__heading {
    font-size: 28px;
  }
}

/* ==========================================================================
   Recommendation page — Real test on live product + Enter your website CTA
   ========================================================================== */
.rec-test {
    position: relative;
    background-color: #020010;
    padding-block: 115px 120px;
    overflow: hidden;
}

.rec-test__container {
  position: relative;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.rec-test__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.rec-test__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #cab5ff;
  margin: 0 0 16px;
}

.rec-test__heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 76px;
    letter-spacing: -3.46px;
    line-height: 78px;
    color: #ffffff;
    margin: 0;
}

.rec-test__heading em {
  font-style: italic;
  font-family: 'Gelasio', var(--font-serif);
  color: #b96cff;
}

.rec-test__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.rec-test__description {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.125;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 clamp(20px, 2.5vw, 19px);
}

.rec-test__findings {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rec-test__findings li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.125;
  color: rgba(255, 255, 255, 0.75);
}

.rec-test__findings svg {
    flex-shrink: 0;
    margin-top: 6px;
    color: #ffffffbf;
}
blockquote.rec-test__quote.is-visible {
    margin: 38px 0 0;
    text-align: left;
    padding-left: 20px;
    font-size: 26px;
    line-height: 35px;
}
span.rec-test__quote-bar {
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    border-radius: 0;
    background-color: #b96cff;
}


.rec-test__mock {
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.rec-test__mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: #f2f0f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px 20px;
}

.rec-test__mock-header p {
  margin: 0;
  font-family: var(--font-base);
  font-size: 14px;
  color: #171717;
}

.rec-test__mock-header span {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  color: #171717;
  white-space: nowrap;
}

.rec-test__mock-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rec-test__mock-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease;
}

.rec-test__mock-list > .rec-test__mock-item:last-child {
  border-bottom: 0;
}

.rec-test__mock-item:hover {
  background-color: rgba(118, 5, 245, 0.06);
}

.rec-test__mock-item--featured:hover {
  background-color: #e8cdff;
}

.rec-test__mock-item img {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 3px;
  background-color: #f2f0f7;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.rec-test__mock-item:hover img {
  transform: scale(1.1);
}

.rec-test__mock-copy {
  flex: 1;
  min-width: 0;
}

.rec-test__mock-name {
  margin: 0 0 4px;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  color: #252525;
}

.rec-test__mock-name--accent {
  color: #7605f5;
  font-size: 15px;
}

.rec-test__mock-desc {
  margin: 0;
  font-family: var(--font-base);
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(37, 37, 37, 0.6);
}

.rec-test__mock-price {
  flex-shrink: 0;
  margin: 0;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  color: #252525;
}

.rec-test__mock-match {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 6px;
  background-color: rgba(234, 208, 255, 0.6);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 10px;
  color: rgba(37, 37, 37, 0.6);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rec-test__mock-item:hover .rec-test__mock-match {
  background-color: #b96cff;
  color: #ffffff;
}

.rec-test__mock-match--relevant {
  background-color: #7605f5;
  color: #ffffff;
}

.rec-test__mock-item:hover .rec-test__mock-match--relevant {
  background-color: #8a2bff;
}

.rec-test__mock-split {
  background-color: #faf7ef;
  border-block: 0.8px solid rgba(23, 23, 23, 0.12);
  padding: 11px 18px;
}

.rec-test__mock-split span {
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 1.38px;
  text-transform: uppercase;
  color: #c084fc;
}

.rec-test__mock-list--featured {
  background-color: #f0ddff;
  border-left: 4px solid #8b00e8;
}

.rec-test__mock-item--featured {
  border-bottom: 0;
}

.rec-test__quote {
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
  padding: 0;
}

.rec-test__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1vw + 16px, 26px);
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
}

.rec-test__quote em {
  font-style: italic;
}

.rec-test__cta {
  text-align: center;
}

.rec-test__cta-heading {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: clamp(28px, 3vw + 16px, 52px);
  letter-spacing: -0.05em;
  color: #ffffff;
  margin: 0 0 12px;
}

.rec-test__cta-subtext {
  font-family: var(--font-mono-label);
  font-weight: 400;
  font-size: clamp(15px, 0.6vw + 13px, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 clamp(20px, 3vw, 34px);
}

.rec-test__cta-panel {
    display: flex;
    align-items: stretch;
    gap: 16px;
    max-width: 954px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 54px 44px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.rec-test__cta-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid #7605f5;
  padding-inline: 16px;
}

.rec-test__cta-field svg {
  flex-shrink: 0;
  color: rgba(23, 23, 23, 0.45);
}

.rec-test__cta-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-family: var(--font-mono-label);
  font-size: 18px;
  color: #171717;
  padding-block: 27px;
}

.rec-test__cta-input::placeholder {
  color: rgba(23, 23, 23, 0.3);
}

.rec-test__cta-input:focus {
  outline: none;
}

.rec-test__cta-submit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 19px;
    color: var(--color-text-light);
    background-color: #7605f5;
    padding-inline: 38px;
    white-space: nowrap;
    transition: background-color 0.15s ease;
}

.rec-test__cta-submit:hover,
.rec-test__cta-submit:focus-visible {
  background-color: #8a2bff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rec-test__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rec-test__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rec-test__mock {
    order: -1;
  }

  .rec-test__header {
    text-align: left;
  }

  .rec-test__mock-item {
    padding: 14px;
    gap: 12px;
  }

  .rec-test__mock-item img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 430px) {
  .rec-test__mock-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: start;
  }

  .rec-test__mock-item img {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .rec-test__mock-copy {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  .rec-test__mock-price {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .rec-test__mock-match {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .rec-test__quote {
    text-align: left;
    margin-inline: 0;
    border-left: 3px solid #b96cff;
    padding-left: 16px;
  }

  .rec-test__quote p {
    font-style: normal;
    font-size: 20px;
    line-height: 1.3;
  }

  .rec-test__quote em {
    font-style: normal;
  }

  .rec-test__cta {
    text-align: left;
  }

  .rec-test__cta-panel {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .rec-test__cta-submit {
    width: 100%;
    padding-block: 16px;
  }
}

/* ==========================================================================
   Recommendation page — Ten checks that reveal what to fix first
   ========================================================================== */
.rec-checks {
  position: relative;
  background-color: #ffffff;
  padding-block: clamp(56px, 8vw, 120px);
}

.rec-checks__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.rec-checks__header {
  text-align: center;
  max-width: 1140px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}

@media (min-width: 1024px) {
  .rec-checks__header {
    margin-bottom: 38px;
  }
}

.rec-checks__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #9a60fb;
  margin: 0 0 16px;
}

.rec-checks__heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 76px;
    letter-spacing: -3.46px;
    line-height: 79px;
    color: #171717;
    margin: 0;
}

.rec-checks__list {
    --checks-gap: clamp(24px, 5vw, 70px);
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--checks-gap);
    max-width: 1003px;
    margin-inline: auto;
}

@media (max-width: 767px) {
  .rec-checks__list {
    --checks-gap: 52px;
  }
}

.rec-checks__card:not(:last-child) {
  position: relative;
}

.rec-checks__card:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: calc(-1 * (var(--checks-gap) / 2) - 10px);
  width: 1.5px;
  height: 20px;
  background-color: #b96cff;
  transform: translateX(-50%);
  pointer-events: none;
}

.rec-checks__card {
  display: flex;
  gap: clamp(24px, 4vw, 62px);
  background-color: #f9f7fb;
  border: 1px solid #e0dbe5;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px) clamp(24px, 4vw, 64px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.rec-checks__card:hover {
  border-color: rgba(108, 58, 203, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(80, 40, 140, 0.1);
}

.rec-checks__tier {
  flex-shrink: 0;
  font-family: var(--font-mono-label);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6c3acb;
  transition: color 0.25s ease;
}

.rec-checks__card:hover .rec-checks__tier {
  color: #a100ff;
}

.rec-checks__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.rec-checks__card-heading {
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.002em;
  color: #171717;
  margin: 0;
}

.rec-checks__card-description {
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.53;
  color: #414c5b;
  margin: 0;
}

.rec-checks__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rec-checks__tags li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 20px;
  background-color: rgba(108, 58, 203, 0.08);
  font-family: var(--font-base);
  font-size: 14px;
  color: rgba(23, 23, 23, 0.8);
  white-space: nowrap;
}

.rec-checks__tags svg {
  flex-shrink: 0;
  color: #6c3acb;
}

@media (max-width: 767px) {
  .rec-checks__eyebrow {
    font-family: var(--font-display);
  }

  .rec-checks__heading {
    font-size: 36px;
    line-height: 1.039;
    letter-spacing: -0.056em;
  }

  .rec-checks__card {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .rec-checks__body {
    gap: 16px;
  }

  .rec-checks__tags {
    gap: 10px;
  }

  .rec-checks__tags li {
    padding: 8px 14px;
    gap: 4px;
  }

  .rec-checks__tags svg {
    width: 16px;
    height: 16px;
  }
}

/* ==========================================================================
   Recommendation page — One score. Clear priorities. No guesswork.
   ========================================================================== */
.rec-score {
  position: relative;
  background-color: #03000b;
  padding-block: clamp(56px, 8vw, 120px);
}

.rec-score__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.rec-score__header {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.rec-score__eyebrow {
  font-family: var(--font-base);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #9a60fb;
  margin: 0 0 16px;
}

.rec-score__heading {
  font-family: var(--font-base);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw + 18px, 63px);
  letter-spacing: -0.055em;
  line-height: 1.254;
  color: #ffffff;
  margin: 0;
}

.rec-score__card {
    max-width: 100%;
    margin-inline: auto;
    background: linear-gradient(318deg, #FBFAF7, #FEF9F4);
    border: 1px solid rgba(161, 0, 255, 0.35);
    border-radius: 20px;
    box-shadow: 0 0 70px rgba(161, 0, 255, 0.22);
    padding: 25px 49px;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.6vw, 20px);
}
.rec-score__card_outline {
    border: 1px solid #B96CFF;
    background: #3f32814d;
    padding: 20px;
    border-radius: 30px;
    width: 100%;
    max-width: 1157px;
    margin-inline: auto;
}

.rec-score__top {
  background-color: #ffffff;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

/* Gauge */
.rec-score__gauge {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.rec-score__gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(140deg);
}

.rec-score__gauge-track {
  fill: none;
  stroke: #ece7f2;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 386 515.2;
}

.rec-score__gauge-value {
  fill: none;
  stroke: #8b3ff5;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 0 515.2;
  transition: stroke-dasharray 1s ease 0.15s;
}

.rec-score__card.is-visible .rec-score__gauge-value {
  stroke-dasharray: calc(3.86 * var(--gauge-percent, 0)) 515.2;
}

.rec-score__gauge-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
}
.rec-score__gauge-copy .rec-sgc-scnd {
    position: absolute;
    bottom: 0;
}

.rec-score__gauge-number {
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: #171717;
  margin: 0;
}

.rec-score__gauge-number span {
  font-size: 22px;
  font-weight: 400;
  color: #9a9aa3;
}

.rec-score__gauge-label {
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 13px;
  color: rgba(23, 23, 23, 0.7);
  margin: 0;
}

.rec-score__gauge-pill {
    display: inline-flex;
    align-items: end;
    gap: 3px;
    padding: 7px 8px;
    border-radius: 999px;
    background-color: rgba(118, 5, 245, 0.1);
    color: #7605f5;
    font-family: var(--font-mono-label);
    font-weight: 500;
    font-size: 12px;
}

/* Category bars */
.rec-score__bars {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rec-score__bar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rec-score__bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  flex-shrink: 0;
}

.rec-score__bar-icon--foundations {
  background-color: #e8f4e6;
  color: #1f7a34;
}

.rec-score__bar-icon--intelligence {
  background-color: #fcebd5;
  color: #a66a13;
}

.rec-score__bar-icon--agent {
  background-color: #eceefa;
  color: #33449e;
}

.rec-score__bar-name {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  color: #171717;
}

.rec-score__bar-tag {
  margin-left: auto;
  font-family: var(--font-base);
  font-size: 14px;
  color: #5c5b5a;
}

.rec-score__bar-track {
  height: 8px;
  border-radius: 999px;
  background-color: #e9e6ee;
  overflow: hidden;
  flex: 1;
}

.rec-score__bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  transition: width 1s ease 0.15s;
}

.rec-score__bar-fill--foundations {
  background-color: #086607;
}

.rec-score__bar-fill--intelligence {
  background-color: #864c01;
}

.rec-score__bar-fill--agent {
  background-color: #0a4095;
}

.rec-score__card.is-visible .rec-score__bar-fill--foundations {
  width: 90%;
}

.rec-score__card.is-visible .rec-score__bar-fill--intelligence {
  width: 72%;
}

.rec-score__card.is-visible .rec-score__bar-fill--agent {
  width: 41%;
}

/* Legend */
.rec-score__legend {
  background-color: #ffffff;
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 28px) clamp(24px, 3vw, 40px);
}

.rec-score__legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: clamp(24px, 3vw, 56px);
}

.rec-score__legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 14px;
  border-top: 1px solid #ece7ef;
}

.rec-score__legend-item:nth-child(1),
.rec-score__legend-item:nth-child(4) {
  border-top: none;
  padding-top: 0;
}

.rec-score__legend-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  color: #171717;
}

.rec-score__legend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  flex-shrink: 0;
}

.rec-score__legend-icon--green {
  background-color: #e2f2df;
  color: #1f7a34;
}

.rec-score__legend-icon--amber {
  background-color: #f7ead2;
  color: #a66a13;
}

.rec-score__legend-icon--blue {
  background-color: #e2e7fb;
  color: #33449e;
}

.rec-score__legend-icon--pink {
  background-color: #fbe4ea;
  color: #c23a63;
}

.rec-score__legend-tag {
  flex-shrink: 0;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 5px;
}

.rec-score__legend-tag--green {
  background-color: #e8f4e6;
  color: #086607;
}

.rec-score__legend-tag--amber {
  background-color: #fcebd5;
  color: #864c01;
}

.rec-score__legend-tag--red {
  background-color: rgba(226, 46, 46, 0.1);
  color: #e22e2e;
}

.rec-score__legend-item--more {
    font-family: var(--font-base);
    font-size: 14px;
    color: #171717;
    border-top: 1px solid #ece7ef;
    font-weight: 500;
}

.rec-score__legend-item--mobile-only {
  display: none;
  margin: 0;
  padding-top: 16px;
}

/* Banner */
.rec-score__banner {
    background-color: #7605f50d;
    border-radius: 10px;
    padding: 15px 14px 14px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.rec-score__banner-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: #ecdcfc;
  color: #8b3ff5;
}

.rec-score__banner-text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono-label);
  font-size: 15px;
  line-height: 27px;
  color: #171717;
  margin: 0;
}

.rec-score__banner-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(118, 5, 245, 0.15);
  color: #7605f5;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.rec-score__banner-link:hover,
.rec-score__banner-link:focus-visible {
  background-color: #f6ecfc;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rec-score__top {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .rec-score__gauge {
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .rec-score__header {
    text-align: left;
  }

  .rec-score__eyebrow {
    font-family: var(--font-display);
    color: #cab5ff;
  }

  .rec-score__heading {
    font-size: 36px;
    line-height: 1.039;
    letter-spacing: -0.056em;
  }

  .rec-score__card {
    border-radius: 18px;
  }

  .rec-score__top {
    flex-direction: column;
    padding: 24px 20px;
    gap: 24px;
  }

  .rec-score__gauge {
    margin-inline: auto;
    width: 170px;
    height: 170px;
  }

  .rec-score__bars {
    width: 100%;
    gap: 22px;
  }

  .rec-score__bar-icon,
  .rec-score__legend-icon {
    border-radius: 4px;
  }

  .rec-score__bar-name,
  .rec-score__legend-name {
    font-size: 12px;
  }

  .rec-score__bar-tag {
    font-size: 11px;
  }

  .rec-score__legend {
    padding: 18px 20px;
  }

  .rec-score__legend-list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .rec-score__legend-item--desktop-only {
    display: none;
  }

  .rec-score__legend-item--mobile-only {
    display: block;
    font-family: var(--font-base);
    font-size: 14px;
    color: #6b6b76;
  }

  .rec-score__banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .rec-score__banner-text {
    font-size: 12px;
    line-height: 19px;
  }

  .rec-score__banner-link {
    font-size: 16px;
  }

  .rec-score__banner-link {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Recommendation page — You won't be left with a PDF (action roadmap)
   ========================================================================== */
.rec-roadmap {
  position: relative;
  background-color: #ffffff;
  padding-block: clamp(56px, 8vw, 120px);
}

.rec-roadmap__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.rec-roadmap__header {
  text-align: center;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.rec-roadmap__eyebrow {
  font-family: var(--font-base);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #9a60fb;
  margin: 0 0 16px;
}

.rec-roadmap__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw + 12px, 76px);
  letter-spacing: -0.0455em;
  line-height: 0.947;
  color: #171717;
  margin: 0;
}

.rec-roadmap__viewport {
  width: 100%;
}

.rec-roadmap__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0 0 clamp(32px, 4vw, 48px);
  padding: 0;
}

.rec-roadmap__card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 60% at 50% 55%, #301544 0%, #100a21 100%);
  border: 1px solid rgba(168, 114, 216, 0.3);
  border-radius: 20px;
  padding: 28px 28px 96px;
  min-height: 220px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.rec-roadmap__card:hover {
  border-color: rgba(168, 114, 216, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(120, 60, 200, 0.25);
}

.rec-roadmap__number {
  position: absolute;
  right: 20px;
  bottom: -6px;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 88px;
  letter-spacing: -0.1em;
  line-height: 1;
  color: #201533;
  pointer-events: none;
}

.rec-roadmap__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 59px;
  border-radius: 15px;
  border: 1px solid #ac3bff;
  background-color: #321042;
  color: #b879ff;
  margin-bottom: 24px;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.rec-roadmap__card:hover .rec-roadmap__icon {
  border-color: #d9a6ff;
  color: #d9a6ff;
  transform: scale(1.15) rotate(-8deg);
}

.rec-roadmap__card-heading {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.818;
    letter-spacing: -0.045em;
    color: #f5f5f7;
    margin: 0 0 8px;
}

.rec-roadmap__card-description {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 320px;
}

.rec-roadmap__card:nth-child(1) .rec-roadmap__card-description {
  color: rgba(255, 255, 255, 0.8);
}

.rec-roadmap__dots {
  display: none;
}

.rec-roadmap__note {
    text-align: center;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(28px, 2.6vw + 18px, 54px);
    letter-spacing: -3.46px;
    line-height: 70px;
    color: #171717;
    margin: 0 auto;
    max-width: 855px;
}

.rec-roadmap__note em {
  font-style: italic;
  font-family: 'Gelasio', var(--font-serif);
  color: #9d5cff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rec-roadmap__list {
    gap: 16px;
  }

  .rec-roadmap__card {
    padding: 22px 20px 84px;
  }

  .rec-roadmap__number {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .rec-roadmap__heading {
    font-size: 36px;
    line-height: 1.039;
    letter-spacing: -0.056em;
  }

  .rec-roadmap__note {
    font-size: 36px;
    line-height: 1.106;
  }

  .rec-roadmap__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .rec-roadmap__card-heading {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: normal;
    color: #ffffff;
  }

  .rec-roadmap__card-description {
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.72);
  }

  .rec-roadmap__card:nth-child(1) .rec-roadmap__card-description {
    color: rgba(255, 255, 255, 0.72);
  }

  .rec-roadmap__viewport {
    margin-inline: calc(var(--container-padding-inline) * -1);
    width: calc(100% + var(--container-padding-inline) * 2);
    overflow: hidden;
  }

  .rec-roadmap__list {
    display: flex;
    grid-template-columns: unset;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: var(--container-padding-inline);
    margin-bottom: 24px;
  }

  .rec-roadmap__list::-webkit-scrollbar {
    display: none;
  }

  .rec-roadmap__card {
    flex: 0 0 auto;
    width: min(360px, calc(100vw - var(--container-padding-inline) * 2 - 30px));
    padding: 24px 20px 84px;
    scroll-snap-align: start;
  }

  .rec-roadmap__number {
    font-size: 88px;
    letter-spacing: -0.1em;
  }

  .rec-roadmap__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 32px;
  }

  .rec-roadmap__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #e2d4ff;
    padding: 0;
    border: 0;
    transition: width 0.2s ease, background-color 0.2s ease;
  }

  .rec-roadmap__dot.is-active {
    width: 32px;
    background-color: #50338b;
  }

}

/* ==========================================================================
   Recommendation page — Bottom CTA banner
   ========================================================================== */
.rec-cta {
  background-color: #ffffff;
  padding-block: clamp(48px, 8vw, 120px);
}

.rec-cta__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.rec-cta__panel {
  max-width: 1265px;
  margin-inline: auto;
  background-color: #f6e339;
  border-radius: 10px;
  padding: clamp(40px, 6vw, 91px) clamp(24px, 7vw, 97px) clamp(40px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 3vw, 32px);
}

.rec-cta__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #171717;
  margin: 0;
}

.rec-cta__heading {
  font-family: var(--font-base);
  font-weight: 900;
  font-size: clamp(28px, 3.9vw + 12px, 63px);
  line-height: 71px;
  letter-spacing: normal;
  color: #171717;
  max-width: 1070px;
  margin: 0;
}

.rec-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 27px 36px;
    background-color: #543582;
    color: #ffffff;
    font-family: var(--font-mono-label);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1%;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.rec-cta__button:hover,
.rec-cta__button:focus-visible {
  transform: scale(1.08);
}

.rec-cta__button-arrow {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .rec-cta {
    padding-block: 64px;
  }

  .rec-cta__container {
    padding-inline: 15px;
  }

  .rec-cta__panel {
    max-width: none;
    border-radius: 8px;
    padding: 40px 15px;
    gap: 24px;
  }

  .rec-cta__eyebrow {
    font-size: 12px;
  }

  .rec-cta__heading {
    font-weight: 700;
    font-size: clamp(26px, 5vw + 20px, 40px);
    line-height: 1.186;
    letter-spacing: -0.0645em;
    color: #0e1014;
    max-width: none;
  }

  .rec-cta__button {
    width: 100%;
    padding: 20px 35px;
    white-space: normal;
    text-align: center;
  }
}

/* Touch devices should not retain desktop hover transforms after a tap. */
@media (hover: none) and (pointer: coarse) {
  .rec-traffic__card:hover,
  .rec-factors__card:hover,
  .rec-checks__card:hover,
  .rec-roadmap__card:hover,
  .rec-factors__card:hover .rec-factors__number,
  .rec-roadmap__card:hover .rec-roadmap__icon,
  .rec-cta__button:hover,
  .rec-test__mock-item:hover img,
  .rec-hero__form-submit:hover svg {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rec-score__gauge-value,
  .rec-score__bar-fill {
    transition: none;
  }

  .rec-cta__button:hover,
  .rec-cta__button:focus-visible {
    transform: none;
  }

  .rec-test__mock-item:hover img {
    transform: none;
  }

  .rec-hero__form-submit:hover svg,
  .rec-hero__form-submit:focus-visible svg {
    transform: none !important;
  }

  .rec-traffic__card:hover,
  .rec-factors__card:hover,
  .rec-checks__card:hover,
  .rec-roadmap__card:hover,
  .rec-factors__card:hover .rec-factors__number,
  .rec-roadmap__card:hover .rec-roadmap__icon {
    transform: none !important;
  }
}
