body[data-site-surface="auth"] .onboarding-guest {
  background: transparent;
}

.conversion-shell--onboarding .ob-section {
  max-inline-size: none;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid rgb(126 157 202 / 16%);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgb(11 21 36 / 94%), rgb(7 13 23 / 90%));
  box-shadow: 0 28px 80px rgb(0 0 0 / 34%);
}

.ob-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin-block-end: 1rem;
}

.ob-step {
  block-size: 0.45rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  transition:
    background 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.ob-step--substep {
  opacity: 0.7;
}

.ob-step--active {
  background: linear-gradient(90deg, #0f66de, #62b5ff);
}

.ob-step--done {
  background: rgb(111 214 155 / 75%);
}

.ob-panel {
  animation: ob-panel-enter 220ms ease-out both;
}

@keyframes ob-panel-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ob-heading {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff2da;
}

.ob-subtext {
  margin: 0 0 1.3rem;
  max-inline-size: 60ch;
  color: #9eb0cb;
  line-height: 1.7;
}

.ob-role-grid,
.ob-usecase-grid,
.ob-plan-grid,
.ob-next-cards {
  display: grid;
  gap: 0.9rem;
}

.ob-role-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ob-usecase-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ob-card,
.ob-check,
.ob-plan,
.ob-plan--free-hero,
.ob-next-card,
.ob-pipeline__stage,
.ob-agreement-fieldset {
  border: 1px solid rgb(126 157 202 / 14%);
  border-radius: 1.05rem;
  background: rgb(255 255 255 / 4%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.ob-card,
.ob-plan,
.ob-plan--free-hero {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.ob-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  min-block-size: 11rem;
  padding: 1.15rem;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.ob-card:hover,
.ob-card--selected {
  border-color: rgb(98 181 255 / 34%);
  background: rgb(98 181 255 / 9%);
  box-shadow: 0 18px 28px rgb(45 120 255 / 14%);
  transform: translateY(-2px);
}

.ob-card__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.ob-card__title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.ob-card__desc {
  display: block;
  color: #9eb0cb;
  line-height: 1.55;
}

.ob-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  color: #c8d8ef;
}

.ob-check:hover,
.ob-check:has(input:checked) {
  border-color: rgb(98 181 255 / 30%);
  background: rgb(98 181 255 / 8%);
}

.ob-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ob-check__box {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid rgb(126 157 202 / 40%);
  border-radius: 0.35rem;
  background: rgb(255 255 255 / 4%);
}

.ob-check:has(input:checked) .ob-check__box {
  border-color: #62b5ff;
  background: #2c89ff;
}

.ob-check:has(input:checked) .ob-check__box::after {
  content: "";
  width: 0.42rem;
  height: 0.28rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.ob-actions,
.ob-actions--end {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.ob-actions {
  justify-content: flex-end;
}

.ob-actions--end {
  justify-content: center;
}

.ob-btn-next {
  min-inline-size: 10.5rem;
}

.ob-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ob-cta-link {
  min-inline-size: 11rem;
  text-align: center;
  text-decoration: none;
}

.ob-divider-text {
  position: relative;
  margin: 1rem 0 0.9rem;
  text-align: center;
  font-size: 0.82rem;
  color: #9eb0cb;
}

.ob-divider-text::before,
.ob-divider-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 8rem);
  height: 1px;
  background: rgb(126 157 202 / 14%);
}

.ob-divider-text::before {
  left: 0;
}

.ob-divider-text::after {
  right: 0;
}

.ob-interval {
  display: inline-flex;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.35rem;
  border: 1px solid rgb(126 157 202 / 18%);
  border-radius: 999px;
  background: rgb(255 255 255 / 4%);
}

.ob-interval__btn {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: transparent;
  color: #9eb0cb;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.ob-interval__btn--active {
  background: linear-gradient(135deg, #0f66de, #2c89ff 60%, #78c5ff);
  color: #fff;
  font-weight: 700;
}

.ob-interval__save {
  margin-left: 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.ob-note {
  margin: 0.55rem 0 1rem;
  color: rgb(158 176 203 / 78%);
  font-size: 0.82rem;
}

.ob-note--center {
  text-align: center;
}

.ob-free-hero {
  margin-bottom: 0.85rem;
}

.ob-plan--free-hero {
  width: 100%;
  display: grid;
  gap: 0.28rem;
  padding: 1.25rem;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background: radial-gradient(circle at top right, rgb(111 214 155 / 12%), transparent 30%), rgb(111 214 155 / 5%);
}

.ob-plan--free-hero:hover,
.ob-plan--free-hero.ob-plan--selected {
  border-color: rgb(111 214 155 / 45%);
  box-shadow: 0 18px 30px rgb(111 214 155 / 12%);
}

.ob-plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.ob-section--wide .ob-plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.ob-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-height: 10rem;
  padding: 1rem;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.ob-plan:hover,
.ob-plan--selected {
  border-color: rgb(98 181 255 / 34%);
  background: rgb(98 181 255 / 10%);
  box-shadow: 0 18px 30px rgb(45 120 255 / 14%);
  transform: translateY(-2px);
}

.ob-plan--featured {
  border-color: rgb(98 181 255 / 34%);
  background: radial-gradient(circle at top right, rgb(98 181 255 / 12%), transparent 30%), rgb(255 255 255 / 5%);
}

.ob-plan__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f66de, #2c89ff 60%, #78c5ff);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.ob-plan__badge--green {
  background: linear-gradient(135deg, #1a7a4a, #2daa6f 60%, #6fd69b);
}

.ob-plan__name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.ob-plan__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #62b5ff;
}

.ob-plan__price-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9eb0cb;
}

.ob-plan--free-hero .ob-plan__price {
  color: #6fd69b;
  font-size: 1.7rem;
}

.ob-plan__desc {
  color: #9eb0cb;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ob-plan__trial {
  margin-top: auto;
  color: rgb(111 214 155 / 88%);
  font-size: 0.74rem;
  font-weight: 700;
}

.ob-agreement-field {
  margin-bottom: 1rem;
}

.ob-agreement-fieldset {
  padding: 1rem 1.05rem;
}

.ob-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.ob-pipeline__stage {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.65rem;
  opacity: 0.38;
}

.ob-pipeline__stage--active {
  opacity: 1;
  border-color: rgb(98 181 255 / 32%);
  background: rgb(98 181 255 / 10%);
  box-shadow: 0 14px 22px rgb(45 120 255 / 12%);
}

.ob-pipeline__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.ob-pipeline__label {
  font-size: 0.73rem;
  line-height: 1.35;
  text-align: center;
  color: #bedcff;
}

.ob-next-cards {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.5rem;
}

.ob-next-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.ob-next-card__icon {
  font-size: 1.55rem;
  line-height: 1;
}

.ob-next-card__title {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
  font-weight: 800;
  color: #fff;
}

.ob-next-card__desc {
  display: block;
  margin: 0;
  color: #9eb0cb;
  line-height: 1.6;
}

@media (width <= 767px) {
  .conversion-shell--onboarding .ob-section {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .ob-role-grid,
  .ob-usecase-grid,
  .ob-plan-grid,
  .ob-next-cards {
    grid-template-columns: 1fr;
  }

  .ob-actions,
  .ob-actions--end {
    flex-direction: column;
    align-items: stretch;
  }

  .ob-cta-link,
  .ob-btn-next {
    min-inline-size: 100%;
  }

  .ob-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ob-panel,
  .ob-card,
  .ob-plan,
  .ob-plan--free-hero,
  .ob-step {
    animation: none;
    transition: none;
  }
}
