.tc-legacy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.tc-legacy-sheet {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 10003;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(26, 26, 26, 0.1);
  font-family: Manrope, sans-serif;
}
.tc-legacy-head {
  margin-bottom: 25px;
  position: relative;
}
.tc-legacy-back {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.tc-legacy-back:hover {
  color: #0500ff;
  transform: translateX(-2px);
}
.tc-legacy-head h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.tc-legacy-head h2,
.tc-legacy-head p {
  text-align: center;
  font-family: Manrope, sans-serif;
}
.tc-legacy-head p {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}
.tc-legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tc-legacy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(255, 255, 255, 0.5);
}
.tc-legacy-item:hover {
  background: rgba(5, 0, 255, 0.05);
  border-color: rgba(5, 0, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 0, 255, 0.2);
}
.tc-legacy-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: transparent;
}
.tc-legacy-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}
.tc-legacy-name {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.8);
  text-align: center;
  font-weight: 500;
  word-break: break-word;
  font-family: Manrope, sans-serif;
}
@media (max-width: 768px) {
  .tc-legacy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .tc-legacy-icon {
    width: 40px;
    height: 40px;
  }
  .tc-legacy-name {
    font-size: 10px;
  }
  .tc-legacy-sheet {
    padding: 20px;
  }
  .tc-legacy-item {
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .tc-legacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.loading-modal-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.8);
  z-index: 10004;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loading-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10005;
  font-family: Manrope, sans-serif;
}
@keyframes modalSlideIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loading-modal.step-modal {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(50px);
  border-radius: 12px;
  padding: 48px 40px 36px;
  min-width: 360px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(26, 26, 26, 0.1);
}
.step-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  color: rgba(26, 26, 26, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.step-modal-close-btn:hover {
  background: rgba(5, 0, 255, 0.05);
  border-color: rgba(5, 0, 255, 0.2);
  color: #0500ff;
}
.step-modal-close-btn:active {
  transform: scale(0.95);
}
.loading-modal.error-modal {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 12px;
  padding: 48px 40px;
  min-width: 360px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(26, 26, 26, 0.1);
}
.loading-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.step-loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}
.step-loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: loaderRotate 8s linear infinite;
}
@keyframes loaderRotate {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.step-loader-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.step-loader-track {
  stroke: rgba(26, 26, 26, 0.08);
}
.step-loader-progress {
  stroke: #0500ff;
  stroke-linecap: round;
  transition: stroke-dasharray 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(5, 0, 255, 0.3));
}
.warning-mode .step-loader-progress {
  stroke: #ffb800;
  filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.5));
}
.step-loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0500ff;
  background: rgba(5, 0, 255, 0.08);
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}
.warning-mode .step-loader-icon {
  color: #ffb800;
  background: rgba(255, 184, 0, 0.08);
}
@keyframes iconPulse {
  0%,
  to {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(5, 0, 255, 0.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 0 20px 4px rgba(5, 0, 255, 0.15);
  }
}
.step-counter {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.step-current {
  font-size: 24px;
  font-weight: 700;
  color: #0500ff;
  line-height: 1;
}
.warning-mode .step-current {
  color: #ffb800;
}
.step-separator {
  color: rgba(26, 26, 26, 0.3);
}
.step-separator,
.step-total {
  font-size: 16px;
  font-weight: 500;
}
.step-total {
  color: rgba(26, 26, 26, 0.4);
}
.step-title {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 28px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.step-progress {
  gap: 0;
  margin-bottom: 24px;
}
.step-dot,
.step-progress {
  display: flex;
  align-items: center;
}
.step-dot {
  position: relative;
  width: 12px;
  height: 12px;
  justify-content: center;
}
.step-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.15);
  border: 2px solid rgba(26, 26, 26, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-dot.active .step-dot-inner {
  background: #0500ff;
  border-color: #0500ff;
  box-shadow: 0 0 12px rgba(5, 0, 255, 0.3);
}
.warning-mode .step-dot.active .step-dot-inner {
  background: #ffb800;
  border-color: #ffb800;
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
}
.step-dot.current .step-dot-inner {
  transform: scale(1.2);
}
.step-dot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0500ff;
  animation: dotPulse 1.5s ease-out infinite;
}
.warning-mode .step-dot-pulse {
  background: #ffb800;
}
@keyframes dotPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.step-line {
  width: 48px;
  height: 2px;
  background: rgba(26, 26, 26, 0.1);
  margin: 0 8px;
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.step-line.active {
  background: rgba(5, 0, 255, 0.3);
}
.step-line.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #0500ff, transparent);
  animation: lineShimmer 1.5s ease-in-out infinite;
}
.warning-mode .step-line.active {
  background: rgba(255, 184, 0, 0.3);
}
.warning-mode .step-line.active:after {
  background: linear-gradient(90deg, transparent, #ffb800, transparent);
}
@keyframes lineShimmer {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.step-help-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(26, 26, 26, 0.04);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  color: rgba(26, 26, 26, 0.6);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 20px;
}
.step-help-btn:hover {
  background: rgba(5, 0, 255, 0.08);
  border-color: rgba(5, 0, 255, 0.2);
  color: #0500ff;
}
.warning-mode .step-help-btn:hover {
  background: rgba(255, 184, 0, 0.08);
  border-color: rgba(255, 184, 0, 0.2);
  color: #ffb800;
}
.step-help-btn svg {
  opacity: 0.6;
  transition: all 0.25s ease;
}
.step-help-btn:hover svg {
  opacity: 1;
  transform: translateX(2px);
}
.step-security {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(26, 26, 26, 0.35);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step-security svg {
  color: rgba(5, 0, 255, 0.5);
}
.warning-mode .step-security svg {
  color: rgba(255, 184, 0, 0.5);
}
.error-icon {
  margin-bottom: 20px;
  animation: errorShake 0.5s ease-in-out;
}
@keyframes errorShake {
  0%,
  to {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-8px);
  }
  40% {
    transform: translateX(8px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}
.loading-modal-title {
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ff4444;
  margin: 0 0 12px;
}
.loading-modal-message {
  font-weight: 400;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  margin: 0 0 28px;
}
.loading-modal-close,
.loading-modal-message {
  font-family: Manrope, sans-serif;
  font-size: 15px;
}
.loading-modal-close {
  background: linear-gradient(135deg, #0000ff, #0500ff);
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(5, 0, 255, 0.25);
}
.loading-modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 0, 255, 0.35);
  background: linear-gradient(135deg, #1a1aff, #3333ff);
}
.loading-modal-close:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .loading-modal.error-modal,
  .loading-modal.step-modal {
    padding: 36px 28px 28px;
    min-width: 300px;
    border-radius: 20px;
  }
  .step-loader {
    width: 84px;
    height: 84px;
    margin-bottom: 20px;
  }
  .step-loader-icon {
    width: 40px;
    height: 40px;
  }
  .step-loader-icon svg {
    width: 24px;
    height: 24px;
  }
  .step-current {
    font-size: 20px;
  }
  .step-title {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .step-line {
    width: 32px;
    margin: 0 6px;
  }
  .step-help-btn {
    font-size: 12px;
    padding: 10px 16px;
  }
  .loading-modal-title {
    font-size: 20px;
  }
  .loading-modal-message {
    font-size: 14px;
  }
  .loading-modal-close {
    padding: 12px 28px;
    font-size: 14px;
  }
}
.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}
.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: #0500ff;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.loading-modal-text {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  animation: textPulse 1.5s ease-in-out infinite;
}
@keyframes textPulse {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  z-index: 10001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(26, 26, 26, 0.1);
  font-family: Manrope, sans-serif;
}
.auth-modal-header {
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}
.auth-modal-back {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.auth-modal-back:hover {
  color: #0500ff;
  transform: translateX(-2px);
}
.auth-modal-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  font-family: Manrope, sans-serif;
}
.auth-network-selection {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}
.auth-network-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.5);
}
.auth-network-item:hover {
  border-color: rgba(5, 0, 255, 0.3);
  background: rgba(5, 0, 255, 0.05);
  transform: translateY(-1px);
}
.auth-network-item.active {
  border-color: rgba(5, 0, 255, 0.3);
  background: rgba(5, 0, 255, 0.08);
  box-shadow: 0 4px 12px rgba(5, 0, 255, 0.2);
}
.auth-network-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: transparent;
  flex-shrink: 0;
  overflow: hidden;
}
.auth-network-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.auth-network-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.auth-network-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-family: Manrope, sans-serif;
}
.auth-network-subtitle {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  font-weight: 400;
  font-family: Manrope, sans-serif;
}
.auth-connect-button {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(26, 26, 26, 0.05);
  color: rgba(26, 26, 26, 0.4);
  pointer-events: none;
  font-family: Manrope, sans-serif;
}
.auth-connect-button.active {
  background: linear-gradient(135deg, #0000ff, #0500ff);
  color: #fff;
  pointer-events: auto;
}
.auth-connect-button.active:hover {
  background: linear-gradient(135deg, #1a1aff, #3333ff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 0, 255, 0.3);
}
.auth-connect-button:disabled {
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .auth-modal {
    padding: 20px;
    max-width: 90%;
  }
  .auth-modal-header h2 {
    font-size: 16px;
  }
  .auth-network-item {
    padding: 12px;
  }
  .auth-network-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    background: transparent;
  }
  .auth-network-icon img {
    border-radius: 50%;
  }
  .auth-network-name {
    font-size: 14px;
  }
  .auth-network-subtitle {
    font-size: 11px;
  }
  .auth-connect-button {
    padding: 12px;
    font-size: 14px;
  }
}
.auth-stepNode.done .auth-stepDot {
  background: rgba(5, 0, 255, 0.75);
}
.auth-stepLabel {
  font-weight: 600;
}
.auth-stepNode.done .auth-stepDot:after {
  position: absolute;
  left: 3px;
  top: 1px;
  width: 3px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.auth-stepNode.active .auth-stepDot {
  background: #0500ff;
}
.auth-stepNode.disabled .auth-stepDot {
  background: rgba(26, 26, 26, 0.1);
}
.auth-stepBody {
  margin-top: 4px;
}
.auth-primary-button {
  font-weight: 700;
}
.auth-successIcon {
  font-weight: 800;
  background: rgba(255, 255, 255, 0.8);
}
.auth-successTitle {
  font-weight: 800;
}
@media (max-width: 768px) {
  .auth-steps {
    grid-template-columns: 1fr;
  }
  .auth-stepLabel {
    font-size: 12px;
  }
  .auth-lead {
    font-size: 13px;
  }
}
@keyframes authOverlayIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes authModalIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes authStepIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes authPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(5, 0, 255, 0);
  }
  60% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(5, 0, 255, 0.1);
  }
  to {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(5, 0, 255, 0);
  }
}
@keyframes authPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
    opacity: 1;
  }
  to {
    transform: scale(1);
  }
}
.auth-animOverlay {
  animation: authOverlayIn 0.18s ease-out;
}
.auth-animModal {
  animation: authModalIn 0.22s ease-out;
}
.auth-animStep {
  animation: authStepIn 0.18s ease-out;
}
.auth-animSuccess {
  animation: authPop 0.26s ease-out;
}
.auth-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 10px 0 22px;
}
.auth-step {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.55);
}
.auth-stepDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.18);
  position: relative;
}
.auth-stepLabel {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(26, 26, 26, 0.75);
  font-weight: 700;
}
.auth-step.is-done {
  border-color: rgba(26, 26, 26, 0.08);
  background: rgba(26, 26, 26, 0.03);
}
.auth-step.is-done .auth-stepDot {
  background: rgba(5, 0, 255, 0.7);
}
.auth-step.is-done .auth-stepDot:after {
  position: absolute;
  left: 3px;
  top: 1px;
  width: 3px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.auth-step.is-active {
  border-color: rgba(5, 0, 255, 0.25);
  background: rgba(5, 0, 255, 0.06);
}
.auth-step.is-active .auth-stepDot {
  background: #0500ff;
  animation: authPulse 1.4s ease-in-out infinite;
}
.auth-step.is-disabled {
  border-color: rgba(26, 26, 26, 0.06);
  background: rgba(26, 26, 26, 0.02);
}
.auth-step.is-disabled .auth-stepLabel {
  color: rgba(26, 26, 26, 0.35);
}
.auth-step.is-disabled .auth-stepDot {
  background: rgba(26, 26, 26, 0.12);
}
.auth-lead {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 14px;
}
.auth-primary-button {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  background: linear-gradient(135deg, #0000ff, #0500ff);
  color: #fff;
  font-family: Manrope, sans-serif;
}
.auth-primary-button:hover {
  background: linear-gradient(135deg, #1a1aff, #3333ff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 0, 255, 0.3);
}
.auth-footnote {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(26, 26, 26, 0.55);
}
.auth-network-itemBtn {
  all: unset;
  display: block;
  cursor: pointer;
  border-radius: 12px;
}
.auth-network-itemInner {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.5);
}
.auth-network-itemBtn:hover .auth-network-itemInner {
  border-color: rgba(5, 0, 255, 0.3);
  background: rgba(5, 0, 255, 0.05);
  transform: translateY(-1px);
}
.auth-network-itemBtn.active .auth-network-itemInner {
  border-color: rgba(5, 0, 255, 0.3);
  background: rgba(5, 0, 255, 0.08);
  box-shadow: 0 4px 12px rgba(5, 0, 255, 0.2);
}
.auth-chevron {
  color: rgba(26, 26, 26, 0.35);
  margin-left: 10px;
}
.auth-success {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(5, 0, 255, 0.18);
  background: rgba(5, 0, 255, 0.06);
  margin: 10px 0 16px;
}
.auth-successIcon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0500ff;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(5, 0, 255, 0.18);
  flex-shrink: 0;
}
.auth-successTitle {
  font-size: 16px;
  font-weight: 900;
  color: rgba(26, 26, 26, 0.9);
}
.auth-successDesc {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(26, 26, 26, 0.7);
}
@media (max-width: 768px) {
  .auth-steps {
    grid-template-columns: 1fr;
  }
}
.TcMobNav_dock__5HXR0 {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.TcMobNav_nav__GSkNt {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 56px;
  padding: 6px;
  border: 1px solid rgba(5, 0, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(5, 0, 255, 0.08);
  pointer-events: auto;
  overflow: hidden;
}
.TcMobNav_item__ueMDC {
  min-width: 40px;
  width: 40px;
  flex: 0 0 40px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #1d2b62;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  overflow: hidden;
  border: 1px solid transparent;
  box-sizing: border-box;
  background: transparent;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
.TcMobNav_itemActive__byzEA {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 14px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 8px 20px rgba(5, 0, 255, 0.08);
  justify-content: center;
  border: 1px solid rgba(5, 0, 255, 0.28);
}
.TcMobNav_icon__PTzQs {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.TcMobNav_label__aTuUN {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex: 0 1 auto;
}
.TcMobNav_support__MHMNz {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(5, 0, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(5, 0, 255, 0.08);
  color: #1d2b62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.TcMobNav_support__MHMNz:active {
  transform: translateY(1px);
}
.TcMobNav_supportIcon__qnZ7i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  .TcMobNav_dock__5HXR0 {
    display: none;
  }
}
@media (max-width: 420px) {
  .TcMobNav_dock__5HXR0 {
    left: 10px;
    right: 10px;
    gap: 8px;
  }
  .TcMobNav_nav__GSkNt {
    min-height: 52px;
    padding: 5px;
    gap: 4px;
  }
  .TcMobNav_item__ueMDC {
    min-width: 38px;
    width: 38px;
    flex-basis: 38px;
    height: 40px;
  }
  .TcMobNav_itemActive__byzEA {
    padding: 0 12px;
  }
  .TcMobNav_label__aTuUN {
    font-size: 12px;
  }
  .TcMobNav_support__MHMNz {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .TcMobNav_supportIcon__qnZ7i {
    width: 20px;
    height: 20px;
  }
}
.TcTopBar_wrap__Zfg3v {
  position: fixed;
  top: calc(84px + env(safe-area-inset-top));
  left: 12px;
  right: 12px;
  z-index: 1200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.TcTopBar_notice__MpD2t {
  width: 100%;
  max-width: 620px;
  min-height: 58px;
  padding: 12px 12px 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(5, 0, 255, 0.22);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(244, 247, 255, 0.98)
  );
  box-shadow:
    0 18px 44px rgba(5, 0, 255, 0.16),
    0 0 0 1px rgba(5, 0, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.TcTopBar_notice__MpD2t:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #2440ff, #5f79ff);
}
.TcTopBar_text__wzID6 {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #14214d;
  padding-left: 4px;
}
.TcTopBar_close__2a7ed {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(5, 0, 255, 0.12);
  border-radius: 12px;
  background: rgba(36, 64, 255, 0.08);
  color: #2440ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.TcTopBar_close__2a7ed:hover {
  background: rgba(36, 64, 255, 0.12);
}
.TcTopBar_close__2a7ed:active {
  transform: translateY(1px);
}
@media (max-width: 420px) {
  .TcTopBar_wrap__Zfg3v {
    top: calc(76px + env(safe-area-inset-top));
    left: 10px;
    right: 10px;
  }
  .TcTopBar_notice__MpD2t {
    min-height: 54px;
    padding: 10px 10px 10px 12px;
    border-radius: 16px;
  }
  .TcTopBar_text__wzID6 {
    font-size: 13px;
  }
  .TcTopBar_close__2a7ed {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}
.TcCardView_page__gx5xe {
  min-height: 50vh;
  background: radial-gradient(
      circle at top left,
      rgba(5, 0, 255, 0.08),
      transparent 36%
    ),
    linear-gradient(180deg, #ffffff, #f5f8ff);
}
.TcCardView_main__ly1if {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 108px 24px 132px;
}
.TcCardView_topbar__goAD7 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.TcCardView_eyebrow__d3uTt {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #5c6f9d;
}
.TcCardView_title__AJsMi {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #102048;
}
.TcCardView_showcase__EuLzJ {
  display: flex;
  justify-content: center;
}
.TcCardView_carouselCard__3l2bR {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(5, 0, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(5, 0, 255, 0.1);
}
.TcCardView_dots__Y22hZ {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.TcCardView_dot__OmayQ {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 32, 72, 0.2);
}
.TcCardView_dotActive__y9ynI {
  width: 26px;
  background: var(--tc-accent);
}
.TcCardView_previewWrap__z6iTl {
  position: relative;
  margin-bottom: 24px;
}
.TcCardView_previewImage__fKes4 {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(5, 0, 255, 0.1);
  box-shadow: 0 18px 48px rgba(5, 0, 255, 0.12);
}
.TcCardView_arrowButton__7RQJx {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(5, 0, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #18306a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(5, 0, 255, 0.12);
}
.TcCardView_arrowLeft__J2JgY {
  left: -20px;
}
.TcCardView_arrowRight__qFtCA {
  right: -20px;
}
.TcCardView_arrowIcon__lqPQE {
  width: 20px;
  height: 20px;
}
.TcCardView_arrowDisabled__qZKs8 {
  opacity: 0;
  pointer-events: none;
}
.TcCardView_cardSummary__2Eo0B {
  margin-bottom: 18px;
  text-align: center;
}
.TcCardView_cardTitle__Tf85V {
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 800;
  color: #102048;
}
.TcCardView_price__As230 {
  font-size: 22px;
  font-weight: 800;
  color: var(--tc-accent);
}
.TcCardView_descriptionBox__VCFck,
.TcCardView_limitsBox__b8o0y,
.TcCardView_notice__xItX2,
.TcCardView_warningBox__yxh0O {
  border: 1px solid rgba(5, 0, 255, 0.08);
  border-radius: 24px;
  background: rgba(244, 247, 255, 0.95);
}
.TcCardView_notice__xItX2 {
  margin-bottom: 16px;
  padding: 18px 20px;
}
.TcCardView_noticeTitle__CV05Q {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #102048;
}
.TcCardView_noticeText__CsLTL {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #4f628f;
}
.TcCardView_noticeIcon__F14i5 {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--tc-accent);
}
.TcCardView_descriptionBox__VCFck {
  margin-bottom: 16px;
  padding: 20px;
  color: #24406f;
}
.TcCardView_descriptionBox__VCFck p + p {
  margin-top: 12px;
}
.TcCardView_descriptionBox__VCFck p {
  font-size: 16px;
  line-height: 1.6;
}
.TcCardView_buyButton__7ALdl {
  width: 100%;
  min-height: 58px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tc-accent), #2f7bff);
  color: var(--tc-paper);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(5, 0, 255, 0.18);
}
.TcCardView_limitsToggle__OKDZw {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 20px;
  border: 0;
  background: transparent;
  color: #102048;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}
.TcCardView_toggleChevron__0QTJ0 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
}
.TcCardView_toggleOpen__RSHK1 {
  transform: rotate(90deg);
}
.TcCardView_toggleIcon__gCgPT {
  width: 18px;
  height: 18px;
}
.TcCardView_limitsBody__tgmPs {
  padding: 0 20px 20px;
}
.TcCardView_limitGroup__Rv7ws + .TcCardView_limitGroup__Rv7ws {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 72, 0.1);
}
.TcCardView_limitRow__jp5Xx + .TcCardView_limitRow__jp5Xx {
  margin-top: 14px;
}
.TcCardView_limitLead__FcSlK {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.TcCardView_limitIcon__JQ5Qg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #12b26c;
}
.TcCardView_limitTextWrap__lW3hp {
  flex: 1;
}
.TcCardView_limitLine__mq4qs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  color: #36507f;
}
.TcCardView_limitLabel__B8Cri,
.TcCardView_limitValue__BHATg {
  font-size: 16px;
  line-height: 1.55;
}
.TcCardView_limitValue__BHATg {
  color: #102048;
}
.TcCardView_limitSubitems__S1ZUX {
  margin-top: 8px;
  padding-left: 2px;
  color: #496086;
  font-size: 15px;
  line-height: 1.5;
}
.TcCardView_walletsRow__WqqCU {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.TcCardView_walletBadge__Hrajb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #102048;
  border: 1px solid rgba(5, 0, 255, 0.1);
}
.TcCardView_walletIcon__vGbs9 {
  width: 18px;
  height: 18px;
}
.TcCardView_infoBox__9ZH9Q,
.TcCardView_warningBox__yxh0O {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
}
.TcCardView_infoBox__9ZH9Q {
  margin-top: 18px;
  background: #eff5ff;
}
.TcCardView_infoBox__9ZH9Q p,
.TcCardView_warningBox__yxh0O p {
  font-size: 15px;
  line-height: 1.55;
}
.TcCardView_infoIcon__4iwPh {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--tc-accent);
}
.TcCardView_warningBox__yxh0O {
  margin-top: 18px;
  background: #fff8f8;
  border-color: rgba(233, 70, 74, 0.12);
}
.TcCardView_warningIcon__uSNdJ {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #e9464a;
}
@media (max-width: 767px) {
  .TcCardView_main__ly1if {
    padding: 30px 12px 122px;
  }
  .TcCardView_topbar__goAD7 {
    margin-bottom: 18px;
  }
  .TcCardView_title__AJsMi {
    font-size: 22px;
  }
  .TcCardView_carouselCard__3l2bR {
    padding: 16px;
    border-radius: 24px;
  }
  .TcCardView_previewWrap__z6iTl {
    margin-bottom: 18px;
  }
  .TcCardView_previewImage__fKes4 {
    border-radius: 20px;
  }
  .TcCardView_arrowButton__7RQJx {
    width: 40px;
    height: 40px;
  }
  .TcCardView_arrowLeft__J2JgY {
    left: -8px;
  }
  .TcCardView_arrowRight__qFtCA {
    right: -8px;
  }
  .TcCardView_cardTitle__Tf85V {
    font-size: 20px;
  }
  .TcCardView_price__As230 {
    font-size: 16px;
  }
  .TcCardView_descriptionBox__VCFck,
  .TcCardView_limitsBox__b8o0y,
  .TcCardView_notice__xItX2,
  .TcCardView_warningBox__yxh0O {
    border-radius: 18px;
  }
  .TcCardView_descriptionBox__VCFck,
  .TcCardView_notice__xItX2,
  .TcCardView_warningBox__yxh0O {
    padding: 14px 14px 16px;
  }
  .TcCardView_descriptionBox__VCFck p,
  .TcCardView_infoBox__9ZH9Q p,
  .TcCardView_limitLabel__B8Cri,
  .TcCardView_limitValue__BHATg,
  .TcCardView_warningBox__yxh0O p {
    font-size: 14px;
  }
  .TcCardView_limitsToggle__OKDZw {
    padding: 16px 14px;
    font-size: 16px;
  }
  .TcCardView_limitsBody__tgmPs {
    padding: 0 14px 16px;
  }
  .TcCardView_buyButton__7ALdl {
    min-height: 52px;
    font-size: 16px;
  }
}
.TcBase_container__irKTr {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.TcBase_snapSection__Un3sn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.TcBase_buttonOutline__WS2eS,
.TcBase_buttonPrimary__rcr6Z,
.TcBase_buttonWhiteOutline__zTt3J {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.TcBase_buttonPrimary__rcr6Z {
  border: none;
  padding: 14px 24px;
  background: var(--tc-accent);
  color: var(--tc-paper);
}
.TcBase_buttonPrimary__rcr6Z:hover {
  opacity: 0.9;
}
.TcBase_buttonOutline__WS2eS {
  padding: 14px 24px;
  border: 1.5px solid var(--tc-accent);
  background: transparent;
  color: var(--tc-accent);
}
.TcBase_buttonOutline__WS2eS:hover {
  background: rgba(5, 0, 255, 0.05);
}
.TcBase_buttonWhiteOutline__zTt3J {
  padding: 14px 28px;
  border: 1.5px solid var(--tc-paper);
  background: transparent;
  color: var(--tc-paper);
}
.TcBase_buttonWhiteOutline__zTt3J:hover {
  background: rgba(255, 255, 255, 0.1);
}
.TcBase_fadeIn__ev5mZ {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.TcBase_scaleIn__AEgHw {
  opacity: 0;
  transform: scale(1.3);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.TcBase_cardGrow__3nqCd {
  transition: transform 0.4s ease;
}
.TcBase_visible__13wb7 {
  opacity: 1;
}
.TcBase_fadeIn__ev5mZ.TcBase_visible__13wb7,
.TcBase_scaleIn__AEgHw.TcBase_visible__13wb7 {
  transform: translateY(0) scale(1);
}
.TcBase_grown__MnPgA {
  transform: translate(-50%, -50%) scale(1.3);
}
.TcBase_delay1__DMeH2 {
  transition-delay: 0.1s;
}
.TcBase_delay2__9drkl {
  transition-delay: 0.2s;
}
.TcBase_delay3__hnaVQ {
  transition-delay: 0.3s;
}
.TcBase_delay4__MCXsR {
  transition-delay: 0.4s;
}
.TcBase_delay5__rADwp {
  transition-delay: 0.5s;
}
.TcBase_delay6__ub0k8 {
  transition-delay: 0.6s;
}
.TcBase_delay7__mSLaG {
  transition-delay: 0.7s;
}
.TcBase_delay8__fyhPa {
  transition-delay: 0.8s;
}
.TcBase_richTextBlue__Q40MV span {
  color: var(--tc-accent);
}
.TcBase_float__cqCzM {
  animation: TcBase_float__cqCzM 3s ease-in-out infinite;
}
.TcBase_floatDelay1__iJu1w {
  animation-delay: 0s;
}
.TcBase_floatDelay2__MjD7R {
  animation-delay: 0.5s;
}
.TcBase_floatDelay3__uC2Ga {
  animation-delay: 1s;
}
.TcBase_floatDelay4__L2jJO {
  animation-delay: 1.5s;
}
.TcBase_floatDelay5__4GySH {
  animation-delay: 2s;
}
@keyframes TcBase_float__cqCzM {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 1024px) {
  .TcBase_container__irKTr {
    padding: 0 24px;
  }
}
.TcSiteHdr_header__2BCBx {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  height: 72px;
  padding: 0 80px;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--tc-line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-sizing: border-box;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}
.TcSiteHdr_left__F6YNA,
.TcSiteHdr_nav__vq5wC,
.TcSiteHdr_right__85H18 {
  min-width: 0;
}
.TcSiteHdr_left__F6YNA {
  position: relative;
  z-index: 1002;
  justify-self: start;
}
.TcSiteHdr_nav__vq5wC {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.TcSiteHdr_nav__vq5wC a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--tc-ink);
  transition: color 0.2s ease;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 8px;
}
.TcSiteHdr_nav__vq5wC a:hover {
  background: rgba(0,0,0,0.04);
}
.TcSiteHdr_active__X11fu,
.TcSiteHdr_nav__vq5wC a:hover {
  color: var(--tc-accent);
}
.TcSiteHdr_right__85H18 {
  justify-self: end;
}
.TcSiteHdr_cta__STqD8 {
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .TcSiteHdr_header__2BCBx {
    padding: 0 32px;
    grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
    gap: 12px;
  }
  .TcSiteHdr_nav__vq5wC {
    display: none;
  }
}
@media (max-width: 640px) {
  .TcSiteHdr_header__2BCBx {
    height: 68px;
    padding: 0 16px;
    gap: 8px;
  }
  .TcSiteHdr_cta__STqD8 {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 1;
  }
}
@media (max-width: 380px) {
  .TcSiteHdr_header__2BCBx {
    padding: 0 10px;
    gap: 6px;
  }
  .TcSiteHdr_cta__STqD8 {
    padding: 0 12px;
    font-size: 12px;
  }
}
.TcScrollDot_root__qS3AX {
  position: fixed;
  top: 50%;
  right: 32px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}
.TcScrollDot_dot__lga23 {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #dddddd;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.TcScrollDot_dot__lga23:hover {
  background: #bbbbbb;
}
.TcScrollDot_active__sXaAw {
  background: var(--tc-accent);
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .TcScrollDot_root__qS3AX {
    display: none;
  }
}
.TcHeroBlk_heroInner__JFLAq {
  width: 100%;
  padding-top: 72px;
}
.TcHeroBlk_heroInner__JFLAq > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.TcHeroBlk_title__3PIqL {
  margin-bottom: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
}
.TcHeroBlk_section__ueOx6 {
  margin-top: 15px;
}
.TcHeroBlk_description__6YK8I {
  max-width: 480px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--tc-muted);
}
.TcHeroBlk_actions__6umYd {
  display: flex;
  gap: 16px;
}
.TcHeroBlk_media__QhCZF {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .TcHeroBlk_heroInner__JFLAq > div {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 25px;
  }
  .TcHeroBlk_title__3PIqL {
    font-size: 32px;
  }
  .TcHeroBlk_description__6YK8I {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .TcHeroBlk_actions__6umYd {
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
  }
}
.TcStepsBlk_section__Gu1uy {
  width: 100%;
  padding: 40px 0 92px;
  background: radial-gradient(
      circle at 14% 8%,
      rgba(5, 0, 255, 0.06),
      transparent 28%
    ),
    radial-gradient(circle at 88% 18%, rgba(5, 0, 255, 0.04), transparent 22%),
    var(--tc-paper);
}
.TcStepsBlk_head__GRE4n {
  margin-bottom: 24px;
}
.TcStepsBlk_kicker__lhYjm {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(5, 0, 255, 0.12);
  background: rgba(5, 0, 255, 0.05);
  color: var(--tc-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.TcStepsBlk_title__jLf5W {
  margin: 14px 0 10px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.TcStepsBlk_subtitle__OKn0P {
  max-width: 720px;
  color: var(--tc-muted);
  font-size: 16px;
  line-height: 1.7;
}
.TcStepsBlk_grid__Ntn2d {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}
.TcStepsBlk_timeline__1jHBy {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border-radius: 28px;
  border: 1px solid rgba(5, 0, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(247, 249, 255, 0.96)
  );
  box-shadow: 0 24px 60px rgba(5, 0, 255, 0.08);
  overflow: hidden;
}
.TcStepsBlk_timeline__1jHBy:before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(5, 0, 255, 0.15),
    rgba(88, 173, 255, 0.24),
    rgba(5, 0, 255, 0.15)
  );
  pointer-events: none;
}
.TcStepsBlk_step__4WntL {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(5, 0, 255, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}
.TcStepsBlk_stepTop__9I3xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.TcStepsBlk_num__oqveN {
  color: rgba(5, 0, 255, 0.84);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.TcStepsBlk_ico__jWw9P {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--tc-accent);
  background: rgba(5, 0, 255, 0.08);
  border: 1px solid rgba(5, 0, 255, 0.12);
}
.TcStepsBlk_icoSvg__gr7cn {
  width: 20px;
  height: 20px;
}
.TcStepsBlk_stepTitle__lu3Xa {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.TcStepsBlk_stepDesc__6xUIG {
  color: var(--tc-muted);
  font-size: 14px;
  line-height: 1.65;
}
.TcStepsBlk_side__SpTea {
  min-width: 0;
}
.TcStepsBlk_sideCard__l0x82 {
  height: 100%;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(5, 0, 255, 0.1);
  background: radial-gradient(
      circle at top left,
      rgba(5, 0, 255, 0.08),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(76, 162, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 248, 255, 0.96)
    );
  box-shadow: 0 24px 60px rgba(5, 0, 255, 0.08);
}
.TcStepsBlk_sideTitle__Nthnn {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.TcStepsBlk_sideText__dE4Ra {
  margin-top: 8px;
  color: var(--tc-muted);
  line-height: 1.7;
}
.TcStepsBlk_sideRow__EJjLA {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.TcStepsBlk_miniChip__oxbrz {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(5, 0, 255, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--tc-ink);
  font-size: 13px;
  font-weight: 600;
}
.TcStepsBlk_miniIcon__IZvJF {
  width: 18px;
  height: 18px;
  color: var(--tc-accent);
}
.TcStepsBlk_sideCta__JVheX {
  width: 100%;
  margin-top: 18px;
}
@media (max-width: 1024px) {
  .TcStepsBlk_section__Gu1uy {
    padding: 24px 0 0;
  }
  .TcStepsBlk_title__jLf5W {
    font-size: 30px;
  }
  .TcStepsBlk_grid__Ntn2d,
  .TcStepsBlk_timeline__1jHBy {
    grid-template-columns: 1fr;
  }
  .TcStepsBlk_timeline__1jHBy:before {
    display: none;
  }
}
@media (max-width: 640px) {
  .TcStepsBlk_section__Gu1uy {
    padding: 12px 0 56px;
  }
  .TcStepsBlk_sideCard__l0x82,
  .TcStepsBlk_timeline__1jHBy {
    border-radius: 22px;
    padding: 16px;
  }
  .TcStepsBlk_step__4WntL {
    border-radius: 18px;
    padding: 16px;
  }
  .TcStepsBlk_stepTitle__lu3Xa {
    font-size: 17px;
  }
}
.TcStatsBand_root__lKG0I {
  width: 100%;
  background: var(--tc-paper);
  justify-content: flex-start;
}
.TcStatsBand_layout__7FMEE {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.TcStatsBand_statsSection__MMPpH {
  width: 100%;
}
.TcStatsBand_statsGrid__JwXdu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.TcStatsBand_statItem__qcYDX {
  text-align: center;
}
.TcStatsBand_statLabel__ngM4U {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--tc-muted);
}
.TcStatsBand_statValue__XIGVs {
  font-size: 30px;
  font-weight: 700;
}
.TcStatsBand_blue__FsyPt,
.TcStatsBand_stars__leBFp,
.TcStatsBand_statValue__XIGVs span {
  color: var(--tc-accent);
}
.TcStatsBand_stars__leBFp {
  font-size: 24px;
  letter-spacing: 2px;
}
.TcStatsBand_promoCard__VTfZE {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 420px;
  padding: 64px;
  border-radius: 24px;
  overflow: hidden;
}
.TcStatsBand_promoContent__prE6Y {
  max-width: 520px;
}
.TcStatsBand_promoTitle__5234T {
  margin-bottom: 18px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
}
.TcStatsBand_promoDescription__spM9t {
  max-width: 460px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}
.TcStatsBand_desktopMedia__m5i3R,
.TcStatsBand_mobileMedia__11THa {
  display: flex;
  align-items: center;
  justify-content: center;
}
.TcStatsBand_desktopMedia__m5i3R {
  flex: 1;
  justify-content: flex-end;
  height: 100%;
}
.TcStatsBand_desktopMedia__m5i3R img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  -o-object-fit: contain;
  object-fit: contain;
}
.TcStatsBand_mobileMedia__11THa {
  display: none;
}
@media (max-width: 1024px) {
  .TcStatsBand_layout__7FMEE {
    min-height: auto;
  }
  .TcStatsBand_statsGrid__JwXdu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .TcStatsBand_promoTitle__5234T {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .TcStatsBand_promoCard__VTfZE {
    flex-direction: column;
    gap: 24px;
    min-height: 360px;
    padding: 28px;
    text-align: center;
  }
  .TcStatsBand_promoContent__prE6Y,
  .TcStatsBand_promoDescription__spM9t {
    max-width: 100%;
  }
  .TcStatsBand_mobileMedia__11THa {
    display: flex;
    width: 100%;
  }
  .TcStatsBand_mobileMedia__11THa img {
    max-height: 360px;
  }
  .TcStatsBand_desktopMedia__m5i3R {
    display: none;
  }
}
.TcBlueBand_root__9WzPx {
  width: 100%;
  padding: 80px 0;
  background: var(--tc-accent);
}
.TcBlueBand_root__9WzPx > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.TcBlueBand_title__lWheq {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--tc-paper);
}
.TcBlueBand_description__b2Q9l {
  max-width: 440px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.TcBlueBand_media__5BvIS {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .TcBlueBand_root__9WzPx > div {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .TcBlueBand_title__lWheq {
    font-size: 26px;
  }
  .TcBlueBand_description__b2Q9l {
    max-width: 100%;
  }
}
.TcFeatBlk_root__Q2G44 {
  width: 100%;
  padding-top: 45px;
  background: var(--tc-paper);
}
.TcFeatBlk_root__Q2G44 > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.TcFeatBlk_reverse__FPa15 > div {
  direction: rtl;
}
.TcFeatBlk_reverse__FPa15 .TcFeatBlk_content__heuBY,
.TcFeatBlk_reverse__FPa15 .TcFeatBlk_image__IvYcl {
  direction: ltr;
}
.TcFeatBlk_title__0Vucb {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
}
.TcFeatBlk_description__1P0CE {
  max-width: 400px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--tc-muted);
}
.TcFeatBlk_composition__KlOZx {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px;
  margin: 0 auto;
}
.TcFeatBlk_composition__KlOZx img {
  position: absolute;
  -o-object-fit: contain;
  object-fit: contain;
}
.TcFeatBlk_block4__aioEk .TcFeatBlk_phone__B1lRV {
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 220px;
  transform: translate(-50%, -50%);
}
.TcFeatBlk_block4__aioEk .TcFeatBlk_card__d4QdS {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 300px;
  max-width: 92%;
  transform: translate(-50%, -50%);
}
.TcFeatBlk_block4__aioEk .TcFeatBlk_badge__DUnln {
  z-index: 4;
  width: 70px;
}
.TcFeatBlk_badgeGpay__J9QSd {
  top: 25%;
  left: 5%;
}
.TcFeatBlk_badgeAtm__enK0p {
  top: 15%;
  right: 5%;
}
.TcFeatBlk_badgeApplePay__SUAaK {
  right: 10%;
  bottom: 25%;
}
.TcFeatBlk_block5__xxoug .TcFeatBlk_phone__B1lRV {
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 200px;
  transform: translate(-50%, -50%);
}
.TcFeatBlk_block5__xxoug .TcFeatBlk_coin__5otsI {
  z-index: 3;
  width: 80px;
}
.TcFeatBlk_coin1__dBLdY {
  top: 35%;
  left: 0;
}
.TcFeatBlk_coin2__kPOrh {
  top: 5%;
  right: 15%;
}
.TcFeatBlk_coin3__oVJ8w {
  top: 40%;
  right: 5%;
}
.TcFeatBlk_coin4__VRXj8 {
  bottom: 10%;
  left: 15%;
}
.TcFeatBlk_coin5__kHsF4 {
  right: 20%;
  bottom: 15%;
}
.TcFeatBlk_block6__igpuT {
  max-width: 680px;
  height: 620px;
  overflow: visible;
}
.TcFeatBlk_block6__igpuT .TcFeatBlk_phone__B1lRV {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 260px;
  transform: translate(-50%, -50%);
}
.TcFeatBlk_transactionsGrid__KZvl6 {
  position: absolute;
  top: 70%;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.TcFeatBlk_txRow__Z8RMa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.TcFeatBlk_txRow__Z8RMa:first-child {
  transform: translateX(0);
}
.TcFeatBlk_txRow__Z8RMa:nth-child(2) {
  transform: translateX(10%);
}
.TcFeatBlk_txRow__Z8RMa:nth-child(3) {
  transform: translateX(20%);
}
.TcFeatBlk_transaction__D69SE {
  position: static !important;
  width: 240px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
}
.TcFeatBlk_transactionWide__f1IDT {
  width: 240px;
}
@media (max-width: 1024px) {
  .TcFeatBlk_root__Q2G44 > div {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  .TcFeatBlk_title__0Vucb {
    font-size: 26px;
  }
  .TcFeatBlk_description__1P0CE {
    max-width: 100%;
  }
  .TcFeatBlk_composition__KlOZx {
    max-width: 350px;
    height: 450px;
  }
  .TcFeatBlk_block4__aioEk .TcFeatBlk_phone__B1lRV {
    width: 180px;
  }
  .TcFeatBlk_block4__aioEk .TcFeatBlk_card__d4QdS {
    width: 260px;
    max-width: 92%;
  }
  .TcFeatBlk_block4__aioEk .TcFeatBlk_badge__DUnln {
    width: 80px;
  }
  .TcFeatBlk_block5__xxoug .TcFeatBlk_phone__B1lRV {
    width: 180px;
  }
  .TcFeatBlk_block5__xxoug .TcFeatBlk_coin__5otsI {
    width: 70px;
  }
  .TcFeatBlk_block6__igpuT {
    height: 640px;
  }
  .TcFeatBlk_block6__igpuT .TcFeatBlk_phone__B1lRV {
    top: 45%;
    left: 50%;
    width: 220px;
  }
  .TcFeatBlk_transactionsGrid__KZvl6 {
    top: 72%;
    gap: 10px;
  }
  .TcFeatBlk_txRow__Z8RMa {
    gap: 10px;
  }
  .TcFeatBlk_transactionWide__f1IDT,
  .TcFeatBlk_transaction__D69SE {
    width: 160px;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.18));
  }
}
.TcPerksBlk_root__QV6EI {
  width: 100%;
  background: var(--tc-paper);
}
.TcPerksBlk_title__G1HYW {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
}
.TcPerksBlk_description__Xzn5F {
  margin-bottom: 48px;
  font-size: 16px;
  color: var(--tc-muted);
}
.TcPerksBlk_grid__PVfHc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.TcPerksBlk_card__Dm2Tp {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--tc-surface);
}
.TcPerksBlk_iconWrap__85dRh {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
}
.TcPerksBlk_icon__yTHAw {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.TcPerksBlk_cardTitle__W0s8M {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.TcPerksBlk_cardDescription__TvHeM {
  font-size: 14px;
  line-height: 1.5;
  color: var(--tc-muted);
}
@media (max-width: 1024px) {
  .TcPerksBlk_title__G1HYW {
    font-size: 26px;
  }
  .TcPerksBlk_grid__PVfHc {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .TcPerksBlk_grid__PVfHc {
    grid-template-columns: 1fr;
  }
}
.TcFaqBlk_root__ayk0Y {
  width: 100%;
  background: radial-gradient(
      circle at 15% 0,
      rgba(5, 0, 255, 0.05),
      transparent 24%
    ),
    var(--tc-paper);
}
.TcFaqBlk_title__a8zD5 {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
}
.TcFaqBlk_description__gHFBT {
  max-width: 760px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--tc-muted);
}
.TcFaqBlk_list__cZFxU {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.TcFaqBlk_item__jXjWQ {
  border: 1px solid rgba(5, 0, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(247, 249, 255, 0.96)
  );
  box-shadow: 0 16px 36px rgba(5, 0, 255, 0.05);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.TcFaqBlk_itemActive__mmWMG {
  border-color: rgba(5, 0, 255, 0.22);
  box-shadow: 0 20px 44px rgba(5, 0, 255, 0.08);
}
.TcFaqBlk_trigger__y5aql {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}
.TcFaqBlk_question__QNGbc {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.TcFaqBlk_arrow__v8yEE {
  flex: 0 0 auto;
  color: var(--tc-accent);
  font-size: 24px;
  line-height: 1;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}
.TcFaqBlk_itemActive__mmWMG .TcFaqBlk_arrow__v8yEE {
  transform: rotate(0deg);
}
.TcFaqBlk_answerWrap__lLyFJ {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.TcFaqBlk_answerWrapOpen__WTf07 {
  grid-template-rows: 1fr;
}
.TcFaqBlk_answer__RcukF {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--tc-muted);
  font-size: 16px;
  line-height: 1.75;
}
.TcFaqBlk_answerWrapOpen__WTf07 .TcFaqBlk_answer__RcukF {
  padding-bottom: 24px;
}
@media (max-width: 1024px) {
  .TcFaqBlk_title__a8zD5 {
    font-size: 30px;
  }
  .TcFaqBlk_question__QNGbc {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .TcFaqBlk_root__ayk0Y {
    padding: 56px 0;
  }
  .TcFaqBlk_item__jXjWQ,
  .TcFaqBlk_trigger__y5aql {
    border-radius: 18px;
  }
  .TcFaqBlk_trigger__y5aql {
    padding: 18px;
  }
  .TcFaqBlk_answer__RcukF {
    padding: 0 18px;
    font-size: 15px;
  }
  .TcFaqBlk_answerWrapOpen__WTf07 .TcFaqBlk_answer__RcukF {
    padding-bottom: 18px;
  }
}
.TcCtaBlock_wrapper__CDRzm {
  display: flex;
  flex-direction: column;
  min-height: 50vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.TcCtaBlock_ctaSection__eT1E0 {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: var(--tc-paper);
}
.TcCtaBlock_box__o28HB {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 80px;
  border-radius: 24px;
  background: var(--tc-accent);
}
.TcCtaBlock_title__Lj0u0 {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--tc-paper);
}
.TcCtaBlock_description__iJ8ZW {
  max-width: 400px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.TcCtaBlock_image__5jBHB {
  display: flex;
  align-items: center;
  justify-content: center;
}
.TcCtaBlock_footer__hQgGt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 80px;
  border-top: 1px solid var(--tc-line);
  background: var(--tc-paper);
}
.TcCtaBlock_footerLogo__JIPlJ {
  display: flex;
  align-items: center;
  gap: 8px;
}
.TcCtaBlock_footerLogoIcon__e99Bv {
  width: 28px;
  height: 28px;
}
.TcCtaBlock_footerLogo__JIPlJ span {
  font-size: 20px;
  font-weight: 800;
}
.TcCtaBlock_footerCenter__aO3CD {
  font-size: 14px;
  color: var(--tc-muted);
}
.TcCtaBlock_footerRight__EzISt {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .TcCtaBlock_box__o28HB {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    text-align: center;
  }
  .TcCtaBlock_title__Lj0u0 {
    font-size: 26px;
  }
  .TcCtaBlock_description__iJ8ZW {
    max-width: 100%;
  }
  .TcCtaBlock_footer__hQgGt {
    padding: 24px;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .TcCtaBlock_footerRight__EzISt {
    width: 100%;
    justify-content: center;
  }
  .TcCtaBlock_footerRight__EzISt a {
    display: none;
  }
}
.TcMainPage_page__Jp1bl {
  background: var(--tc-paper);
}
.TcMainPage_main__PLYdu {
  position: relative;
}
