.vibe-score {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.vibe-score__ampersand-band {
  width: 100%;
  overflow: hidden;
  background-color: #DA160B;
}
.vibe-score__ampersand-band .scrolling-container {
  width: 100%;
  overflow: hidden;
}
.vibe-score__ampersand-band .scrolling-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}
.vibe-score__ampersand-band .scrolling-track img {
  flex-shrink: 0;
  height: auto;
  display: block;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.33%);
  }
}
.vibe-score__header {
  background-color: #D9170A;
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-score__header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-score__header-logo {
  display: block;
  height: 166px;
  width: auto;
}

.vibe-score__hero {
  background-color: #F9F7F1;
  padding: 0 60px;
  padding-top: 80px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.vibe-score__title {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 80px;
  font-weight: 600;
  color: #02282B;
  line-height: 1.2;
  letter-spacing: -2.4px;
  margin: 0 0 40px;
  max-width: 1320px;
}

.vibe-score__subtitle-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8.33%;
  max-width: 1320px;
  margin: 0 0 60px;
}

.vibe-score__subtitle {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #02282B;
  line-height: 1.5;
  letter-spacing: -0.1px;
  margin: 0;
  flex: 1 1 0%;
  min-width: 0;
}

.vibe-score__subtitle-badge {
  flex-shrink: 1;
  width: 220px;
  height: auto;
}

.vibe-score__divider {
  height: 1px;
  background-color: rgba(2, 40, 43, 0.3);
  max-width: 1320px;
  margin: 0 auto;
}

.vibe-score__form-section {
  background-color: #F9F7F1;
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.vibe-score__form-layout {
  display: flex;
  align-items: flex-start;
  gap: 8.33%;
  max-width: 1320px;
}

.vibe-score__form-heading {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #02282B;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
}

.vibe-score__form-heading sup {
  font-size: 16px;
  font-weight: 400;
  vertical-align: top;
  line-height: 1;
  position: relative;
  top: 2px;
}

.vibe-score__form-right {
  flex: 1 1 0%;
  min-width: 0;
}

.vibe-score__form-intro {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #02282B;
  line-height: 1.5;
  letter-spacing: -0.1px;
  margin: 0 0 50px;
}

.vibe-score__form {
  width: 100%;
  max-width: 640px;
}

.vibe-score__field-group {
  margin-bottom: 50px;
}

.vibe-score__field {
  margin-bottom: 15px;
  position: relative;
}

.vibe-score__label {
  display: block;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #02282B;
  line-height: 1.6;
  margin-bottom: 0;
}

.vibe-score__label .vibe-score__required {
  color: #DA160B;
}

.vibe-score__input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: #02282B;
  background: #FFFFFF;
  border: none;
  border-bottom: 1px solid rgba(2, 40, 43, 0.3);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.vibe-score__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.vibe-score__input:focus {
  outline: none;
  border-bottom-color: #02282B;
}

.vibe-score__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 19px 50px 21px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  background-color: #02282B;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.vibe-score__btn:hover {
  opacity: 0.9;
}

.vibe-score__btn:active {
  transform: scale(0.98);
}

.vibe-score__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vibe-score__input--error {
  border: 2px solid #DA160B !important;
  border-bottom: 2px solid #DA160B !important;
}

.vibe-score__form-error {
  color: #DA160B;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
}

.vibe-score__score-section {
  background-color: #02282B;
  width: 100%;
  overflow: hidden;
}

.vibe-score__score-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 105px 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.vibe-score__subscores-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px 105px;
}

.vibe-score__score-header {
  display: flex;
  align-items: flex-start;
  gap: 8.33%;
  margin-bottom: 80px;
}

.vibe-score__results-heading {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #FAF7F2;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
  width: 25%;
}

.vibe-score__score-header > div {
  width: 66.66%;
}

.vibe-score__results-qualifier {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #FAF7F2;
  line-height: 1.3;
  margin: 0 0 32px;
}

.vibe-score__results-description {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #F5F5F5;
  line-height: 1.5;
  letter-spacing: -0.1px;
  text-align: left;
  margin: 8px 0 0;
}

.vibe-score__gauge-row {
  display: flex;
  align-items: center;
  gap: 8.33%;
  margin-bottom: 50px;
}

.vibe-score__gauge-wrap {
  position: relative;
  width: 41.66%;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.vibe-score__gauge-container {
  width: 100%;
  height: 100%;
}

.vibe-score__gauge-ring {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vibe-score__gauge-ring--visible {
  opacity: 1;
  transform: scale(1);
}

.vibe-score__gauge-progress {
  stroke-dasharray: 1492.87;
  stroke-dashoffset: 1492.87;
  transition: stroke 0.6s ease;
}

.vibe-score__gauge-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 49px;
}

.vibe-score__gauge-logo {
  width: 170px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.vibe-score__gauge-logo--visible {
  opacity: 1;
  transform: scale(1);
}

.vibe-score__gauge-number {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(60px, 9.7vw, 140px);
  font-weight: 800;
  color: #FAF7F2;
  line-height: 49px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vibe-score__gauge-number--visible {
  opacity: 1;
}

.vibe-score__gauge-label {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 600;
  color: #FAF7F2;
  line-height: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vibe-score__gauge-label--visible {
  opacity: 1;
}

.vibe-score__gauge-info {
  width: 50%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.vibe-score__gauge-info--visible {
  opacity: 1;
}

.vibe-score__indicator {
  margin-bottom: 56px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vibe-score__indicator--visible {
  opacity: 1;
}

.vibe-score__indicator-track {
  position: relative;
  padding-top: 28px;
  margin-bottom: 8px;
}

.vibe-score__indicator-pointer {
  position: absolute;
  top: 0;
  left: 0%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: left 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  z-index: 1;
}

.vibe-score__indicator-pointer--visible {
  opacity: 1;
}

.vibe-score__indicator-pointer-label {
  background: #FFFFFF;
  color: #02282B;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-width: 40px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
}

.vibe-score__indicator-pointer-arrow {
  display: block;
  margin-top: -11px;
}

.vibe-score__indicator-bar {
  width: 100%;
  height: 11px;
  display: block;
}

.vibe-score__indicator-labels {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: auto;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FAF7F2;
  line-height: 1;
}

.vibe-score__indicator-labels span {
  position: absolute;
  transform: translateX(-50%);
}

.vibe-score__indicator-labels span:nth-child(1) {
  left: 25%;
}

.vibe-score__indicator-labels span:nth-child(2) {
  left: 65%;
}

.vibe-score__indicator-labels span:nth-child(3) {
  left: 90%;
}

.vibe-score__indicator-ticks {
  position: relative;
  height: 27px;
  margin-top: 6px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FAF7F2;
  line-height: 1.34;
}

.vibe-score__indicator-ticks span {
  position: absolute;
  transform: translateX(-50%);
}

.vibe-score__indicator-ticks span:first-child {
  left: 0;
  transform: none;
}

.vibe-score__indicator-ticks span:nth-child(2) {
  left: 50%;
}

.vibe-score__indicator-ticks span:nth-child(3) {
  left: 80%;
}

.vibe-score__indicator-ticks span:last-child {
  left: 100%;
  transform: translateX(-100%);
}

.vibe-score__indicator-desc {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #FAF7F2;
  line-height: 1.34;
  text-align: left;
  margin: 0 0 32px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vibe-score__indicator-desc--visible {
  opacity: 1;
}

.vibe-score__btn--ghost {
  background-color: transparent;
  color: #FAF7F2;
  border: 2px solid #FAF7F2;
}

.vibe-score__btn--ghost:hover {
  background-color: rgba(250, 247, 242, 0.1);
  opacity: 1;
}

.vibe-score__subscores {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.vibe-score__subscore {
  flex: 1 1 0%;
  min-width: 0;
  background: #F9F7F1;
  border-radius: 8px;
  padding: 20px 15px;
}

.vibe-score__subscore-meter {
  margin-bottom: 10px;
}

.vibe-score__subscore-track {
  width: 100%;
  height: 13px;
  background-color: #E9E9E9;
  border-radius: 19px;
  overflow: hidden;
}

.vibe-score__subscore-fill {
  height: 100%;
  border-radius: 19px;
  width: 0%;
  transition: background-color 0.6s ease;
}

.vibe-score__subscore-score {
  display: block;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #02282B;
  text-align: right;
  margin-top: 4px;
  line-height: 1;
}

.vibe-score__subscore-name {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #02282B;
  line-height: 1.3;
  margin: 0 0 6px;
}

.vibe-score__subscore-desc {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #02282B;
  line-height: 1.5;
  margin: 0;
}

.vibe-score__subscore-divider {
  display: none;
}

.vibe-score__subscores--hidden {
  opacity: 0;
  transform: translateY(16px);
}

.vibe-score__subscores--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vibe-score__subscore-meter--hidden {
  opacity: 0;
  transform: translateY(8px);
}

.vibe-score__subscore-meter--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vibe-score__subscore-score--hidden {
  opacity: 0;
}

.vibe-score__subscore-score--visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.vibe-score__subscore-name--hidden {
  opacity: 0;
}

.vibe-score__subscore-name--visible {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.vibe-score__subscore-desc--hidden {
  opacity: 0;
}

.vibe-score__subscore-desc--visible {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.vibe-score__step--processing {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #02282B;
  padding: 128px 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vibe-score__step--processing.vibe-score__modal--visible {
  opacity: 1;
  pointer-events: auto;
}

.vibe-score__processing-inner {
  text-align: center;
}

.vibe-score__spinner {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
  margin-bottom: 32px;
}

.vibe-score__spinner-ring {
  display: block;
}

.vibe-score__spinner-progress {
  transform-origin: center;
}

.vibe-score__spinner-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
}

.vibe-score__processing-step {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  color: #717171;
  margin: 0;
  transition: opacity 0.3s;
}

.vibe-score__cta-section {
  background-color: #F9F7F1;
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.vibe-score__cta-layout {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  max-width: 1320px;
}

.vibe-score__cta-heading {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #02282B;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
  max-width: 350px;
}

.vibe-score__cta-right {
  flex: 1;
  width: 640px;
}

.vibe-score__cta-text {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #02282B;
  line-height: 1.5;
  letter-spacing: -0.1px;
  margin: 0 0 50px;
}

.vibe-score__cta-text p {
  margin: 0 0 40px;
}

.vibe-score__cta-text p:last-child {
  margin-bottom: 0;
}

.vibe-score__cta-form {
  width: 640px;
  max-width: 100%;
}

.vibe-score__cta-form .vibe-score__input {
  height: 45px;
  padding: 0 15px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid rgba(2, 40, 43, 0.3);
  border-radius: 0;
  box-shadow: none;
  background: #FFFFFF;
}

.vibe-score__cta-form .vibe-score__textarea {
  height: 90px;
  padding: 12px 15px;
}

.vibe-score__cta-form .vibe-score__btn {
  width: 256px;
}

.vibe-score__cta-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.vibe-score__cta-fields .vibe-score__field {
  margin-bottom: 0;
}

.vibe-score__textarea {
  height: 90px;
  padding-top: 12px;
  resize: vertical;
}

.vibe-score__cta-consent {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 30px;
}

.vibe-score__cta-privacy {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #02282B;
  line-height: 1.5;
  margin: 0;
}

.vibe-score__cta-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.vibe-score__cta-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  border: 1px solid #02282B;
  border-radius: 4px;
  background: #FFFFFF;
  appearance: none;
  cursor: pointer;
}

.vibe-score__cta-checkbox input[type=checkbox]:checked {
  background-color: #02282B;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 4L5.5 10L2.5 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.vibe-score__cta-checkbox span {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #02282B;
  line-height: 1.5;
}

.vibe-score__cta-legal {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #02282B;
  line-height: 1.5;
}

.vibe-score__cta-legal p {
  margin: 0 0 14px;
}

.vibe-score__cta-legal p:last-child {
  margin-bottom: 0;
}

.vibe-score__cta-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vibe-score__cta-success {
  transition: opacity 0.4s ease;
}

.vibe-score__cta-success-illustration {
  max-width: 50%;
  margin: 0 0 40px;
}

.vibe-score__cta-success-illustration img {
  width: 100%;
  height: auto;
}

.vibe-score__cta-success p {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  margin: 0 0 24px;
}

.vibe-score__cta-success p:last-of-type {
  margin-bottom: 40px;
}

.vibe-score__cta-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 19px 50px 21px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #02282B;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.vibe-score__cta-success-btn:hover {
  background-color: #DA160B;
  color: #FFFFFF;
}

.vibe-score__btn--ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 19px 50px 21px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
  color: #02282B;
  border: 2px solid #02282B;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.vibe-score__btn--ghost-dark:hover {
  background-color: #DA160B;
  border-color: #DA160B;
  color: #FFFFFF;
}

.vibe-score__step--error {
  background-color: #F9F7F1;
  padding: 128px 60px;
  text-align: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-score__step--error h2 {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #02282B;
  margin: 0 0 12px;
}

.vibe-score__step--error p {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  color: #717171;
  line-height: 1.5;
  margin: 0 0 24px;
}

.vibe-score__comparison {
  background-color: #02282B;
  padding: 105px 60px;
}

.vibe-score__comparison-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.vibe-score__comparison-header {
  display: flex;
  align-items: flex-start;
  gap: 8.33%;
  margin-bottom: 60px;
}

.vibe-score__comparison-heading {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #FAF7F2;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
  width: 25%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vibe-score__comparison-heading--visible {
  opacity: 1;
}

.vibe-score__comparison-desc {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #FAF7F2;
  line-height: 1.5;
  letter-spacing: -0.1px;
  margin: 13px 0 0;
  width: 66.66%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vibe-score__comparison-desc--visible {
  opacity: 1;
}

/* Table & accordion row staggered fade-in */
.vibe-score__table thead tr,
.vibe-score__table tbody tr {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vibe-score__table thead tr.vibe-score__row--visible,
.vibe-score__table tbody tr.vibe-score__row--visible {
  opacity: 1;
  transform: translateY(0);
}

.vibe-score__accordion-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vibe-score__accordion-item.vibe-score__row--visible {
  opacity: 1;
  transform: translateY(0);
}

.vibe-score__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 2px 2px;
  border: none;
}

.vibe-score__table th,
.vibe-score__table td {
  width: 14.28%;
  height: 60px;
  padding: 10px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  border: none;
}

/* Header row styling */
.vibe-score__table thead th {
  background-color: #FF66AF;
  color: #03292B;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.vibe-score__table thead th:first-child {
  border-radius: 5px 0 0 0;
}

.vibe-score__table thead th:last-child {
  border-radius: 0 5px 0 0;
}

/* Data row styling */
.vibe-score__table tbody td {
  background-color: #F9F7F1;
  color: #717171;
  font-weight: 400;
}

.vibe-score__table tbody td:first-child {
  color: #000000;
  font-weight: 500;
}

/* Your Company row (first data row) */
.vibe-score__table tbody tr:first-child td {
  font-weight: 700;
  color: #000000;
}

/* Last row rounded corners */
.vibe-score__table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.vibe-score__table tbody tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

/* Accordion (mobile comparison) - hidden on desktop */
.vibe-score__accordion {
  display: none;
}

.vibe-score__accordion-item {
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.vibe-score__accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 8px 10px 15px;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: background-color 0.2s ease;
}

.vibe-score__accordion-header:hover {
  background-color: #F9F7F1;
}

.vibe-score__accordion-header:focus {
  background-color: #FFFFFF;
  outline: none;
}

/* border-radius handled by .vibe-score__accordion-item overflow: hidden */
.vibe-score__accordion-label {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}

.vibe-score__accordion-item--first .vibe-score__accordion-label {
  font-weight: 700;
}

.vibe-score__accordion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #000000;
  transition: transform 0.3s ease;
}

.vibe-score__accordion-item--open .vibe-score__accordion-arrow {
  transform: rotate(180deg);
}

.vibe-score__accordion-item--open .vibe-score__accordion-header {
  background-color: #FFFFFF;
}

.vibe-score__accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #F9F7F1;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.vibe-score__accordion-item--open .vibe-score__accordion-panel {
  max-height: 500px;
  opacity: 1;
}

.vibe-score__accordion-overall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: #FF66AF;
  color: #F9F7F1;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vibe-score__accordion-overall span:first-child {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.vibe-score__accordion-overall span:last-child {
  font-size: 20px;
  font-weight: 700;
}

.vibe-score__accordion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #02282B;
  border-bottom: 1px solid #D9DCD7;
}

.vibe-score__accordion-row:last-child {
  border-bottom: none;
}

.vibe-score__accordion-row span:first-child {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.vibe-score__accordion-row span:last-child {
  font-size: 16px;
  font-weight: 400;
}

.vibe-score-cta-widget {
  background-color: #02282B;
  padding: 60px 60px;
  text-align: center;
}

.vibe-score-cta-widget__inner {
  max-width: 800px;
  margin: 0 auto;
}

.vibe-score-cta-widget__heading {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #FAF7F2;
  line-height: 1.2;
  margin: 0 0 16px;
}

.vibe-score-cta-widget__text {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FAF7F2;
  line-height: 1.5;
  margin: 0 0 32px;
}

.vibe-score-cta-widget__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 19px 50px 21px;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  background-color: #FF66AF;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.vibe-score-cta-widget__btn:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

@media (max-width: 1280px) {
  .vibe-score__table thead th {
    font-size: 16px;
  }
}
@media (max-width: 1140px) {
  .vibe-score__gauge-number {
    font-size: 120px;
  }
  .vibe-score__gauge-label {
    font-size: 22px;
  }
  .vibe-score__gauge-logo {
    width: clamp(80px, 11.8vw, 170px);
  }
}
@media (max-width: 1080px) {
  .vibe-score__table thead th {
    white-space: normal;
  }
}
@media (max-width: 992px) {
  .vibe-score__header {
    height: 150px;
  }
  .vibe-score__header-logo {
    height: 80px;
  }
  .vibe-score__hero {
    padding: 40px 30px;
    margin-bottom: 0;
  }
  .vibe-score__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .vibe-score__subtitle-wrap {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
  .vibe-score__subtitle {
    width: 100%;
  }
  .vibe-score__subtitle-badge {
    display: none;
  }
  .vibe-score__form-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .vibe-score__form-section {
    padding: 40px 30px;
  }
  .vibe-score__form-layout {
    flex-direction: column;
    gap: 0;
  }
  .vibe-score__form-right {
    width: 100%;
  }
  .vibe-score__form {
    width: 100%;
  }
  .vibe-score__input {
    width: 100%;
  }
  .vibe-score__score-header {
    flex-direction: column;
    gap: 20px;
  }
  .vibe-score__results-heading {
    width: auto;
    font-size: 32px;
  }
  .vibe-score__results-qualifier {
    margin-bottom: 24px;
  }
  .vibe-score__score-inner {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
  }
  .vibe-score__score-header {
    display: contents;
  }
  .vibe-score__results-heading {
    order: 1;
  }
  .vibe-score__gauge-wrap {
    order: 2;
    width: 100%;
    max-width: 480px;
    margin: 45px auto 30px;
  }
  .vibe-score__score-header > div {
    order: 3;
    width: 100%;
  }
  .vibe-score__gauge-row {
    display: contents;
  }
  .vibe-score__gauge-info {
    order: 4;
    width: 100%;
    margin-top: 40px;
    margin-bottom: -20px;
  }
  .vibe-score__subscores-wrap {
    padding: 0 30px 60px;
  }
  .vibe-score__subscores {
    flex-wrap: wrap;
    justify-content: center;
  }
  .vibe-score__subscore {
    flex: 0 0 calc(33.33% - 14px);
    min-width: 0;
  }
  .vibe-score__subscore-divider {
    flex: 0 0 1px;
    margin: 0 10px;
    align-self: stretch;
  }
  .vibe-score__subscores > :nth-child(6) {
    display: none;
  }
  .vibe-score__comparison {
    padding: 40px 30px;
  }
  .vibe-score__comparison-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .vibe-score__comparison-heading {
    width: auto;
    font-size: 32px;
  }
  .vibe-score__comparison-desc {
    width: 100%;
  }
  .vibe-score__table {
    display: none;
  }
  .vibe-score__accordion {
    display: flex;
    flex-direction: column;
  }
  .vibe-score__cta-section {
    padding: 40px 30px;
  }
  .vibe-score__cta-layout {
    flex-direction: column;
    gap: 40px;
  }
  .vibe-score__cta-heading {
    max-width: none;
    font-size: 32px;
  }
  .vibe-score__cta-right {
    width: 100%;
  }
  .vibe-score__cta-form {
    width: 100%;
  }
  .vibe-score__cta-success-illustration {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .vibe-score__subscores-wrap {
    padding: 0 20px 60px;
  }
  .vibe-score__subscores {
    flex-direction: column;
    gap: 16px;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .vibe-score__subscore {
    flex: 0 0 auto;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px;
  }
  .vibe-score__subscore-divider {
    display: none;
  }
  .vibe-score__subscores > :nth-child(6) {
    display: none;
  }
}
@media (max-width: 768px) {
  .vibe-score__results-qualifier {
    margin-bottom: 20px;
  }
  .vibe-score__results-description {
    font-size: 16px;
  }
  .vibe-score__indicator-desc {
    font-size: 16px;
  }
  .vibe-score__comparison-desc {
    font-size: 16px;
  }
  .vibe-score__indicator {
    margin-bottom: 20px;
  }
  .vibe-score__subtitle {
    font-size: 16px;
  }
  .vibe-score__form-intro {
    font-size: 16px;
  }
  .vibe-score__cta-text {
    font-size: 16px;
  }
  .vibe-score__cta-text p {
    margin-bottom: 20px;
  }
  .vibe-score__accordion-label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .vibe-score__header {
    height: 150px;
  }
  .vibe-score__header-logo {
    height: 80px;
  }
  .vibe-score__hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .vibe-score__title {
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  .vibe-score__subtitle {
    font-size: 18px;
  }
  .vibe-score__subtitle-badge {
    width: 80px;
  }
  .vibe-score__form-section {
    padding: 40px 20px;
  }
  .vibe-score__form-heading {
    font-size: 28px;
  }
  .vibe-score__form-intro {
    font-size: 18px;
  }
  .vibe-score__score-inner {
    padding: 60px 20px;
  }
  .vibe-score__results-heading {
    font-size: 28px;
  }
  .vibe-score__gauge-wrap {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
  }
  .vibe-score__gauge-content {
    gap: 30px;
  }
  .vibe-score__comparison {
    padding: 60px 20px;
  }
  .vibe-score__comparison-heading {
    font-size: 28px;
  }
  .vibe-score__cta-section {
    padding: 40px 20px;
  }
  .vibe-score__cta-heading {
    font-size: 28px;
  }
  .vibe-score__cta-text {
    font-size: 18px;
  }
  .vibe-score__cta-success p {
    font-size: 16px;
  }
  .vibe-score__cta-success-btn {
    width: 100%;
    text-align: center;
  }
  .vibe-score__step--processing {
    padding: 80px 20px;
  }
  .vibe-score__step--error {
    padding: 80px 20px;
  }
  .vibe-score__step--error h2 {
    font-size: 28px;
  }
}
