.tc-submit-error {
  margin: 0 0 12px;
  color: #b42318;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}
#tc-lead-funnel {
  --tc-blue: #0500ff;
  --tc-ink: #11111d;
  --tc-muted: #69697a;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 12, 28, .54);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
  font-family: inherit;
}

#tc-lead-funnel.tc-open {
  opacity: 1;
  visibility: visible;
}

#tc-lead-funnel.tc-direct-open,
#tc-lead-funnel.tc-direct-open .tc-funnel-shell {
  transition: none;
}

#tc-lead-funnel.tc-direct-open .tc-funnel-shell {
  transform: none;
}

#tc-lead-funnel * {
  box-sizing: border-box;
}

.tc-funnel-shell {
  width: min(100%, 610px);
  max-height: min(820px, calc(100vh - 32px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20, 20, 50, .09);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(10, 8, 60, .24);
  transform: translateY(14px) scale(.985);
  transition: transform .28s cubic-bezier(.2, .85, .25, 1);
}

.tc-open .tc-funnel-shell {
  transform: none;
}

.tc-funnel-head {
  position: relative;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #ededf4;
}

.tc-funnel-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--tc-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.tc-funnel-brand-mark {
  width: 22px;
  height: 25px;
  background: linear-gradient(145deg, #1ab79d 0 42%, #0648de 43% 72%, #0800ee 73%);
  clip-path: polygon(50% 0, 100% 13%, 92% 68%, 50% 100%, 8% 68%, 0 13%);
}

.tc-funnel-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f4f4f9;
  color: #272735;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background .18s ease, transform .18s ease;
}

.tc-funnel-close:hover {
  background: #ebebf4;
  transform: rotate(4deg);
}

.tc-funnel-progress {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.tc-funnel-progress i {
  height: 4px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e9f1;
}

.tc-funnel-progress i::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--tc-blue);
  transition: width .35s ease;
}

.tc-funnel-progress i.tc-done::after {
  width: 100%;
}

.tc-funnel-body {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 28px 28px 30px;
}

.tc-funnel-stage {
  animation: tcFunnelIn .28s ease both;
}

.tc-funnel-body.tc-instant .tc-funnel-stage {
  animation: none;
}

@keyframes tcFunnelIn {
  from { opacity: 0; transform: translateX(10px); }
}

.tc-funnel-kicker {
  margin: 0 0 8px;
  color: var(--tc-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tc-funnel-title {
  margin: 0;
  color: var(--tc-ink);
  font-size: clamp(25px, 5vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.tc-funnel-copy {
  margin: 12px 0 24px;
  color: var(--tc-muted);
  font-size: 15px;
  line-height: 1.5;
}

.tc-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.tc-option {
  min-height: 74px;
  padding: 16px;
  border: 1.5px solid #e5e5ee;
  border-radius: 16px;
  background: #fff;
  color: var(--tc-ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.tc-option:hover {
  transform: translateY(-2px);
  border-color: #b8b5ff;
  box-shadow: 0 8px 22px rgba(30, 24, 130, .08);
}

.tc-option.tc-selected {
  border-color: var(--tc-blue);
  background: #f1f0ff;
  color: var(--tc-blue);
  box-shadow: inset 0 0 0 1px var(--tc-blue);
}

.tc-storage-types {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tc-storage-types .tc-option {
  min-height: 96px;
  text-align: center;
}

.tc-logo-stack {
  display: flex;
  justify-content: center;
  margin: 0 0 11px;
}

.tc-brand-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-left: -5px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 16, 40, .14);
}

.tc-brand-icon:first-child {
  margin-left: 0;
}

.tc-brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tc-brand-ledger {
  background: #111;
}

.tc-brand-ledger img {
  width: 64%;
  height: 64%;
  filter: invert(1);
}

.tc-brand-trustwallet img {
  width: 76%;
  height: 76%;
}

.tc-change-storage {
  margin: -5px 0 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--tc-blue);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.tc-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 1px 2px 3px;
}

.tc-provider-search {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.tc-provider-search input {
  width: 100%;
  height: 50px;
  padding: 0 42px 0 45px;
  border: 1.5px solid #dfdfe9;
  border-radius: 14px;
  outline: none;
  background: #f8f8fb;
  color: var(--tc-ink);
  font: inherit;
  font-size: 14px;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.tc-provider-search input:focus {
  border-color: var(--tc-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(5, 0, 255, .08);
}

.tc-provider-search input::-webkit-search-cancel-button {
  cursor: pointer;
}

.tc-search-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 15px;
  height: 15px;
  z-index: 1;
  border: 2px solid #6f6f80;
  border-radius: 50%;
  transform: translateY(-57%);
  pointer-events: none;
}

.tc-search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -5px;
  bottom: -3px;
  border-radius: 2px;
  background: #6f6f80;
  transform: rotate(45deg);
}

.tc-provider-continue {
  width: 100%;
  margin-bottom: 15px;
}

.tc-provider-continue span {
  font-weight: 900;
}

.tc-provider-empty {
  margin: 22px 0 4px;
  color: var(--tc-muted);
  font-size: 13px;
  text-align: center;
}

.tc-provider-card {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 8px;
  border: 1.5px solid #e3e3ed;
  border-radius: 16px;
  background: #fff;
  color: var(--tc-ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.tc-provider-card:hover {
  transform: translateY(-2px);
  border-color: #b8b5ff;
  box-shadow: 0 8px 22px rgba(30, 24, 130, .08);
}

.tc-provider-card.tc-selected {
  border-color: var(--tc-blue);
  background: #f1f0ff;
  color: var(--tc-blue);
  box-shadow: inset 0 0 0 1px var(--tc-blue);
}

.tc-provider-card .tc-brand-icon {
  width: 36px;
  height: 36px;
  margin: 0;
}

.tc-other-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0efff;
  color: var(--tc-blue);
  box-shadow: 0 2px 8px rgba(16, 16, 40, .1);
}

.tc-other-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.tc-provider-other {
  border-style: dashed;
}

.tc-custom-provider-field {
  margin-top: 4px;
}

.tc-custom-provider-continue {
  width: 100%;
  margin-top: 24px;
}

.tc-provider-card[hidden] {
  display: none;
}

.tc-funnel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.tc-funnel-primary,
.tc-funnel-secondary {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: transform .16s ease, opacity .16s ease, box-shadow .16s ease;
}

.tc-funnel-primary {
  flex: 1;
  border: 0;
  background: var(--tc-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(5, 0, 255, .22);
}

.tc-funnel-primary:hover:not(:disabled) {
  transform: translateY(-1px);
}

.tc-funnel-primary:disabled {
  opacity: .35;
  cursor: not-allowed;
  box-shadow: none;
}

.tc-funnel-secondary {
  border: 1px solid #dfdfe8;
  background: #fff;
  color: #454553;
}

.tc-contact-form {
  display: grid;
  gap: 16px;
}

.tc-field {
  display: grid;
  gap: 7px;
}

.tc-field > span:first-child {
  color: var(--tc-ink);
  font-size: 13px;
  font-weight: 800;
}

.tc-field input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1.5px solid #dfdfe9;
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--tc-ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.tc-field input::placeholder {
  color: #aaaab7;
}

.tc-field input:focus {
  border-color: var(--tc-blue);
  box-shadow: 0 0 0 4px rgba(5, 0, 255, .08);
}

.tc-field input.tc-input-invalid,
.tc-field input.tc-input-invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .08);
}

.tc-field small {
  color: var(--tc-muted);
  font-size: 11px;
  line-height: 1.3;
}

.tc-field small.tc-field-error {
  color: #dc2626;
  font-weight: 700;
}

.tc-phone-control {
  display: flex;
  height: 54px;
  overflow: hidden;
  border: 1.5px solid #dfdfe9;
  border-radius: 14px;
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.tc-phone-control:focus-within {
  border-color: var(--tc-blue);
  box-shadow: 0 0 0 4px rgba(5, 0, 255, .08);
}

.tc-phone-control.tc-input-invalid,
.tc-phone-control.tc-input-invalid:focus-within {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .08);
}

.tc-country-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0 13px;
  border-right: 1px solid #e5e5ed;
  background: #f7f7fa;
}

.tc-country-prefix b {
  font-size: 20px;
  line-height: 1;
}

.tc-country-prefix strong {
  color: var(--tc-ink);
  font-size: 14px;
}

.tc-phone-control input {
  height: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}

.tc-privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  padding: 11px 13px;
  border-radius: 12px;
  background: #f6f6fb;
  color: #626272;
  font-size: 11px;
  line-height: 1.35;
}

.tc-contact-success {
  padding: 18px 0 4px;
  text-align: center;
}

.tc-success-mark {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 8px auto 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #211dff 0%, #0500e6 100%);
  color: #fff;
  box-shadow:
    0 0 0 8px rgba(5, 0, 255, .07),
    0 18px 40px rgba(5, 0, 255, .24);
}

.tc-success-mark svg {
  width: 49px;
  height: 49px;
  overflow: visible;
}

.tc-success-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tc-contact-success .tc-funnel-copy {
  max-width: 440px;
  margin-right: auto;
  margin-left: auto;
}

.tc-success-button {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 580px) {
  #tc-lead-funnel {
    padding: 16px;
    place-items: center;
  }
  .tc-funnel-shell {
    width: 100%;
    max-height: calc(100dvh - 32px);
    border-radius: 25px;
  }
  .tc-funnel-head { padding: 18px 20px 15px; }
  .tc-funnel-body { padding: 23px 18px 24px; }
  .tc-option-grid { grid-template-columns: 1fr; }
  .tc-storage-types { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tc-storage-types .tc-option { min-height: 86px; padding: 12px 7px; font-size: 12px; }
  .tc-brand-icon { width: 25px; height: 25px; }
  .tc-provider-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tc-provider-card .tc-brand-icon { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  #tc-lead-funnel, .tc-funnel-shell, .tc-funnel-stage { transition: none; animation: none; }
}