* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: #202431;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.tc-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.tc-topbar {
  position: relative;
  z-index: 60;
  color: rgba(255, 255, 255, .82);
  background: #151b28;
  transition: height .25s ease, opacity .25s ease;
}

.tc-topbar.is-hidden {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tc-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  position: relative;
}

.tc-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.tc-topbar-link strong {
  color: #fff;
  font-weight: 600;
}

.tc-topbar-link em {
  color: #7db7ff;
  font-style: normal;
}

.tc-icon-btn,
.tc-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.tc-icon-btn svg,
.tc-action-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.tc-topbar-close {
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, .7);
}

.tc-header {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(16, 39, 74, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.tc-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(12, 35, 66, .09);
}

.tc-header-inner {
  display: flex;
  align-items: center;
  min-height: 62px;
}

.tc-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  margin-right: 28px;
  color: #17213b;
  font-weight: 700;
}

.tc-logo-mark {
  position: relative;
  width: 31px;
  height: 20px;
  border: 2px solid #006eff;
  border-radius: 18px;
}

.tc-logo-mark::before,
.tc-logo-mark::after {
  content: "";
  position: absolute;
  border: 2px solid #006eff;
  background: #fff;
}

.tc-logo-mark::before {
  width: 16px;
  height: 16px;
  left: 3px;
  top: -8px;
  border-radius: 50%;
}

.tc-logo-mark::after {
  width: 15px;
  height: 15px;
  right: 2px;
  top: -5px;
  border-radius: 50%;
}

.tc-logo-text {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.tc-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  flex: 1;
}

.tc-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tc-nav-list > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.tc-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 62px;
  padding: 0 15px;
  color: #2b3141;
  font-size: 15px;
  white-space: nowrap;
  transition: color .2s ease;
}

.tc-nav-list > li:hover > a,
.tc-nav-list > li > a:focus {
  color: #006eff;
}

.tc-caret {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.tc-has-menu {
  position: relative;
}

.tc-mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: grid;
  gap: 24px;
  min-width: 720px;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  background: #fff;
  border: 1px solid #e8edf5;
  box-shadow: 0 24px 60px rgba(19, 38, 70, .14);
  transition: all .18s ease;
}

.tc-has-menu:hover .tc-mega-menu,
.tc-has-menu:focus-within .tc-mega-menu,
.tc-has-menu.menu-open .tc-mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tc-mega-products {
  grid-template-columns: 240px 1fr;
  width: min(920px, calc(100vw - 80px));
}

.tc-mega-product-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  max-height: 430px;
  overflow-y: auto;
  padding-right: 6px;
}

.tc-mega-group h3 {
  margin: 0 0 10px;
  color: #141b2d;
  font-size: 15px;
  font-weight: 800;
}

.tc-mega-links {
  display: grid;
  gap: 6px;
}

.tc-mega-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  color: #536174;
  background: #f7f9fc;
  border: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.tc-mega-links a:hover {
  color: #006eff;
  background: #eef6ff;
  border-color: #d4e7ff;
}

.tc-mega-links em {
  flex: 0 0 auto;
  min-width: 34px;
  padding: 2px 6px;
  color: #fff;
  background: #006eff;
  font-size: 11px;
  font-style: normal;
  text-align: center;
}

.tc-mega-intro {
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #006eff 0%, #00a4ff 100%);
}

.tc-mega-intro span,
.tc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #006eff;
  font-size: 13px;
  font-weight: 700;
}

.tc-mega-intro span {
  color: rgba(255, 255, 255, .8);
}

.tc-mega-intro strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 19px;
  line-height: 1.45;
}

.tc-mega-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

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

.tc-mega-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #edf1f7;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tc-mega-card:hover {
  border-color: #b8d7ff;
  box-shadow: 0 12px 28px rgba(0, 110, 255, .08);
  transform: translateY(-2px);
}

.tc-mega-card strong,
.tc-mega-card em {
  display: block;
}

.tc-mega-card strong {
  color: #1f2633;
  font-size: 15px;
}

.tc-mega-card em {
  margin-top: 3px;
  color: #6c7586;
  font-size: 12px;
  font-style: normal;
}

.tc-mega-solutions {
  min-width: 520px;
}

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

.tc-solution-list a,
.tc-mega-small a {
  display: block;
  padding: 14px 16px;
  border: 1px solid #edf1f7;
  background: #fff;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.tc-solution-list a:hover,
.tc-mega-small a:hover {
  color: #006eff;
  border-color: #c7ddff;
  background: #f7fbff;
}

.tc-solution-list strong,
.tc-solution-list span {
  display: block;
}

.tc-solution-list span {
  margin-top: 3px;
  color: #6b7280;
  font-size: 12px;
}

.tc-mega-small {
  min-width: 180px;
  padding: 10px;
  gap: 6px;
}

.tc-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.tc-action-icon {
  width: 40px;
  height: 40px;
  color: #222938;
  transition: color .2s ease, background .2s ease;
}

.tc-action-icon:hover {
  color: #006eff;
  background: #eef6ff;
}

.tc-console,
.tc-login,
.tc-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  white-space: nowrap;
}

.tc-console:hover,
.tc-login:hover {
  color: #006eff;
}

.tc-signup {
  margin-left: 8px;
  color: #fff;
  background: #006eff;
}

.tc-signup:hover {
  background: #0058cc;
}

.tc-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.tc-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #1f2633;
}

.tc-mobile-backdrop,
.tc-mobile-drawer {
  display: none !important;
}

.tc-search-panel {
  display: none;
  border-top: 1px solid #edf1f7;
  background: #fff;
}

.tc-search-panel.is-open {
  display: block;
}

.tc-search-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.tc-search-inner label {
  display: grid;
  flex: 1;
  gap: 8px;
  color: #667085;
  font-size: 12px;
}

.tc-search-inner input {
  width: 100%;
  height: 42px;
  border: 1px solid #d9e2ee;
  padding: 0 14px;
  outline: 0;
}

.tc-search-inner input:focus {
  border-color: #006eff;
  box-shadow: 0 0 0 3px rgba(0, 110, 255, .12);
}

.tc-search-hot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-search-hot a {
  padding: 8px 12px;
  color: #3d4758;
  background: #f3f6fb;
}

.tc-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background: #f4f8ff;
}

.tc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 164, 255, .2), transparent 30%),
    linear-gradient(105deg, #ffffff 0%, #eef6ff 55%, #e8f1ff 100%);
}

.tc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(20, 80, 150, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 80, 150, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .8) 45%, transparent 100%);
}

.tc-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  align-items: center;
  gap: 46px;
  min-height: 540px;
  padding: 72px 0 34px;
}

.tc-hero-content h1 {
  max-width: 660px;
  margin: 16px 0 18px;
  color: #111827;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

.tc-hero-content p {
  max-width: 620px;
  margin: 0;
  color: #536174;
  font-size: 17px;
  line-height: 1.9;
}

.tc-hero-actions,
.tc-final-actions,
.tc-solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tc-hero-actions {
  margin-top: 34px;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.tc-btn:hover {
  transform: translateY(-2px);
}

.tc-btn-primary {
  color: #fff;
  background: #006eff;
  box-shadow: 0 14px 28px rgba(0, 110, 255, .24);
}

.tc-btn-primary:hover {
  background: #0058cc;
}

.tc-btn-outline {
  color: #006eff;
  border-color: #9bc7ff;
  background: rgba(255, 255, 255, .72);
}

.tc-btn-outline:hover,
.tc-btn-ghost:hover {
  border-color: #006eff;
  background: #eef6ff;
}

.tc-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .52);
  background: transparent;
}

.tc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tc-hero-tags span {
  padding: 8px 12px;
  color: #33506d;
  background: rgba(255, 255, 255, .76);
  border: 1px solid #e0ebfa;
}

.tc-hero-visual {
  position: relative;
  min-height: 360px;
}

.tc-hero-visual img {
  width: 100%;
  filter: drop-shadow(0 28px 54px rgba(33, 61, 102, .22));
}

.tc-float-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 148px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(206, 222, 244, .82);
  box-shadow: 0 22px 40px rgba(20, 49, 86, .14);
  backdrop-filter: blur(14px);
}

.tc-float-card strong {
  color: #006eff;
  font-size: 25px;
}

.tc-float-card span {
  color: #5c6678;
}

.tc-float-card-a {
  left: 16px;
  bottom: 24px;
}

.tc-float-card-b {
  right: 0;
  top: 54px;
}

.tc-hero-switcher {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 44px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid #dfeafa;
  box-shadow: 0 18px 44px rgba(21, 50, 90, .1);
}

.tc-hero-switcher button {
  min-height: 56px;
  border: 0;
  border-right: 1px solid #e2ebf7;
  color: #4e5969;
  background: transparent;
  font-weight: 700;
}

.tc-hero-switcher button:last-child {
  border-right: 0;
}

.tc-hero-switcher button.active,
.tc-hero-switcher button:hover {
  color: #006eff;
  background: #f3f8ff;
}

.tc-promo-strip {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

.tc-promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid #e8edf5;
  box-shadow: 0 20px 50px rgba(16, 39, 74, .08);
}

.tc-promo-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px 14px;
  padding: 26px 24px;
  border-right: 1px solid #edf1f7;
  transition: background .2s ease, transform .2s ease;
}

.tc-promo-card:last-child {
  border-right: 0;
}

.tc-promo-card:hover {
  background: #f7fbff;
  transform: translateY(-3px);
}

.tc-promo-card strong {
  color: #1f2937;
  font-size: 18px;
}

.tc-promo-card p {
  grid-column: 2;
  margin: -5px 0 0;
  color: #667085;
}

.tc-card-icon,
.tc-mini-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: #006eff;
  background: #edf6ff;
}

.tc-mini-icon {
  width: 36px;
  height: 36px;
}

.tc-card-icon::before,
.tc-mini-icon::before,
.tc-card-icon::after,
.tc-mini-icon::after {
  content: "";
  position: absolute;
}

.gift::before {
  width: 22px;
  height: 18px;
  border: 2px solid currentColor;
  bottom: 9px;
}

.gift::after {
  width: 2px;
  height: 28px;
  background: currentColor;
  top: 7px;
  box-shadow: -9px 6px 0 -7px currentColor, 9px 6px 0 -7px currentColor;
}

.server::before,
.compute::before {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
}

.server::after,
.compute::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateY(9px);
}

.rocket::before,
.network::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.rocket::after,
.network::after {
  width: 28px;
  height: 2px;
  background: currentColor;
  transform: rotate(-35deg);
}

.lock::before,
.shield::before,
.security::before {
  width: 21px;
  height: 18px;
  bottom: 8px;
  border: 2px solid currentColor;
}

.lock::after,
.shield::after,
.security::after {
  width: 14px;
  height: 11px;
  top: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.light::before {
  width: 18px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 5px 5px;
}

.light::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(5px);
}

.database::before {
  width: 22px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50% / 18%;
}

.database::after {
  width: 22px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  top: 10px;
}

.tc-section {
  padding: 88px 0;
}

.tc-section-head {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.tc-section-head-left {
  margin-left: 0;
  text-align: left;
}

.tc-section-head h2,
.tc-final-inner h2,
.tc-solution-copy h2 {
  margin: 12px 0;
  color: #111827;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.tc-section-head p,
.tc-solution-copy p,
.tc-final-inner p {
  margin: 0;
  color: #687386;
  font-size: 16px;
}

.tc-why {
  background: #fff;
}

.tc-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tc-stat-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 26px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  border: 1px solid #e7edf6;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tc-stat-card:hover {
  transform: translateY(-4px);
  border-color: #b6d5ff;
  box-shadow: 0 18px 40px rgba(0, 110, 255, .09);
}

.tc-stat-card strong {
  color: #006eff;
  font-size: 34px;
  line-height: 1;
}

.tc-stat-card span {
  color: #4b5565;
}

.tc-products,
.tc-global {
  background: #f6f8fb;
}

.tc-product-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

.tc-product-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.tc-product-tabs button {
  min-height: 48px;
  border: 1px solid transparent;
  color: #3c4658;
  background: #fff;
  text-align: left;
  padding: 0 18px;
  font-weight: 700;
}

.tc-product-tabs button.active,
.tc-product-tabs button:hover {
  color: #006eff;
  border-color: #b9d8ff;
  background: #eef6ff;
}

.tc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.tc-product-panels {
  min-width: 0;
}

.tc-product-panel {
  display: none;
}

.tc-product-panel.active {
  display: grid;
}

.tc-product-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 12px;
  min-height: 74px;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid #e6edf6;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tc-product-card:hover {
  transform: translateY(-2px);
  border-color: #b9d8ff;
  box-shadow: 0 12px 24px rgba(13, 52, 104, .07);
}

.tc-product-card.featured {
  color: inherit;
  background: #fff;
  border-color: #e6edf6;
}

.tc-product-card .tc-mini-icon,
.tc-product-card.featured .tc-mini-icon {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: #006eff;
  background: #edf6ff;
}

.tc-product-card h3 {
  min-width: 0;
  margin: 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tc-product-card p {
  min-height: 0;
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.tc-product-card.featured p {
  color: #667085;
}

.tc-product-card a {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: #006eff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.tc-product-card.featured a {
  color: #006eff;
}

.tc-solutions {
  padding: 96px 0;
  background: #fff;
}

.tc-solution-shell {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(430px, 1fr);
  gap: 42px;
  align-items: center;
}

.tc-solution-copy p {
  line-height: 1.9;
}

.tc-solution-actions {
  margin-top: 30px;
}

.tc-solution-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #285078;
  background: #f2f7ff;
  border: 1px solid #d9e8ff;
  font-weight: 700;
}

.tc-solution-actions a:hover {
  color: #006eff;
  border-color: #006eff;
}

.tc-solution-image {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.tc-solution-image::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  background: #e9f3ff;
}

.tc-solution-image img {
  position: relative;
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(20, 42, 79, .16);
}

.tc-map-panel {
  position: relative;
  min-height: 480px;
  padding: 24px;
  background: #101927;
  overflow: hidden;
}

.tc-map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 164, 255, .24), transparent 55%);
}

.tc-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tc-map-fallback {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .72);
}

.tc-map-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.tc-map-label {
  position: absolute;
  transform: translate(12px, -50%);
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 110, 255, .88);
  box-shadow: 0 0 0 8px rgba(0, 110, 255, .12);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.tc-map-legend {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 48px);
  padding: 14px 16px;
  color: rgba(255, 255, 255, .72);
  background: rgba(8, 20, 40, .72);
  border: 1px solid rgba(117, 190, 255, .2);
  backdrop-filter: blur(12px);
}

.tc-map-legend strong {
  color: #fff;
}

.tc-map-legend span {
  position: relative;
  padding-left: 13px;
}

.tc-map-legend span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  background: #00d5ff;
  border-radius: 50%;
}

.tc-news {
  background: #fff;
}

.tc-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tc-resource-grid a {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6edf6;
  transition: transform .2s ease, border-color .2s ease;
}

.tc-resource-grid a:hover {
  transform: translateY(-3px);
  border-color: #b9d8ff;
}

.tc-resource-grid strong {
  color: #17213b;
  font-size: 19px;
}

.tc-resource-grid span {
  color: #667085;
}

.tc-final-cta {
  color: #fff;
  background:
    linear-gradient(rgba(7, 16, 34, .76), rgba(7, 16, 34, .82)),
    url("../img/cloud-bg.png") center / cover no-repeat;
}

.tc-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 260px;
  padding: 52px 0;
}

.tc-final-inner .tc-eyebrow,
.tc-final-inner h2,
.tc-final-inner p {
  color: #fff;
}

.tc-final-inner p {
  color: rgba(255, 255, 255, .78);
}

.tc-footer {
  color: rgba(255, 255, 255, .7);
  background: #111827;
}

.tc-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 54px 0 44px;
}

.tc-logo-footer {
  margin: 0 0 18px;
  color: #fff;
}

.tc-logo-footer .tc-logo-mark::before,
.tc-logo-footer .tc-logo-mark::after {
  background: #111827;
}

.tc-footer p {
  margin: 0;
}

.tc-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
}

.tc-footer a:not(.tc-logo) {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, .68);
}

.tc-footer a:hover {
  color: #fff;
}

.tc-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.tc-footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin: 0 !important;
  background: rgba(255, 255, 255, .08);
}

.tc-footer-contact {
  margin: 8px 0 !important;
}

.tc-footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, .44);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width: 1120px) {
  .tc-header-actions .tc-action-icon,
  .tc-console {
    display: none;
  }

  .tc-nav-list > li > a {
    padding: 0 11px;
  }

  .tc-hero-inner,
  .tc-solution-shell {
    grid-template-columns: 1fr;
  }

  .tc-hero-visual {
    max-width: 720px;
  }

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

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

@media (max-width: 840px) {
  .tc-container {
    width: min(100% - 28px, 1200px);
  }

  .tc-topbar-link {
    gap: 10px;
    padding-right: 34px;
    font-size: 12px;
  }

  .tc-topbar-link span {
    display: none;
  }

  .tc-header-inner {
    min-height: 58px;
  }

  .tc-mobile-toggle {
    display: block;
  }

  .tc-nav,
  .tc-header-actions {
    position: fixed;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
  }

  .tc-nav {
    top: 58px;
    bottom: 0;
    overflow-y: auto;
    padding: 12px 14px 84px;
    border-top: 1px solid #edf1f7;
    box-shadow: 0 18px 38px rgba(16, 39, 74, .12);
  }

  .nav-open .tc-nav,
  .nav-open .tc-header-actions {
    display: block;
  }

  .tc-nav-list {
    display: grid;
  }

  .tc-nav-list > li,
  .tc-nav-list > li > a {
    min-height: 46px;
    height: auto;
  }

  .tc-nav-list > li > a {
    width: 100%;
    padding: 0 4px;
  }

  .tc-mega-menu {
    position: static;
    min-width: 0;
    width: 100%;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    padding: 12px;
    margin: 0 0 10px;
  }

  .tc-has-menu:hover .tc-mega-menu,
  .tc-has-menu:focus-within .tc-mega-menu,
  .tc-has-menu.menu-open .tc-mega-menu {
    display: grid;
  }

  .tc-mega-products,
  .tc-mega-grid,
  .tc-solution-list {
    grid-template-columns: 1fr;
  }

  .tc-header-actions {
    top: auto !important;
    bottom: 0;
    padding: 12px 14px;
    border-top: 1px solid #edf1f7;
    box-shadow: 0 -10px 28px rgba(16, 39, 74, .1);
  }

  .tc-header-actions .tc-action-icon,
  .tc-header-actions .tc-console {
    display: none;
  }

  .tc-header-actions .tc-login,
  .tc-header-actions .tc-signup {
    display: inline-flex;
    width: calc(50% - 6px);
    margin: 0;
    vertical-align: top;
  }

  .tc-hero {
    min-height: 0;
  }

  .tc-hero-inner {
    min-height: 0;
    padding: 48px 0 26px;
  }

  .tc-hero-content h1 {
    font-size: 36px;
  }

  .tc-hero-content p {
    font-size: 15px;
  }

  .tc-hero-switcher,
  .tc-promo-grid,
  .tc-stat-grid,
  .tc-resource-grid {
    grid-template-columns: 1fr;
  }

  .tc-hero-switcher button,
  .tc-promo-card {
    border-right: 0;
    border-bottom: 1px solid #e2ebf7;
  }

  .tc-product-layout {
    grid-template-columns: 1fr;
  }

  .tc-product-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tc-product-tabs button {
    text-align: center;
    padding: 0 8px;
  }

  .tc-product-grid {
    grid-template-columns: 1fr;
  }

  .tc-map-panel {
    min-height: 300px;
  }

  .tc-final-inner {
    display: grid;
    min-height: 0;
  }

  .tc-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .tc-section {
    padding: 62px 0;
  }

  .tc-section-head h2,
  .tc-final-inner h2,
  .tc-solution-copy h2 {
    font-size: 27px;
  }

  .tc-hero-content h1 {
    font-size: 31px;
  }

  .tc-btn {
    width: 100%;
  }

  .tc-hero-visual {
    min-height: 240px;
  }

  .tc-float-card {
    position: static;
    margin-top: 10px;
  }

  .tc-product-tabs,
  .tc-footer-grid {
    grid-template-columns: 1fr;
  }

  .tc-search-inner {
    display: grid;
  }

  .tc-solution-image img {
    height: 250px;
  }
}

@media (max-width: 840px) {
  body.nav-open {
    overflow: hidden;
  }

  .tc-nav,
  .tc-header-actions,
  .nav-open .tc-nav,
  .nav-open .tc-header-actions {
    display: none;
  }

  .tc-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(7, 14, 28, .48);
    transition: opacity .25s ease, visibility .25s ease;
  }

  .tc-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid !important;
    grid-template-rows: 56px 1fr 64px;
    width: min(92vw, 520px);
    max-width: 100%;
    background: #fff;
    box-shadow: -24px 0 60px rgba(6, 22, 48, .24);
    transform: translateX(100%);
    pointer-events: none;
    transition: transform .28s ease;
  }

  .nav-open .tc-mobile-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-open .tc-mobile-drawer {
    transform: translateX(0);
    pointer-events: auto;
  }

  .tc-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid #edf1f7;
  }

  .tc-mobile-drawer-head strong {
    color: #101828;
    font-size: 16px;
  }

  .tc-mobile-drawer-head .tc-icon-btn {
    width: 40px;
    height: 40px;
    color: #475467;
  }

  .tc-mobile-drawer-body {
    display: grid;
    grid-template-columns: 30% 70%;
    min-height: 0;
  }

  .tc-mobile-primary {
    min-width: 0;
    overflow-y: auto;
    background: #f4f7fb;
    border-right: 1px solid #e6edf6;
  }

  .tc-mobile-primary-item {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 10px 8px;
    border: 0;
    border-left: 3px solid transparent;
    color: #4b5565;
    background: transparent;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  .tc-mobile-primary-item.active {
    color: #006eff;
    background: #fff;
    border-left-color: #006eff;
  }

  .tc-mobile-secondary {
    min-width: 0;
    overflow-y: auto;
    padding: 14px;
  }

  .tc-mobile-secondary-panel {
    display: none;
  }

  .tc-mobile-secondary-panel.active {
    display: block;
  }

  .tc-mobile-panel-title {
    margin-bottom: 10px;
    color: #101828;
    font-size: 16px;
    font-weight: 800;
  }

  .tc-mobile-product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 42px;
    padding: 10px 0;
    color: #344054;
    border-bottom: 1px solid #edf1f7;
    font-size: 14px;
    font-weight: 600;
  }

  .tc-mobile-product-link em {
    flex: 0 0 auto;
    padding: 2px 6px;
    color: #fff;
    background: #006eff;
    font-size: 11px;
    font-style: normal;
  }

  .tc-mobile-drawer-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid #edf1f7;
    box-shadow: 0 -8px 24px rgba(16, 39, 74, .08);
  }

  .tc-mobile-drawer-foot a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: #006eff;
    border: 1px solid #bfdcff;
    font-weight: 700;
  }

  .tc-mobile-drawer-foot a:last-child {
    color: #fff;
    border-color: #006eff;
    background: #006eff;
  }
}

@media (max-width: 560px) {
  .tc-mobile-drawer {
    width: 94vw;
  }

  .tc-mobile-secondary {
    padding: 12px;
  }

  .tc-map-label {
    transform: translate(8px, -50%) scale(.86);
    transform-origin: left center;
  }

  .tc-map-legend {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

@media (min-width: 841px) {
  body.nav-open {
    overflow: auto;
  }

  .tc-mobile-backdrop,
  .tc-mobile-drawer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .tc-nav {
    display: flex !important;
  }

  .tc-header-actions {
    display: flex !important;
  }
}
