.cb-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #22c55e, #8ddc3d);
  color: #0b1118;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cb-brand-logo {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

.cb-top-banner {
  min-height: 3rem;
}

.cb-site-header {
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgb(10 14 18 / 0.96);
  border-top: 1px solid rgb(255 255 255 / 0.04);
  border-bottom: 1px solid rgb(255 255 255 / 0.04);
  backdrop-filter: blur(10px);
}

.cb-lang {
  position: relative;
}

.cb-lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 1.15rem;
  background: rgb(255 255 255 / 0.14);
  color: rgb(241 245 249);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cb-lang-trigger:hover {
  background: rgb(255 255 255 / 0.2);
  transform: translateY(-1px);
}

.cb-lang-trigger:focus-visible {
  outline: 2px solid rgb(34 197 94 / 0.4);
  outline-offset: 2px;
}

.cb-lang-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  min-width: 14rem;
  padding: 0.6rem;
  border-radius: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  background: linear-gradient(180deg, rgb(248 250 252 / 0.98), rgb(239 246 255 / 0.96));
  box-shadow: 0 28px 60px rgb(0 0 0 / 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 60;
}

.cb-lang.is-open .cb-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cb-lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  color: rgb(15 23 42);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.cb-lang-option:hover {
  background: rgb(15 23 42 / 0.06);
}

.cb-lang-option.is-active {
  font-weight: 700;
}

.cb-logo-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.cb-logo-copy small {
  color: rgb(148 163 184);
  font-size: 0.75rem;
}

.cb-order-shell {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.cb-step-panel {
  flex: 1;
  min-height: 0;
}

.cb-step-panel-enter {
  animation: cb-step-panel-in 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-mode-tab {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.cb-mode-tab.is-active {
  background: hsl(var(--twc-primary-highlighted));
  color: hsl(var(--twc-on-primary-highlighted));
}

.cb-mode-tab-sparq {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.cb-mode-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  background: hsl(var(--twc-primary));
  color: hsl(var(--twc-surface));
  font-size: 0.68rem;
  font-weight: 700;
}

.cb-swap-shell {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.cb-widget-heading {
  letter-spacing: -0.02em;
}

.cb-swap-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
  border: 1px solid rgb(71 85 105 / 0.35);
  border-radius: 1rem;
  background: hsl(var(--twc-surface-container));
}

.cb-amount-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  outline: 0;
}

.cb-picker-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgb(71 85 105 / 0.35);
  border-radius: 0.75rem;
  background: hsl(var(--twc-surface-container));
  min-width: 160px;
  max-width: 160px;
  min-height: 3.5rem;
  padding: 0.75rem 0.875rem;
  overflow: hidden;
  text-align: left;
  color: inherit;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

.cb-picker-copy {
  display: inline-flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}

.cb-picker-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 0.04);
}

.cb-quote-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgb(15 23 42 / 0.4);
  border: 1px solid rgb(71 85 105 / 0.35);
  border-radius: 1rem;
}

.cb-quote-label {
  display: block;
  color: rgb(148 163 184);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.cb-mode-note {
  border-radius: 1rem;
  border: 1px solid rgb(34 197 94 / 0.18);
  background: rgb(34 197 94 / 0.08);
  color: rgb(187 247 208);
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cb-popover {
  position: absolute;
  inset: 0;
  z-index: 40;
  background: rgb(2 6 23 / 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cb-popover.is-open {
  opacity: 1;
}

.cb-popover-panel {
  background: rgb(10 14 18 / 0.96);
  border: 1px solid rgb(56 189 248 / 0.2);
  box-shadow: 0 0 0 1px rgb(148 163 184 / 0.08), 0 40px 80px rgb(0 0 0 / 0.6);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-popover.is-open .cb-popover-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cb-filter-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 1rem;
  scrollbar-width: none;
}

.cb-filter-tabs::-webkit-scrollbar {
  display: none;
}

.cb-filter-tab {
  border: 0;
  border-radius: 0.55rem;
  background: hsl(var(--twc-surface));
  color: rgb(226 232 240);
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.cb-filter-tab.is-active {
  background: rgb(22 78 99 / 0.72);
  color: rgb(207 250 254);
}

.cb-details-scroll {
  max-height: 310px;
  overflow: auto;
  padding: 0.25rem;
  margin: -0.25rem -0.25rem 0;
}

.cb-summary-transfer {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cb-summary-asset {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cb-summary-details {
  display: grid;
  gap: 0.7rem;
  margin: 0 0.75rem 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgb(15 23 42 / 0.42);
  border: 1px solid rgb(71 85 105 / 0.28);
}

.cb-summary-details span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  color: rgb(148 163 184);
}

.cb-summary-details strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  word-break: break-word;
}

.cb-summary-stage {
  min-height: 0;
}

.cb-summary-scroll {
  min-height: 0;
  overflow: auto;
  padding-right: 0.125rem;
}

.cb-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.cb-consent-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cb-consent-box {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  border-radius: 0.35rem;
  border: 1px solid rgb(100 116 139 / 0.65);
  background: hsl(var(--twc-surface-container));
}

.cb-consent-input:checked + .cb-consent-box {
  background: hsl(var(--twc-primary));
  border-color: hsl(var(--twc-primary));
  box-shadow: inset 0 0 0 3px hsl(var(--twc-surface));
}

.cb-option-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 348px;
  max-height: 348px;
  padding-right: 0.25rem;
}

.cb-option-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 0.85rem 0.75rem;
  border-radius: 0.8rem;
  background: transparent;
  color: hsl(var(--twc-on-surface));
  cursor: pointer;
  text-align: left;
}

.cb-option-item:hover {
  background: hsl(var(--twc-primary-highlighted) / 0.18);
}

.cb-option-item.is-selected {
  background: hsl(var(--twc-primary-highlighted));
}

.cb-option-main {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.cb-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  flex-shrink: 0;
  overflow: hidden;
}

.cb-option-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  background: rgb(15 23 42 / 0.72);
}

.cb-option-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.cb-option-label {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.cb-option-subtitle {
  font-size: 0.8rem;
  color: rgb(148 163 184);
}

.cb-option-item.is-selected .cb-option-label,
.cb-option-item.is-selected .cb-option-subtitle {
  color: hsl(var(--twc-on-primary-highlighted));
}

.cb-option-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  flex-shrink: 0;
}

.cb-option-empty {
  padding: 1rem;
  color: rgb(148 163 184);
  font-size: 0.9rem;
}

.cb-alert {
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cb-alert-danger {
  background: rgb(127 29 29 / 0.2);
  border: 1px solid rgb(248 113 113 / 0.28);
  color: rgb(254 202 202);
}

.cb-inline-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: white;
}

.cb-inline-brand::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #8ddc3d);
}

.cb-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.12);
  background: white;
  color: rgb(51 65 85);
  font-weight: 700;
  transition: transform 0.15s ease;
}

.cb-social-link:hover {
  transform: translateY(-2px);
}

.cb-social-link img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.cb-social-trustpilot {
  width: 1rem;
  height: 1rem;
}

.cb-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cb-how-showcase {
  max-width: 122rem;
  margin: 0 auto;
  padding: 0 0 2rem;
}

.cb-how-frame {
  padding: 1.45rem;
  border-radius: 2.4rem;
  background: #15191d;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.02);
}

.cb-how-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.65rem;
  border-radius: 1.5rem;
  background: #090d10;
}

.cb-how-tab {
  min-height: 3.9rem;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  color: rgb(209 213 219);
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.cb-how-tab.is-active {
  background: #15191d;
  color: white;
}

.cb-how-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 2rem;
  padding: 2.5rem 0.75rem 0.5rem;
  align-items: center;
}

.cb-how-copy,
.cb-how-media {
  min-width: 0;
}

.cb-how-step-list {
  display: grid;
  gap: 1.9rem;
}

.cb-how-step h2 {
  margin: 0;
  color: rgb(245 245 245);
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.cb-how-step p {
  max-width: 33rem;
  margin: 0.45rem 0 0 2rem;
  color: rgb(201 207 214);
  font-size: clamp(0.98rem, 1.02vw, 1.2rem);
  line-height: 1.45;
}

.cb-how-note-block {
  margin-top: 2.8rem;
}

.cb-how-note-title {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #33c6de;
}

.cb-how-note-title span {
  font-size: clamp(1.25rem, 1.35vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cb-how-note-block p {
  max-width: 31rem;
  margin: 0.8rem 0 0;
  color: #33c6de;
  font-size: clamp(1rem, 1.02vw, 1.2rem);
  line-height: 1.45;
}

.cb-how-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.1rem;
  padding: 1rem 1.45rem;
  border-radius: 1rem;
  background: #38c4d9;
  color: #071018;
  text-decoration: none;
  font-size: clamp(1rem, 1.02vw, 1.2rem);
  font-weight: 700;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cb-how-cta svg {
  flex-shrink: 0;
}

.cb-how-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.cb-how-video-card {
  width: 100%;
}

.cb-how-device {
  width: min(100%, 31rem);
  margin-left: auto;
  padding: 1rem;
  border-radius: 2.35rem;
  background: linear-gradient(180deg, #f4f4f4, #d9d9d9 92%, #bcbcbc);
  box-shadow: 0 18px 60px rgb(0 0 0 / 0.26);
}

.cb-how-video {
  display: block;
  width: 100%;
  border-radius: 1.75rem;
  background: #07090c;
  outline: 1px solid rgb(15 23 42 / 0.26);
}

@media (max-width: 1180px) {
  .cb-how-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.4rem 0.2rem 0.2rem;
  }

  .cb-how-device {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .cb-how-frame {
    padding: 1rem;
    border-radius: 2rem;
  }

  .cb-how-tabs {
    gap: 0.55rem;
    padding: 0.55rem;
    border-radius: 1.3rem;
  }

  .cb-how-tab {
    min-height: 3.4rem;
    font-size: 1rem;
  }

  .cb-how-step-list {
    gap: 2rem;
  }

  .cb-how-step p {
    margin-left: 0;
  }

  .cb-how-note-block {
    margin-top: 2.5rem;
  }

  .cb-how-cta {
    width: 100%;
    justify-content: center;
  }

  .cb-how-device {
    padding: 0.9rem;
    border-radius: 2rem;
  }

  .cb-how-video {
    border-radius: 1.5rem;
  }
}

.cb-summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgb(71 85 105 / 0.35);
  background: rgb(15 23 42 / 0.4);
}

.cb-summary-item span,
.cb-summary-item small,
.cb-step p,
.cb-status-panel span {
  color: rgb(148 163 184);
}

.cb-wallet-text {
  word-break: break-all;
}

.cb-steps {
  display: grid;
  gap: 0.9rem;
}

.cb-step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgb(71 85 105 / 0.35);
  background: rgb(15 23 42 / 0.3);
}

.cb-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: rgb(30 41 59);
  font-weight: 700;
}

.cb-step-active {
  border-color: rgb(34 197 94 / 0.24);
}

.cb-step-error {
  border-color: rgb(248 113 113 / 0.28);
  background: rgb(127 29 29 / 0.15);
}

.cb-status-panel {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgb(15 23 42 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.14);
}

.cb-status-panel strong {
  display: block;
}

.cb-service-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgb(15 23 42 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.18);
  font-size: 0.75rem;
  font-weight: 700;
}

.cb-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cb-service-card,
.cb-service-panel {
  border-radius: 1rem;
  background: rgb(15 23 42 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.15);
}

.cb-service-card {
  padding: 1rem;
}

.cb-service-card span,
.cb-service-panel span {
  display: block;
  font-size: 0.75rem;
  color: rgb(226 232 240 / 0.7);
  margin-bottom: 0.35rem;
}

.cb-service-card strong,
.cb-service-panel strong {
  display: block;
  line-height: 1.5;
}

.cb-service-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.cb-card-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 2rem;
  min-height: 38rem;
  padding: 3.5rem 3.75rem;
  border-radius: 2.25rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  background:
    radial-gradient(circle at 78% 30%, rgb(34 197 94 / 0.1), transparent 18%),
    linear-gradient(180deg, rgb(18 20 24 / 0.98), rgb(18 20 24 / 0.98));
}

.cb-card-copy {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  padding-block: 1rem;
}

.cb-card-copy h2 {
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cb-card-copy p {
  max-width: 31rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

.cb-card-invite {
  padding: 1.15rem 1.6rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.09);
  border-color: rgb(255 255 255 / 0.16);
}

.cb-card-media {
  position: relative;
  min-height: 28rem;
  width: 100%;
}

.cb-card-art {
  position: absolute;
  top: 50%;
  left: 55%;
  width: min(100%, 38rem);
  max-width: none;
  margin: 0;
  transform: translate(-50%, -50%) scale(1.04);
  transform-origin: center;
}

.cb-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.cb-card-brand-copy {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgb(226 232 240);
}

.cb-brand-logo-card {
  width: 3rem;
  height: 3rem;
}

.cb-why-card {
  min-width: 18rem;
  max-width: 18rem;
  min-height: 18rem;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--twc-primary));
  background: hsl(var(--twc-surface));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cb-why-title {
  color: white;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cb-why-text {
  color: rgb(226 232 240);
  font-size: 0.96rem;
  line-height: 1.65;
}

.cb-monitoring-wrap {
  border-radius: 2rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgb(30 41 59 / 0.55), transparent 28%),
    linear-gradient(180deg, rgb(5 10 22 / 0.98), rgb(8 12 24 / 0.98));
  border: 1px solid rgb(71 85 105 / 0.5);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
  overflow: hidden;
}

.cb-monitoring-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cb-monitoring-marquee {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0;
}

.cb-monitoring-marquee::before,
.cb-monitoring-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}

.cb-monitoring-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgb(8 12 24 / 1), rgb(8 12 24 / 0));
}

.cb-monitoring-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgb(8 12 24 / 1), rgb(8 12 24 / 0));
}

.cb-monitoring-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: cb-marquee 32s linear infinite;
}

.cb-monitor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 4.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 0;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.92;
  transition: filter 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.cb-monitor-logo:hover {
  filter: grayscale(0);
  transform: translateY(-2px);
  opacity: 1;
}

.cb-monitor-logo img {
  max-width: 100%;
  max-height: 2rem;
  object-fit: contain;
}

.cb-page-shell {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 76rem;
  margin: 0 auto;
}

.cb-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgb(10 14 24 / 0.98), rgb(12 18 32 / 0.95));
  border: 1px solid rgb(71 85 105 / 0.35);
}

.cb-page-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.14);
  background: rgb(15 23 42 / 0.35);
  color: rgb(226 232 240);
  font-size: 0.78rem;
  font-weight: 700;
}

.cb-page-lead {
  color: rgb(203 213 225);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 42rem;
}

.cb-page-hero-media {
  width: 100%;
  max-width: 32rem;
  margin-left: auto;
}

.cb-page-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cb-page-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.cb-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cb-page-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgb(15 23 42 / 0.38);
  border: 1px solid rgb(71 85 105 / 0.35);
}

.cb-page-card-icon {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.cb-page-card h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cb-page-card p {
  color: rgb(203 213 225);
  line-height: 1.7;
}

.cb-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.cb-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cb-advantage-card {
  padding: 1.6rem;
  border-radius: 1.5rem;
  background: rgb(15 23 42 / 0.3);
  border: 1px solid rgb(71 85 105 / 0.35);
}

.cb-advantage-card strong {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: hsl(var(--twc-primary));
  font-size: 1.85rem;
  font-weight: 800;
}

.cb-advantage-card h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.cb-advantage-card p {
  color: rgb(203 213 225);
  line-height: 1.75;
}

.cb-step-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgb(15 23 42 / 0.28);
  border: 1px solid rgb(71 85 105 / 0.35);
}

.cb-step-card strong {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: hsl(var(--twc-primary));
  font-size: 1.75rem;
  font-weight: 800;
}

.cb-step-card h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cb-step-card p {
  color: rgb(203 213 225);
  line-height: 1.7;
}

.cb-auth-shell {
  max-width: 31rem;
  margin: 0 auto;
}

.cb-auth-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgb(10 14 24 / 0.98), rgb(12 18 32 / 0.95));
  border: 1px solid rgb(71 85 105 / 0.35);
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.28);
}

.cb-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cb-auth-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: rgb(226 232 240);
  font-size: 0.92rem;
}

.cb-auth-form input {
  width: 100%;
  height: 2.9rem;
  padding: 0 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgb(71 85 105 / 0.45);
  background: rgb(15 23 42 / 0.5);
  color: white;
}

.cb-auth-form input:focus {
  outline: 2px solid rgb(34 197 94 / 0.35);
  outline-offset: 0;
}

.cb-auth-alt {
  margin-top: 1rem;
  color: rgb(148 163 184);
  font-size: 0.92rem;
}

.cb-auth-alt a {
  color: white;
  text-decoration: underline;
}

.cb-auth-message {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgb(34 197 94 / 0.12);
  border: 1px solid rgb(34 197 94 / 0.22);
  color: rgb(220 252 231);
  line-height: 1.6;
}

.cb-auth-message.is-error {
  background: rgb(127 29 29 / 0.2);
  border-color: rgb(248 113 113 / 0.28);
  color: rgb(254 202 202);
}

.cb-legal-copy {
  display: grid;
  gap: 1rem;
}

.cb-legal-card {
  padding: 1.4rem 1.5rem;
  border-radius: 1.25rem;
  background: rgb(15 23 42 / 0.28);
  border: 1px solid rgb(71 85 105 / 0.35);
}

.cb-legal-card h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cb-legal-card p {
  color: rgb(203 213 225);
  line-height: 1.75;
}

.cb-about-page {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 5rem;
  overflow-x: clip;
}

.cb-about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  width: 100%;
  padding: 3rem 1.5rem 0;
  text-align: center;
}

.cb-about-intro-logo {
  width: 8.5rem;
  height: auto;
  object-fit: contain;
}

.cb-about-intro-copy {
  max-width: 70rem;
}

.cb-about-intro-copy p {
  color: rgb(229 231 235);
  font-size: clamp(1.4rem, 2vw, 2.05rem);
  line-height: 1.55;
  font-weight: 400;
}

.cb-about-spacer-lg {
  height: 11rem;
}

.cb-about-spacer-md {
  height: 4rem;
}

.cb-about-cards {
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cb-about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.cb-about-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
  border-radius: 1.5rem;
  background: hsl(var(--twc-surface));
}

.cb-about-card-half {
  min-height: 18rem;
  padding: 2.25rem;
}

.cb-about-card-wide {
  min-height: 22rem;
}

.cb-about-card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 1.25rem;
  background: hsl(var(--twc-primary));
}

.cb-about-card-icon {
  width: 3rem;
  height: 3rem;
}

.cb-about-card-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cb-about-card-copy h3 {
  color: rgb(240 240 240);
  font-size: clamp(2rem, 2.3vw, 3.3rem);
  line-height: 1;
  font-weight: 700;
}

.cb-about-card-copy p {
  color: rgb(190 190 190);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 58rem;
}

.cb-about-difference {
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cb-about-difference h2 {
  color: rgb(240 240 240);
  text-align: center;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 4rem;
}

.cb-about-difference {
  padding-top: 1rem;
}

.cb-about-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 4rem;
}

.cb-about-diff-item {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  align-items: flex-start;
  gap: 1.5rem;
}

.cb-about-diff-num {
  color: hsl(var(--twc-primary));
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-top: 1.5rem;
}

.cb-about-diff-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-about-diff-copy h3 {
  color: rgb(240 240 240);
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
}

.cb-about-diff-line {
  display: grid;
  grid-template-columns: 0.18rem 1fr;
  gap: 1rem;
  align-items: start;
}

.cb-about-diff-line span {
  display: block;
  width: 0.18rem;
  height: 2.1rem;
  margin-top: 0.2rem;
  background: hsl(var(--twc-primary));
}

.cb-about-diff-line p {
  color: rgb(190 190 190);
  font-size: 1.02rem;
  line-height: 1.65;
}

.cb-affiliates-page {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 5rem;
  overflow-x: clip;
}

.cb-aff-hero-wrap,
.cb-aff-intro,
.cb-aff-benefits,
.cb-aff-steps {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cb-aff-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem;
  border-radius: 4rem;
  background: hsl(var(--twc-surface));
}

.cb-aff-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.cb-aff-hero-copy h1 {
  color: white;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.05;
  font-weight: 700;
  max-width: 48rem;
}

.cb-aff-hero-copy h2 {
  color: rgb(148 163 184);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  font-weight: 400;
  max-width: 40rem;
}

.cb-aff-hero-media {
  width: 100%;
  max-width: 31rem;
  flex-shrink: 0;
}

.cb-aff-hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cb-aff-spacer-sm {
  height: 3rem;
}

.cb-aff-spacer-lg {
  height: 7rem;
}

.cb-aff-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-aff-intro-copy h3,
.cb-aff-steps h2 {
  color: rgb(240 240 240);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
}

.cb-aff-intro-line,
.cb-aff-step-line {
  display: grid;
  grid-template-columns: 0.18rem 1fr;
  gap: 1rem;
  align-items: start;
}

.cb-aff-intro-line span,
.cb-aff-step-line span {
  display: block;
  width: 0.18rem;
  height: 2rem;
  margin-top: 0.2rem;
  background: hsl(var(--twc-primary));
}

.cb-aff-intro-line p {
  color: rgb(203 213 225);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 56rem;
}

.cb-aff-benefits {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.cb-aff-benefit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.cb-aff-benefit-copy {
  flex: 1;
  padding: 1rem;
}

.cb-aff-benefit-copy h3 {
  color: hsl(var(--twc-secondary));
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cb-aff-benefit-copy h4 {
  color: rgb(229 231 235);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.6;
  font-weight: 400;
  max-width: 52rem;
}

.cb-aff-benefit-art {
  width: 18rem;
  height: 18rem;
  object-fit: contain;
  flex-shrink: 0;
}

.cb-aff-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  text-align: center;
}

.cb-aff-step-layout {
  width: 100%;
  max-width: 88rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cb-aff-step-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.cb-aff-step {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  gap: 1.5rem;
  text-align: left;
}

.cb-aff-step-num {
  color: hsl(var(--twc-primary));
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-top: 1.1rem;
}

.cb-aff-step-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-aff-step-copy h3 {
  color: rgb(240 240 240);
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.cb-aff-step-line p {
  color: rgb(148 163 184);
  font-size: 1rem;
  line-height: 1.65;
}

.cb-aml-page {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.cb-aml-hero {
  padding: 4rem 1.5rem 1rem;
}

.cb-aml-hero h1 {
  color: rgb(240 240 240);
  text-align: center;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 1;
  font-weight: 600;
}

.cb-aml-content {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cb-aml-article {
  max-width: 54rem;
  margin: 0 auto;
  color: rgb(214 214 214);
  font-size: 1rem;
  line-height: 1.8;
}

.cb-aml-article h2 {
  color: rgb(240 240 240);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 2.25rem 0 1rem;
}

.cb-aml-article h3 {
  color: rgb(240 240 240);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
  margin: 1.5rem 0 0.6rem;
}

.cb-aml-article p,
.cb-aml-article ul {
  margin: 0.85rem 0;
}

.cb-aml-article ul {
  padding-left: 1.35rem;
}

.cb-aml-article li {
  margin: 0.4rem 0;
}

.cb-aml-article hr {
  border: 0;
  border-top: 1px solid rgb(115 115 115 / 0.35);
  margin: 2rem 0;
}

.cb-aml-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1rem 0;
}

.cb-aml-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 36rem;
}

.cb-aml-table th,
.cb-aml-table td {
  border: 1px solid rgb(115 115 115 / 0.35);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.cb-aml-table th {
  color: white;
  font-weight: 700;
  background: rgb(15 23 42 / 0.35);
}

@keyframes cb-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes cb-step-panel-in {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .cb-picker-trigger {
    min-width: 148px;
    max-width: 148px;
    gap: 0.5rem;
  }

  .cb-quote-box,
  .cb-summary-grid,
  .cb-service-grid {
    grid-template-columns: 1fr;
  }

  .cb-option-list {
    max-height: 420px;
  }

  .cb-summary-scroll {
    overflow: visible;
    padding-right: 0;
  }

  .cb-monitoring-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cb-why-card {
    min-width: 16rem;
    max-width: 16rem;
    min-height: 16rem;
    padding: 1.5rem;
  }

  .cb-card-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding: 2rem 1.5rem;
    border-radius: 1.75rem;
  }

  .cb-card-copy {
    max-width: 100%;
    text-align: left;
  }

  .cb-card-copy h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .cb-card-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .cb-card-invite {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .cb-card-media {
    min-height: 13rem;
  }

  .cb-card-art {
    top: 50%;
    left: 50%;
    width: min(100%, 19rem);
    transform: translate(-50%, -50%) scale(1);
  }

  .cb-page-hero,
  .cb-page-grid,
  .cb-step-grid,
  .cb-advantage-grid {
    grid-template-columns: 1fr;
  }

  .cb-page-hero {
    padding: 1.5rem;
  }

  .cb-auth-card {
    padding: 1.5rem;
  }

  .cb-about-spacer-lg {
    height: 5rem;
  }

  .cb-about-spacer-md {
    height: 4rem;
  }

  .cb-about-card-grid,
  .cb-about-diff-grid,
  .cb-aff-step-pair {
    grid-template-columns: 1fr;
  }

  .cb-about-card {
    padding: 1.75rem;
    min-height: auto;
  }

  .cb-about-card-icon-wrap {
    width: 5rem;
    height: 5rem;
  }

  .cb-about-difference h2 {
    margin-bottom: 2rem;
  }

  .cb-about-diff-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cb-about-diff-num {
    transform: none;
    margin-top: 0;
  }

  .cb-aff-hero,
  .cb-aff-benefit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cb-aff-hero {
    padding: 2rem;
    border-radius: 2rem;
  }

  .cb-aff-benefits {
    gap: 3rem;
  }

  .cb-aff-benefit-copy {
    padding: 0;
  }

  .cb-aff-benefit-art {
    width: 12rem;
    height: 12rem;
    align-self: center;
  }

  .cb-aff-step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cb-aff-step-num {
    transform: none;
    margin-top: 0;
  }

  .cb-aff-spacer-lg {
    height: 4rem;
  }

  .cb-aml-hero {
    padding-top: 2rem;
  }

  .cb-aml-article {
    max-width: 100%;
  }

  .cb-aml-table {
    min-width: 28rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cb-card-banner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    min-height: auto;
    padding: 2.5rem 2.25rem;
  }

  .cb-card-copy {
    max-width: 42rem;
  }

  .cb-card-media {
    min-height: 19rem;
  }

  .cb-card-art {
    top: 52%;
    left: 54%;
    width: min(100%, 28rem);
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.cb-support {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cb-support-pill {
  min-width: 300px;
  max-width: min(86vw, 420px);
  padding: 22px 32px;
  border: 0;
  border-top-left-radius: 18px;
  border-top-right-radius: 42px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  background:
    radial-gradient(circle at top right, #1ed12f 0, #1ed12f 20%, transparent 21%),
    linear-gradient(90deg, #0d4b79 0%, #63cfd2 100%);
  color: #fff;
  font-size: 1rem;
  text-align: left;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.35);
}

.cb-support.is-open .cb-support-pill,
.cb-support.is-open .cb-support-launcher {
  display: none;
}

.cb-support-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1cc4cd, #17a9a5);
  color: #fff;
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.38);
}

.cb-support-panel {
  width: min(92vw, 390px);
}

.cb-support-panel.hidden {
  display: none;
}

.cb-support-panel-shell {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 44px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgb(0 0 0 / 0.42);
}

.cb-support-top {
  position: relative;
  padding: 30px 24px 22px 28px;
  background:
    radial-gradient(circle at top right, #1ed12f 0, #1ed12f 17%, transparent 18%),
    linear-gradient(90deg, rgb(20 82 122 / 0.96), rgb(112 214 214 / 0.96));
}

.cb-support-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgb(255 255 255 / 0.08) 0, rgb(255 255 255 / 0.08) 3%, transparent 3.2%),
    radial-gradient(circle at 42% 28%, rgb(255 255 255 / 0.07) 0, rgb(255 255 255 / 0.07) 4%, transparent 4.2%),
    radial-gradient(circle at 74% 52%, rgb(255 255 255 / 0.06) 0, rgb(255 255 255 / 0.06) 3%, transparent 3.2%);
  opacity: 0.9;
  pointer-events: none;
}

.cb-support-agent-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.cb-support-avatar-wrap {
  position: relative;
  width: 66px;
  height: 66px;
}

.cb-support-avatar,
.cb-support-bubble-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.cb-support-online-dot {
  position: absolute;
  right: 2px;
  top: 4px;
  width: 10px;
  height: 10px;
  border: 2px solid #0f5d79;
  border-radius: 999px;
  background: #1ed12f;
}

.cb-support-agent-name {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.cb-support-agent-status {
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.86);
}

.cb-support-close {
  position: absolute;
  left: 16px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.9);
  color: #274254;
  box-shadow: 0 8px 22px rgb(0 0 0 / 0.14);
}

.cb-support-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
  max-height: 430px;
  padding: 24px 18px 18px;
  overflow-y: auto;
  background: linear-gradient(180deg, #fff, #f9fbfc);
}

.cb-support-date {
  padding-left: 72px;
  color: #97a0ae;
  font-size: 0.95rem;
}

.cb-support-message-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.cb-support-message-row-client {
  justify-content: flex-end;
}

.cb-support-bubble-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.cb-support-bubble {
  max-width: 270px;
  padding: 18px 18px 12px;
  border-radius: 22px;
  font-size: 1rem;
  line-height: 1.55;
  box-shadow: 0 8px 18px rgb(26 35 53 / 0.08);
}

.cb-support-bubble p {
  color: #2c3748;
}

.cb-support-bubble-agent {
  background: #f0f1f4;
  border-top-left-radius: 8px;
}

.cb-support-bubble-client {
  margin-left: auto;
  background: linear-gradient(135deg, #156da2, #2da5bc);
  color: #fff;
  border-bottom-right-radius: 8px;
}

.cb-support-bubble-client p,
.cb-support-bubble-client .cb-support-time {
  color: #fff;
}

.cb-support-time {
  display: block;
  margin-top: 10px;
  text-align: right;
  color: #9ca3af;
  font-size: 0.78rem;
}

.cb-support-quick-replies {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding-left: 52px;
}

.cb-support-quick {
  padding: 12px 22px;
  border: 2px solid #6987a4;
  border-radius: 999px;
  background: #fff;
  color: #607b99;
  font-size: 0.95rem;
  box-shadow: 0 8px 14px rgb(26 35 53 / 0.08);
}

.cb-support-input-wrap {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid #d9e0e6;
  background: #fff;
}

.cb-support-input {
  width: 100%;
  min-width: 0;
  border: 0;
  font-size: 1.05rem;
  color: #334155;
  outline: none;
}

.cb-support-input::placeholder {
  color: #9ca3af;
}

.cb-support-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: #e8ebef;
  color: #a9b2bf;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cb-support-send.is-active {
  background: linear-gradient(135deg, #1cc4cd, #17a9a5);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .cb-support {
    right: 12px;
    left: 12px;
    bottom: 12px;
    align-items: stretch;
  }

  .cb-support-pill {
    min-width: 0;
    max-width: none;
    width: 100%;
    padding: 18px 24px;
  }

  .cb-support-launcher {
    align-self: flex-end;
    width: 58px;
    height: 58px;
  }

  .cb-support-panel {
    width: 100%;
  }

  .cb-support-agent-name {
    font-size: 1.7rem;
  }

  .cb-support-body {
    min-height: 300px;
    max-height: 52vh;
  }
}

/* Support chat visual override closer to the original widget */
.cb-support {
  right: 18px;
  bottom: 0;
  gap: 0;
  position: fixed;
  --cb-support-accent: #2de2db;
  --cb-support-accent-2: #1386b7;
  --cb-support-green: #1fe03b;
  --cb-support-ink: #2e3a4a;
  --cb-support-muted: #8f9bad;
  padding-bottom: env(safe-area-inset-bottom, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.cb-support-pill {
  align-self: flex-end;
  min-width: 0;
  width: 292px;
  max-width: min(62vw, 292px);
  padding: 13px 20px;
  border-top-left-radius: 22px;
  border-top-right-radius: 56px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background:
    radial-gradient(circle at 100% 0, #1de11d 0, #1de11d 26%, transparent 27%),
    linear-gradient(90deg, #155986 0%, #69d0d3 100%);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  box-shadow:
    0 22px 60px rgb(8 31 54 / 0.42),
    inset 0 1px 0 rgb(255 255 255 / 0.18);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  animation: cb-support-pill-float 4.6s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.cb-support-pill:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 72px rgb(8 31 54 / 0.5),
    inset 0 1px 0 rgb(255 255 255 / 0.24);
  filter: saturate(1.06);
}

.cb-support-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(92vw, 430px);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: right bottom;
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.32s ease;
}

.cb-support-panel.hidden {
  display: block;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(26px) scale(0.94);
}

.cb-support-panel.is-active {
  visibility: visible;
  pointer-events: auto;
}

.cb-support-panel-shell {
  isolation: isolate;
  position: relative;
  border-top-left-radius: 24px;
  border-top-right-radius: 36px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.95), rgb(247 250 253 / 0.98));
  border: 1px solid rgb(214 226 233 / 0.9);
  box-shadow:
    0 30px 90px rgb(7 27 51 / 0.42),
    0 10px 28px rgb(26 35 53 / 0.12);
}

.cb-support-panel-glow {
  position: absolute;
  inset: auto -16% -12% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(35 214 209 / 0.16), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.cb-support-top {
  min-height: 96px;
  padding: 20px 20px 18px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, #1de11d 0, #1de11d 24%, transparent 25%),
    radial-gradient(circle at 72% 34%, rgb(255 255 255 / 0.12) 0, rgb(255 255 255 / 0.12) 3.5%, transparent 3.8%),
    radial-gradient(circle at 83% 54%, rgb(255 255 255 / 0.1) 0, rgb(255 255 255 / 0.1) 2.5%, transparent 2.8%),
    linear-gradient(90deg, #14557f 0%, #72d1d4 100%);
}

.cb-support-top::after {
  display: none;
}

.cb-support-top-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.cb-support-top-pattern span {
  position: absolute;
  border: 2px solid rgb(11 82 116 / 0.26);
  border-radius: 999px;
  animation: cb-support-drift 10s linear infinite;
}

.cb-support-top-pattern span:nth-child(1) {
  top: 14px;
  right: 56px;
  width: 88px;
  height: 88px;
}

.cb-support-top-pattern span:nth-child(2) {
  top: 38px;
  right: 148px;
  width: 36px;
  height: 36px;
  animation-duration: 8s;
}

.cb-support-top-pattern span:nth-child(3) {
  top: 88px;
  right: 214px;
  width: 62px;
  height: 20px;
  border-radius: 999px;
}

.cb-support-top-pattern span:nth-child(4) {
  top: 30px;
  right: 246px;
  width: 20px;
  height: 78px;
}

.cb-support-top-pattern span:nth-child(5) {
  top: 70px;
  right: 312px;
  width: 52px;
  height: 52px;
  animation-duration: 11s;
}

.cb-support-top-pattern span:nth-child(6) {
  top: 24px;
  right: -10px;
  width: 122px;
  height: 122px;
}

.cb-support-close {
  left: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  background: rgb(255 255 255 / 0.86);
  color: #2f4657;
  border: 1px solid rgb(95 111 133 / 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cb-support-close:hover {
  transform: rotate(90deg);
  background: #fff;
  box-shadow: 0 12px 26px rgb(0 0 0 / 0.14);
}

.cb-support-agent-row {
  position: relative;
  z-index: 1;
  padding-left: 34px;
  gap: 12px;
}

.cb-support-avatar-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 999px;
  box-shadow:
    0 16px 28px rgb(8 52 74 / 0.24),
    0 0 0 5px rgb(255 255 255 / 0.18);
}

.cb-support-online-dot {
  right: 3px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-width: 2px;
  border-color: #1b5a7f;
}

.cb-support-agent-name {
  font-size: 1.7rem;
  font-weight: 700;
}

.cb-support-agent-status {
  margin-top: 3px;
  font-size: 0.88rem;
  color: rgb(255 255 255 / 0.95);
}

.cb-support-agent-meta {
  margin-top: 2px;
  font-size: 0.74rem;
  color: rgb(240 251 255 / 0.78);
}

.cb-support-body {
  min-height: 320px;
  max-height: 440px;
  padding: 16px 14px 14px;
  gap: 14px;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at right bottom, rgb(49 214 204 / 0.08), transparent 28%),
    linear-gradient(180deg, #fff, #ffffff);
  scrollbar-width: thin;
  scrollbar-color: rgb(174 189 204 / 0.9) transparent;
}

.cb-support-body::-webkit-scrollbar {
  width: 8px;
}

.cb-support-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgb(183 195 207 / 0.9);
}

.cb-support-date {
  padding-left: 66px;
  font-size: 0.7rem;
  color: #98a2b3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cb-support-bubble-avatar {
  width: 36px;
  height: 36px;
  box-shadow: 0 10px 20px rgb(33 49 73 / 0.15);
}

.cb-support-bubble {
  max-width: 300px;
  padding: 16px 16px 12px;
  border-radius: 18px;
  border: 1px solid rgb(225 231 237 / 0.9);
  box-shadow:
    0 14px 30px rgb(22 38 61 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.5);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.cb-support-bubble p {
  font-size: 0.96rem;
  line-height: 1.5;
}

.cb-support-bubble-agent {
  background: linear-gradient(180deg, #f7f7fa 0%, #eef1f4 100%);
  border-top-left-radius: 8px;
}

.cb-support-bubble-client {
  background:
    radial-gradient(circle at top right, rgb(255 255 255 / 0.2), transparent 24%),
    linear-gradient(135deg, #1577ab, #2cb0c7);
  border-bottom-right-radius: 8px;
  border-color: rgb(23 124 171 / 0.75);
}

.cb-support-time {
  margin-top: 10px;
  font-size: 0.7rem;
}

.cb-support-message-row-enter {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.cb-support-message-row {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cb-support-message-row:hover .cb-support-bubble {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgb(22 38 61 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.5);
}

.cb-support-quick-replies {
  padding-left: 48px;
  justify-content: flex-start;
  gap: 8px;
}

.cb-support-quick {
  padding: 10px 16px;
  border: 1.5px solid #6e89a3;
  color: #64809d;
  font-size: 0.82rem;
  background:
    linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.cb-support-quick:hover {
  transform: translateY(-2px);
  color: #32587c;
  border-color: #4e91bc;
  box-shadow: 0 10px 20px rgb(26 35 53 / 0.1);
}

.cb-support-input-wrap {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 46px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.96), rgb(249 251 253 / 0.98));
  border-top: 1px solid rgb(219 226 233 / 0.9);
}

.cb-support-input-tools {
  display: none;
}

.cb-support-input {
  font-size: 0.95rem;
  min-height: 32px;
  background: transparent;
}

.cb-support-send {
  width: 46px;
  height: 46px;
  background: #eef1f5;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
}

.cb-support-send.is-active {
  background:
    radial-gradient(circle at 28% 28%, rgb(255 255 255 / 0.24), transparent 34%),
    linear-gradient(135deg, #1a78ac, #73ddd6);
  color: #fff;
  box-shadow:
    0 14px 26px rgb(24 111 158 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.22);
}

.cb-support-send.is-active:hover {
  transform: translateY(-2px) scale(1.03);
}

.cb-support-bubble-form {
  padding: 10px;
}

.cb-support-request-card {
  display: grid;
  gap: 10px;
  min-width: min(100%, 260px);
  padding: 4px;
}

.cb-support-request-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.cb-support-request-field {
  display: grid;
  gap: 6px;
}

.cb-support-request-field span {
  font-size: 0.76rem;
  color: #64748b;
}

.cb-support-request-field input,
.cb-support-request-field textarea {
  width: 100%;
  border: 1px solid #d7dee8;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  padding: 10px 12px;
  color: #243447;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.cb-support-request-field input:focus,
.cb-support-request-field textarea:focus {
  border-color: #4db8d2;
  box-shadow: 0 0 0 4px rgb(77 184 210 / 0.16);
}

.cb-support-request-field textarea {
  resize: vertical;
  min-height: 84px;
}

.cb-support-request-error {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgb(239 68 68 / 0.12);
  color: #b91c1c;
  font-size: 0.85rem;
}

.cb-support-request-submit {
  justify-self: start;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1577ab, #2cb0c7);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 22px rgb(20 109 156 / 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.cb-support-request-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgb(20 109 156 / 0.3);
  filter: saturate(1.08);
}

.cb-support-bubble-typing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.cb-support-bubble-typing span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9aa4b4 0%, #c3c9d2 100%);
  animation: cb-support-typing 1.1s infinite ease-in-out;
}

.cb-support-bubble-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.cb-support-bubble-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cb-support-pill-float {
  0%,
  100% {
    transform: translateY(4px);
  }

  50% {
    transform: translateY(0);
  }
}

@keyframes cb-support-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -6px, 0) rotate(6deg);
  }
}

@keyframes cb-support-typing {
  0%,
  80%,
  100% {
    transform: translateY(0) scale(0.92);
    opacity: 0.5;
  }

  40% {
    transform: translateY(-4px) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cb-support-pill,
  .cb-support-top-pattern span,
  .cb-support-bubble-typing span,
  .cb-step-panel-enter {
    animation: none;
  }

  .cb-support-pill,
  .cb-support-panel,
  .cb-popover,
  .cb-popover-panel,
  .cb-support-message-row,
  .cb-support-quick,
  .cb-support-send,
  .cb-support-request-submit,
  .cb-support-close {
    transition: none;
  }
}

@media (max-width: 767px) {
  .cb-support {
    right: 8px;
    left: 8px;
    align-items: flex-end;
  }

  .cb-support-pill {
    width: min(84vw, 254px);
    max-width: min(84vw, 254px);
    padding: 12px 16px;
    border-top-left-radius: 20px;
    border-top-right-radius: 38px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 0.78rem;
  }

  .cb-support-panel {
    width: min(calc(100vw - 16px), 360px);
    right: 0;
    left: auto;
    bottom: calc(100% + 8px);
  }

  .cb-support-panel.hidden {
    transform: translateY(18px) scale(0.98);
  }

  .cb-support-agent-row {
    padding-left: 22px;
  }

  .cb-support-avatar-wrap {
    width: 46px;
    height: 46px;
  }

  .cb-support-agent-name {
    font-size: 1.45rem;
  }

  .cb-support-agent-status {
    font-size: 0.82rem;
  }

  .cb-support-agent-meta {
    font-size: 0.7rem;
  }

  .cb-support-body {
    min-height: 290px;
    max-height: 54vh;
    padding: 14px 12px;
  }

  .cb-support-date,
  .cb-support-quick-replies {
    padding-left: 0;
  }

  .cb-support-bubble {
    max-width: calc(100vw - 96px);
    padding: 14px 14px 10px;
  }

  .cb-support-bubble p {
    font-size: 0.92rem;
  }

  .cb-support-top-pattern span:nth-child(n + 4) {
    display: none;
  }

  .cb-support-input-wrap {
    grid-template-columns: 1fr 46px;
    gap: 10px;
  }

  .cb-support-send {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 560px) {
  .cb-support-pill {
    width: min(calc(100vw - 16px), 238px);
    max-width: min(calc(100vw - 16px), 238px);
    padding: 11px 14px;
    font-size: 0.74rem;
  }

  .cb-support-panel {
    width: calc(100vw - 16px);
  }

  .cb-support-panel-shell {
    border-top-left-radius: 20px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .cb-support-top {
    min-height: 88px;
    padding: 16px 16px 14px;
  }

  .cb-support-close {
    left: 8px;
    top: 8px;
    width: 34px;
    height: 34px;
  }

  .cb-support-agent-row {
    padding-left: 20px;
    gap: 10px;
  }

  .cb-support-avatar-wrap {
    width: 42px;
    height: 42px;
  }

  .cb-support-agent-name {
    font-size: 1.28rem;
  }

  .cb-support-agent-status {
    font-size: 0.78rem;
  }

  .cb-support-agent-meta {
    display: none;
  }

  .cb-support-body {
    min-height: 272px;
    max-height: 50vh;
    padding: 12px 10px;
    gap: 12px;
  }

  .cb-support-bubble {
    max-width: calc(100vw - 84px);
    padding: 12px 12px 9px;
  }

  .cb-support-bubble p {
    font-size: 0.88rem;
  }

  .cb-support-quick {
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .cb-support-input-wrap {
    padding: 10px;
  }

  .cb-support-input {
    font-size: 0.9rem;
  }

  .cb-support-send {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 420px) {
  .cb-support {
    right: 6px;
    left: 6px;
  }

  .cb-support-pill {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    padding: 11px 14px;
    font-size: 0.74rem;
  }

  .cb-support-panel {
    width: calc(100vw - 12px);
  }

  .cb-support-top-pattern {
    display: none;
  }

  .cb-support-body {
    max-height: 48vh;
  }

  .cb-support-bubble {
    max-width: calc(100vw - 72px);
  }

  .cb-support-quick-replies {
    gap: 6px;
  }
}
