:root {
  --tcwf-blue-600: #0052d9;
  --tcwf-blue-500: #2670e8;
  --tcwf-cyan-500: #00a4ff;
  --tcwf-ink-950: #000;
  --tcwf-ink-900: #16181a;
  --tcwf-ink-800: #293957;
  --tcwf-ink-700: #333;
  --tcwf-ink-500: #666;
  --tcwf-ink-400: #888;
  --tcwf-ink-300: #999;
  --tcwf-surface-0: #fff;
  --tcwf-surface-1: #f7f8fa;
  --tcwf-surface-2: #f5f7fa;
  --tcwf-surface-3: #f3f5f8;
  --tcwf-border: #e5e8ed;
  --tcwf-border-soft: #e2e6ed;
  --tcwf-border-muted: #e5e5e5;
  --tcwf-success: #0abf5b;
  --tcwf-success-bg: #d6f4e4;
  --tcwf-error: #e54545;
  --tcwf-error-bg: #fbe0e0;
  --tcwf-info: #006eff;
  --tcwf-info-bg: #d5e7ff;
  --tcwf-font-sans: "PingFang SC", "Helvetica Neue", Arial, "Hiragino Sans GB",
    "Microsoft YaHei UI", "Microsoft YaHei", SimSun, sans-serif;
  --tcwf-container: 1200px;
  --tcwf-gutter: 10px;
  --tcwf-gutter-mobile: 16px;
  --tcwf-radius: 2px;
  --tcwf-shadow-card: 0 2px 4px rgba(3, 27, 78, 0.06);
  --tcwf-shadow-card-hover: 0 4px 8px rgba(3, 27, 78, 0.12);
  --tcwf-shadow-product: 0 2px 14px rgba(0, 36, 92, 0.1);
  --tcwf-ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
  --tcwf-ease-toggle: cubic-bezier(0.65, 0, 0.35, 1);
  --tcwf-duration-fast: 150ms;
  --tcwf-duration-state: 250ms;
  --tcwf-duration-layout: 400ms;
}

.tcwf-root,
.tcwf-root *,
.tcwf-root *::before,
.tcwf-root *::after {
  box-sizing: border-box;
}

.tcwf-root {
  min-width: 320px;
  color: var(--tcwf-ink-700);
  background: var(--tcwf-surface-0);
  font-family: var(--tcwf-font-sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tcwf-root a {
  color: inherit;
  text-decoration: none;
}

.tcwf-root button,
.tcwf-root input {
  font: inherit;
}

.tcwf-root img {
  display: block;
  max-width: 100%;
}

.tcwf-skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--tcwf-blue-600);
  transform: translateY(-150%);
}

.tcwf-skip-link:focus {
  transform: translateY(0);
}

.tcwf-section {
  padding: 60px 0;
  background: var(--tcwf-surface-0);
}

.tcwf-section--muted {
  background: var(--tcwf-surface-2);
}

.tcwf-section__inner {
  width: 100%;
  max-width: var(--tcwf-container);
  margin: 0 auto;
  padding: 0 var(--tcwf-gutter);
}

.tcwf-section__header {
  margin: 0 0 40px;
  text-align: center;
}

.tcwf-section__title {
  margin: 0;
  color: var(--tcwf-ink-950);
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
}

.tcwf-section__description {
  max-width: 65ch;
  margin: 16px auto 0;
  color: var(--tcwf-ink-500);
  font-size: 16px;
  line-height: 1.5;
}

.tcwf-action {
  display: inline-flex;
  min-width: 88px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--tcwf-radius);
  color: #fff;
  background: var(--tcwf-blue-600);
  font-size: 14px;
  line-height: 34px;
  cursor: pointer;
  transition:
    background-color var(--tcwf-duration-state) var(--tcwf-ease-enter),
    border-color var(--tcwf-duration-state) var(--tcwf-ease-enter),
    color var(--tcwf-duration-state) var(--tcwf-ease-enter),
    transform var(--tcwf-duration-fast) var(--tcwf-ease-enter);
}

.tcwf-action:hover {
  background: var(--tcwf-blue-500);
}

.tcwf-action:active {
  transform: translateY(1px);
}

.tcwf-action--large {
  min-width: 140px;
  height: 40px;
  line-height: 38px;
}

.tcwf-action--secondary {
  color: var(--tcwf-blue-600);
  border-color: var(--tcwf-blue-600);
  background: transparent;
}

.tcwf-action--secondary:hover {
  color: #fff;
  background: var(--tcwf-blue-600);
}

.tcwf-action--hero-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.tcwf-action--hero-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.tcwf-text-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--tcwf-blue-600);
  cursor: pointer;
}

.tcwf-text-link:hover {
  text-decoration: underline;
}

.tcwf-text-link__arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.tcwf-action:focus-visible,
.tcwf-text-link:focus-visible,
.tcwf-hero__arrow:focus-visible,
.tcwf-hero__progress-button:focus-visible,
.tcwf-tabs__tab:focus-visible,
.tcwf-accordion__trigger:focus-visible,
.tcwf-dialog__close:focus-visible,
.tcwf-event__arrow:focus-visible,
.tcwf-event__dot:focus-visible,
.tcwf-search__input:focus-visible,
.tcwf-search__button:focus-visible,
.tcwf-split-cases__controls button:focus-visible,
.tcwf-floating-index button:focus-visible {
  outline: 2px solid var(--tcwf-cyan-500);
  outline-offset: 3px;
}

.tcwf-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 60px;
}

.tcwf-benefit {
  text-align: center;
}

.tcwf-benefit__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.tcwf-benefit__title {
  margin: 0;
  color: var(--tcwf-ink-950);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.tcwf-benefit__description {
  margin: 12px 0 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.tcwf-step {
  display: flex;
  min-width: 0;
  align-items: center;
}

.tcwf-step__number {
  position: relative;
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: var(--tcwf-blue-600);
  font-size: 16px;
  line-height: 22px;
}

.tcwf-step__number::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: var(--tcwf-surface-2);
  content: "";
  transform: rotate(-45deg);
  transform-origin: left bottom;
}

.tcwf-step__number-text {
  position: relative;
  z-index: 1;
}

.tcwf-step__body {
  min-width: 0;
  margin-left: 6px;
}

.tcwf-step__title {
  margin: 0;
  color: var(--tcwf-ink-700);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  white-space: nowrap;
}

.tcwf-step__description {
  margin: 4px 0 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 22px;
}

.tcwf-step__connector {
  width: 100px;
  height: 0;
  flex: 0 1 100px;
  margin: 0 8px;
  border-top: 1px solid var(--tcwf-ink-700);
}

.tcwf-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tcwf-type-card {
  position: relative;
  min-height: 136px;
  overflow: hidden;
  border: 1px solid var(--tcwf-border);
  background: var(--tcwf-surface-0);
  box-shadow: var(--tcwf-shadow-card);
  transition: box-shadow 200ms linear;
}

.tcwf-type-card:hover {
  box-shadow: var(--tcwf-shadow-card-hover);
}

.tcwf-type-card__art {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 136px;
  object-fit: cover;
  object-position: right top;
  pointer-events: none;
}

.tcwf-type-card__content {
  position: relative;
  z-index: 1;
  padding: 20px 56px 20px 20px;
}

.tcwf-type-card__heading-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tcwf-type-card__title {
  margin: 0;
  overflow: hidden;
  color: var(--tcwf-ink-950);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 200ms linear;
}

.tcwf-type-card:hover .tcwf-type-card__title {
  color: var(--tcwf-blue-600);
}

.tcwf-type-card__description {
  display: -webkit-box;
  max-width: 80%;
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tcwf-type-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 20px;
}

.tcwf-status {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-size: 12px;
  line-height: 18px;
}

.tcwf-status--success {
  color: var(--tcwf-success);
  background: var(--tcwf-success-bg);
}

.tcwf-status--info {
  color: var(--tcwf-info);
  background: var(--tcwf-info-bg);
}

.tcwf-status--error {
  color: var(--tcwf-error);
  background: var(--tcwf-error-bg);
}

.tcwf-product-groups {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.tcwf-product-groups::after {
  position: absolute;
  left: 50%;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: var(--tcwf-border);
  content: "";
  transform: translateX(-0.5px);
}

.tcwf-product-group {
  min-width: 0;
}

.tcwf-product-group__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.tcwf-product-group__title {
  margin: 0;
  color: var(--tcwf-ink-950);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.tcwf-product-group__cards {
  display: grid;
  gap: 20px;
}

.tcwf-product-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 20px;
  border: 2px solid #fff;
  background: linear-gradient(0deg, var(--tcwf-surface-3) 0%, #fff 100%);
  box-shadow: var(--tcwf-shadow-product);
}

.tcwf-product-card__title {
  margin: 0;
  overflow: hidden;
  color: var(--tcwf-ink-800);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 200ms linear;
}

.tcwf-product-card:hover .tcwf-product-card__title {
  color: var(--tcwf-blue-600);
}

.tcwf-product-card__traits {
  display: grid;
  flex: 1;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
  list-style: none;
}

.tcwf-product-card__trait-label {
  color: var(--tcwf-ink-700);
  font-weight: 500;
}

.tcwf-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 16px;
}

.tcwf-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tcwf-logo-grid__item {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tcwf-logo-grid__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tcwf-solution-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #f3f9fb;
}

.tcwf-solution-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tcwf-solution-hero__art {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - var(--tcwf-container)) / 2));
  bottom: 0;
  max-width: 48%;
  max-height: 92%;
  object-fit: contain;
  object-position: right bottom;
}

.tcwf-solution-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: var(--tcwf-container);
  height: 100%;
  align-items: center;
  margin: 0 auto;
  padding: 62px var(--tcwf-gutter) 0;
}

.tcwf-solution-hero__copy {
  width: min(500px, 48%);
}

.tcwf-solution-hero h1 {
  margin: 0;
  color: var(--tcwf-ink-950);
  font-size: 42px;
  font-weight: 500;
  line-height: 52px;
}

.tcwf-solution-hero p {
  margin: 20px 0 0;
  color: #495770;
  font-size: 16px;
  line-height: 28px;
}

.tcwf-solution-hero--dark h1,
.tcwf-solution-hero--dark p {
  color: #fff;
}

.tcwf-solution-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.tcwf-solution-features {
  display: grid;
  gap: 20px;
}

.tcwf-solution-features--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tcwf-solution-features--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tcwf-solution-features--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tcwf-solution-feature {
  display: flex;
  min-height: 156px;
  gap: 20px;
  padding: 30px 24px;
  border: 1px solid var(--tcwf-border);
  background: #fff;
}

.tcwf-solution-features--soft .tcwf-solution-feature {
  border: 2px solid #fff;
  border-radius: 4px;
  background: linear-gradient(0deg, #fff 0%, var(--tcwf-surface-3) 100%);
  box-shadow:
    8px 8px 20px rgba(55, 99, 170, 0.1),
    -8px -8px 20px #fff;
}

.tcwf-solution-feature__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}

.tcwf-solution-feature__title {
  margin: 0;
  color: var(--tcwf-ink-950);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.tcwf-solution-feature__description {
  margin: 10px 0 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-round-steps {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tcwf-round-step {
  min-width: 0;
  text-align: center;
}

.tcwf-round-step__marker-row {
  display: flex;
  align-items: center;
}

.tcwf-round-step__number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: var(--tcwf-blue-600);
  background: linear-gradient(145deg, #fff, var(--tcwf-surface-3));
  box-shadow:
    8px 8px 20px rgba(55, 99, 170, 0.1),
    -8px -8px 20px #fff;
  font-size: 24px;
  line-height: 56px;
}

.tcwf-round-step__connector {
  width: calc(100% - 60px);
  height: 2px;
  flex: 1 1 auto;
  background: repeating-linear-gradient(90deg, #aab7ca 0 4px, transparent 4px 8px);
}

.tcwf-round-step__title {
  margin: 24px 12px 0 0;
  color: var(--tcwf-ink-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.tcwf-round-step__description {
  margin: 8px 12px 0 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 22px;
}

.tcwf-media-products {
  display: grid;
  gap: 20px;
}

.tcwf-media-product {
  display: grid;
  min-height: 168px;
  grid-template-columns: minmax(0, 1fr) 236px;
  gap: 20px;
}

.tcwf-media-product__main,
.tcwf-media-product__features {
  border: 2px solid #fff;
  border-radius: 4px;
  background: linear-gradient(0deg, #fff 0%, var(--tcwf-surface-3) 100%);
  box-shadow:
    8px 8px 20px rgba(55, 99, 170, 0.1),
    -8px -8px 20px #fff;
}

.tcwf-media-product__main {
  position: relative;
  min-width: 0;
  padding: 26px 220px 26px 38px;
  overflow: hidden;
}

.tcwf-media-product__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tcwf-media-product__heading > img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tcwf-media-product__heading h3 {
  margin: 0;
  color: var(--tcwf-ink-700);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.tcwf-media-product__main > p {
  margin: 10px 0 6px;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 22px;
}

.tcwf-media-product__illustration {
  position: absolute;
  right: 0;
  top: 50%;
  width: 220px;
  height: 220px;
  object-fit: contain;
  transform: translateY(-50%);
}

.tcwf-media-product__features {
  display: grid;
  align-content: center;
  gap: 10px;
  margin: 0;
  padding: 24px 24px 24px 46px;
  color: var(--tcwf-ink-700);
  font-size: 14px;
  line-height: 22px;
}

.tcwf-media-product__features li::marker {
  color: var(--tcwf-success);
}

.tcwf-split-story {
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 50%);
  gap: 40px;
  align-items: stretch;
  padding: 40px;
  background: var(--tcwf-surface-2);
}

.tcwf-split-story--image-left .tcwf-split-story__content {
  order: 2;
}

.tcwf-split-story__content {
  min-width: 0;
}

.tcwf-split-story__title {
  margin: 0;
  color: var(--tcwf-ink-950);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.tcwf-split-story__description {
  margin: 12px 0 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-split-story__list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.tcwf-split-story__list li {
  padding-left: 20px;
  border-left: 2px solid var(--tcwf-blue-600);
}

.tcwf-split-story__list strong,
.tcwf-split-story__list span {
  display: block;
}

.tcwf-split-story__list strong {
  color: var(--tcwf-ink-700);
  font-size: 16px;
  line-height: 26px;
}

.tcwf-split-story__list span {
  margin-top: 4px;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-split-story__image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.tcwf-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tcwf-case-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tcwf-border);
  background: #fff;
  box-shadow: var(--tcwf-shadow-card);
}

.tcwf-case-card__image {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.tcwf-case-card__body {
  padding: 20px;
}

.tcwf-case-card__title {
  margin: 0;
  color: var(--tcwf-ink-700);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.tcwf-case-card__description {
  display: -webkit-box;
  margin: 10px 0 12px;
  overflow: hidden;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tcwf-related-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tcwf-related-product {
  display: block;
  min-height: 150px;
  padding: 24px 28px;
  border: 1px solid var(--tcwf-border);
  background: #fff;
  transition:
    border-color var(--tcwf-duration-state) var(--tcwf-ease-enter),
    box-shadow var(--tcwf-duration-state) var(--tcwf-ease-enter);
}

.tcwf-related-product:hover {
  border-color: var(--tcwf-blue-500);
  box-shadow: var(--tcwf-shadow-card-hover);
}

.tcwf-related-product__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tcwf-related-product__heading img {
  width: 24px;
  height: 24px;
}

.tcwf-related-product h3 {
  margin: 0;
  color: var(--tcwf-ink-700);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.tcwf-related-product p {
  margin: 12px 0 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-solution-cta {
  color: #fff;
  background: #18243a;
}

.tcwf-solution-cta__inner {
  position: relative;
  display: flex;
  width: 100%;
  max-width: var(--tcwf-container);
  min-height: 230px;
  align-items: center;
  margin: 0 auto;
  padding: 40px var(--tcwf-gutter);
  overflow: hidden;
}

.tcwf-solution-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.tcwf-solution-cta h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.tcwf-solution-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-solution-cta__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.tcwf-solution-cta__inner > img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 48%;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.tcwf-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  color: #fff;
  background: #23385f;
}

.tcwf-hero__viewport,
.tcwf-hero__slides,
.tcwf-hero__slide {
  width: 100%;
  height: 100%;
}

.tcwf-hero__slides {
  position: relative;
}

.tcwf-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 100ms linear;
}

.tcwf-hero__slide[data-active="true"] {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.tcwf-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tcwf-hero__slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 39, 68, 0.38), rgba(24, 39, 68, 0) 64%);
  content: "";
}

.tcwf-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--tcwf-container);
  margin: 0 auto;
  padding: 92px 10px 0;
}

.tcwf-hero__copy {
  max-width: 650px;
}

.tcwf-hero__title {
  display: -webkit-box;
  max-height: 56px;
  margin: 0 0 16px;
  overflow: hidden;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.tcwf-hero__description {
  display: -webkit-box;
  max-width: 580px;
  max-height: 52px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tcwf-hero__meta {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 26px;
}

.tcwf-hero__meta a {
  color: var(--tcwf-cyan-500);
}

.tcwf-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.tcwf-hero__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity var(--tcwf-duration-state) var(--tcwf-ease-enter);
}

.tcwf-hero:hover .tcwf-hero__arrow,
.tcwf-hero:focus-within .tcwf-hero__arrow {
  opacity: 1;
}

.tcwf-hero__arrow--prev {
  left: 50px;
}

.tcwf-hero__arrow--next {
  right: 50px;
}

.tcwf-hero__arrow img {
  width: 20px;
  height: 30px;
}

.tcwf-hero__progress {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 358px;
  display: flex;
  width: min(100%, var(--tcwf-container));
  gap: 6px;
  padding: 0 17px;
  transform: translateX(-50%);
}

.tcwf-hero__progress-button {
  position: relative;
  width: 30px;
  height: 23px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tcwf-hero__progress-track {
  display: block;
  width: 30px;
  height: 3px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.tcwf-hero__progress-fill {
  display: block;
  width: var(--tcwf-progress, 0%);
  height: 100%;
  background: #fff;
}

.tcwf-tabs__list {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  border-bottom: 1px solid var(--tcwf-border-muted);
  scrollbar-width: thin;
}

.tcwf-tabs__tab {
  position: relative;
  flex: 0 0 auto;
  margin: 0 10px;
  padding: 0 10px;
  border: 0;
  color: var(--tcwf-ink-950);
  background: transparent;
  font-size: 18px;
  line-height: 50px;
  cursor: pointer;
}

.tcwf-tabs__tab[aria-selected="true"] {
  color: var(--tcwf-blue-600);
  font-weight: 500;
}

.tcwf-tabs__tab[aria-selected="true"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--tcwf-blue-600);
  content: "";
}

.tcwf-tabs__panel {
  padding-top: 40px;
}

.tcwf-scenario-explorer__mobile {
  display: none;
}

.tcwf-example-mobile-only {
  display: none;
}

.tcwf-accordion {
  border-top: 1px solid var(--tcwf-border-muted);
  background: #fff;
}

.tcwf-accordion__item {
  border-bottom: 1px solid var(--tcwf-border-muted);
}

.tcwf-accordion__trigger {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border: 0;
  color: var(--tcwf-ink-950);
  background: #fff;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  cursor: pointer;
}

.tcwf-accordion__trigger[aria-expanded="true"] {
  color: var(--tcwf-blue-600);
}

.tcwf-accordion__caret {
  width: 16px;
  height: 16px;
  transition: transform var(--tcwf-duration-state) var(--tcwf-ease-toggle);
}

.tcwf-accordion__trigger[aria-expanded="true"] .tcwf-accordion__caret {
  transform: rotate(180deg);
}

.tcwf-accordion__panel {
  padding: 20px;
  border-top: 1px solid var(--tcwf-border-muted);
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 28px;
}

.tcwf-dialog {
  width: min(600px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 16px 48px rgba(3, 27, 78, 0.24);
}

.tcwf-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.tcwf-dialog__inner {
  position: relative;
  padding: 25px 25px 30px;
}

.tcwf-dialog__title {
  margin: 0 36px 30px 0;
  color: var(--tcwf-ink-950);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.tcwf-dialog__close {
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tcwf-dialog__close img {
  width: 20px;
  height: 20px;
}

.tcwf-dialog__body {
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-dialog__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.tcwf-event {
  position: relative;
  overflow: hidden;
  --tcwf-event-card-width: 690px;
}

.tcwf-event__viewport {
  min-height: 260px;
  padding: 12px 0 40px;
  overflow: hidden;
}

.tcwf-event__track {
  display: flex;
  width: max-content;
  transform: translate3d(
    calc(50vw - var(--tcwf-event-card-width) / 2 - var(--tcwf-event-index) * var(--tcwf-event-card-width)),
    0,
    0
  );
  transition: transform 300ms var(--tcwf-ease-toggle);
}

.tcwf-event__slide {
  width: var(--tcwf-event-card-width);
  flex: 0 0 var(--tcwf-event-card-width);
  padding: 0 35px;
  opacity: 0.6;
  transform: scale(1);
  transition:
    opacity 500ms var(--tcwf-ease-enter),
    transform 500ms var(--tcwf-ease-enter);
}

.tcwf-event__slide[data-active="true"] {
  opacity: 1;
  transform: scale(1.08);
}

.tcwf-event__card {
  position: relative;
  display: grid;
  min-height: 196px;
  grid-template-columns: 285px 1fr;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--tcwf-shadow-card);
}

.tcwf-event__media {
  width: 285px;
  height: 196px;
  object-fit: cover;
}

.tcwf-event__content {
  min-width: 0;
  padding: 20px;
}

.tcwf-event__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--tcwf-ink-700);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.tcwf-event__date {
  margin-top: 2px;
  color: var(--tcwf-ink-300);
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}

.tcwf-event__description {
  display: -webkit-box;
  max-height: 88px;
  margin: 12px 0 0;
  overflow: hidden;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.tcwf-event__arrow {
  position: absolute;
  z-index: 2;
  top: 70px;
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--tcwf-shadow-card);
  cursor: pointer;
  transition: opacity var(--tcwf-duration-state) var(--tcwf-ease-enter);
}

.tcwf-event:hover .tcwf-event__arrow,
.tcwf-event:focus-within .tcwf-event__arrow {
  opacity: 1;
}

.tcwf-event__arrow--prev {
  left: 20px;
}

.tcwf-event__arrow--next {
  right: 20px;
}

.tcwf-event__arrow img {
  width: 19px;
  height: 36px;
}

.tcwf-event__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tcwf-event__dot {
  width: 30px;
  height: 18px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tcwf-event__dot::before {
  display: block;
  width: 30px;
  height: 2px;
  background: #d8d8d8;
  content: "";
}

.tcwf-event__dot[aria-current="true"]::before {
  background: var(--tcwf-cyan-500);
}

.tcwf-split-cases {
  position: relative;
}

.tcwf-split-cases__desktop {
  position: relative;
  display: grid;
  height: 566px;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: #242933;
}

.tcwf-split-cases__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcwf-split-cases__desktop::after {
  position: absolute;
  inset: 0 auto 0 24%;
  width: 34%;
  background: linear-gradient(90deg, rgba(36, 41, 51, 0), #242933 88%);
  content: "";
  pointer-events: none;
}

.tcwf-split-cases__stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 60px max(40px, calc((100vw - var(--tcwf-container)) / 2)) 60px 8%;
}

.tcwf-split-cases__card {
  width: min(500px, 100%);
  min-height: 238px;
  padding: 40px 32px 24px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.tcwf-split-cases__logo {
  width: auto;
  max-width: 180px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.tcwf-split-cases__card h3 {
  margin: 16px 0 0;
  color: var(--tcwf-ink-700);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.tcwf-split-cases__card p {
  margin: 12px 0;
  color: var(--tcwf-ink-500);
  font-size: 14px;
  line-height: 24px;
}

.tcwf-split-cases__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.tcwf-split-cases__controls button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #2f3541;
  box-shadow:
    8px 8px 20px rgba(18, 21, 26, 0.6),
    -8px -8px 20px rgba(54, 62, 77, 0.5);
  cursor: pointer;
}

.tcwf-split-cases__controls img {
  width: 20px;
  height: 20px;
}

.tcwf-split-cases__mobile {
  display: none;
}

.tcwf-floating-index {
  position: fixed;
  z-index: 99;
  left: 16px;
  top: 50%;
  display: flex;
  width: 44px;
  flex-direction: column;
  border: 1px solid var(--tcwf-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--tcwf-shadow-card);
  transform: translateY(-50%);
}

.tcwf-floating-index button {
  min-height: 44px;
  padding: 6px 4px;
  border: 0;
  border-bottom: 1px solid var(--tcwf-border);
  color: var(--tcwf-ink-500);
  background: transparent;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
}

.tcwf-floating-index button:last-child {
  border-bottom: 0;
}

.tcwf-floating-index button[aria-current="location"] {
  color: #fff;
  background: var(--tcwf-blue-600);
}

.tcwf-search {
  position: relative;
  margin-top: 30px;
}

.tcwf-search__label {
  display: block;
  margin-bottom: 8px;
  color: var(--tcwf-ink-700);
  font-size: 14px;
  font-weight: 500;
}

.tcwf-search__control {
  position: relative;
}

.tcwf-search__input {
  width: 100%;
  height: 46px;
  padding: 4px 122px 4px 14px;
  border: 1px solid #fff;
  border-radius: 2px;
  color: var(--tcwf-ink-700);
  background: #fff;
  font-size: 14px;
  line-height: 30px;
}

.tcwf-search__input::placeholder {
  color: #737b87;
}

.tcwf-search__button {
  position: absolute;
  right: 0;
  top: 0;
  width: 108px;
  height: 46px;
  border: 0;
  border-radius: 0 2px 2px 0;
  color: #fff;
  background: var(--tcwf-blue-600);
  cursor: pointer;
}

.tcwf-search__button:hover {
  background: var(--tcwf-blue-500);
}

.tcwf-search__message {
  margin: 8px 0 0;
  color: var(--tcwf-ink-400);
  font-size: 14px;
  line-height: 22px;
}

.tcwf-search__message--error {
  color: var(--tcwf-error);
}

@media (max-width: 1367px) {
  .tcwf-section {
    padding: 45px 0 50px;
  }

  .tcwf-section__header {
    margin-bottom: 30px;
  }

  .tcwf-section__title {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  .tcwf-section {
    padding: 45px 0 50px;
  }

  .tcwf-section--muted {
    margin-bottom: 12px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
  }

  .tcwf-section__inner {
    padding: 0 var(--tcwf-gutter-mobile);
  }

  .tcwf-section__header {
    margin-bottom: 24px;
  }

  .tcwf-section__title {
    font-size: 24px;
    line-height: 32px;
  }

  .tcwf-section__description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 24px;
  }

  .tcwf-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }

  .tcwf-benefit {
    position: relative;
    min-height: 48px;
    padding-left: 60px;
    text-align: left;
  }

  .tcwf-benefit__icon {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .tcwf-benefit__title {
    font-size: 16px;
  }

  .tcwf-benefit__description {
    margin-top: 10px;
  }

  .tcwf-steps {
    display: grid;
    gap: 0;
  }

  .tcwf-step {
    position: relative;
    align-items: flex-start;
    margin-left: 8px;
    padding-bottom: 23px;
  }

  .tcwf-step:not(:last-child)::before {
    position: absolute;
    left: -8px;
    top: 20px;
    bottom: -10px;
    border-left: 1px dashed #cecece;
    content: "";
  }

  .tcwf-step::after {
    position: absolute;
    left: -10px;
    top: 12px;
    width: 6px;
    height: 6px;
    border: 1px solid #cecece;
    border-radius: 50%;
    background: #fff;
    content: "";
  }

  .tcwf-step__number::after {
    background: #fff;
  }

  .tcwf-step__connector {
    display: none;
  }

  .tcwf-type-grid {
    gap: 16px 20px;
  }

  .tcwf-type-card__content {
    padding: 16px 56px 16px 20px;
  }

  .tcwf-type-card__title {
    font-size: 16px;
  }

  .tcwf-type-card__actions {
    margin-top: 10px;
  }

  .tcwf-product-groups {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tcwf-product-groups::after {
    display: none;
  }

  .tcwf-product-card {
    padding: 12px;
  }

  .tcwf-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 0;
    margin-right: calc(var(--tcwf-gutter-mobile) * -1);
    margin-left: calc(var(--tcwf-gutter-mobile) * -1);
  }

  .tcwf-logo-grid__item {
    height: 36px;
  }

  .tcwf-solution-hero {
    height: 248px;
  }

  .tcwf-solution-hero__inner {
    align-items: flex-end;
    padding: 24px var(--tcwf-gutter-mobile);
  }

  .tcwf-solution-hero__copy {
    width: 100%;
    text-align: center;
  }

  .tcwf-solution-hero h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .tcwf-solution-hero p {
    display: -webkit-box;
    max-height: 44px;
    margin-top: 8px;
    overflow: hidden;
    font-size: 12px;
    line-height: 22px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .tcwf-solution-hero__actions {
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .tcwf-solution-hero__actions .tcwf-action {
    min-width: 108px;
    height: 36px;
  }

  .tcwf-solution-hero__art {
    right: 50%;
    max-width: 78%;
    max-height: 58%;
    opacity: 0.5;
    transform: translateX(50%);
  }

  .tcwf-solution-features--3,
  .tcwf-solution-features--4,
  .tcwf-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tcwf-split-story {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  .tcwf-split-story--image-left .tcwf-split-story__content {
    order: 0;
  }

  .tcwf-split-story__image {
    min-height: 0;
    aspect-ratio: 1.7 / 1;
  }

  .tcwf-solution-cta__inner {
    min-height: 210px;
    padding: 32px var(--tcwf-gutter-mobile);
  }

  .tcwf-round-steps {
    grid-auto-flow: row;
    gap: 32px;
  }

  .tcwf-round-step {
    position: relative;
    min-height: 40px;
    padding-left: 60px;
    text-align: left;
  }

  .tcwf-round-step__marker-row {
    position: absolute;
    left: 0;
    top: 0;
    bottom: -32px;
    width: 40px;
    flex-direction: column;
  }

  .tcwf-round-step__number {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 18px;
    line-height: 38px;
  }

  .tcwf-round-step__connector {
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, #aab7ca 0 4px, transparent 4px 8px);
  }

  .tcwf-round-step__title {
    margin: 0;
  }

  .tcwf-round-step__description {
    margin: 6px 0 0;
  }

  .tcwf-media-product {
    display: block;
    min-height: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--tcwf-border);
  }

  .tcwf-media-product__main,
  .tcwf-media-product__features {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .tcwf-media-product__main {
    padding: 0;
  }

  .tcwf-media-product__illustration {
    display: none;
  }

  .tcwf-media-product__features {
    gap: 6px;
    padding: 10px 0 0 20px;
  }

  .tcwf-hero {
    height: 248px;
  }

  .tcwf-hero__content {
    padding: 32px 16px 0;
  }

  .tcwf-hero__copy {
    max-width: 100%;
  }

  .tcwf-hero__title {
    max-height: 32px;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .tcwf-hero__description {
    max-height: 48px;
    font-size: 14px;
    line-height: 24px;
  }

  .tcwf-hero__meta {
    display: none;
  }

  .tcwf-hero__actions {
    position: absolute;
    right: 16px;
    top: 147px;
    left: 16px;
    margin: 0;
  }

  .tcwf-hero__actions .tcwf-action {
    flex: 1 1 0;
    min-width: 0;
  }

  .tcwf-hero__arrow {
    display: none;
  }

  .tcwf-hero__progress {
    top: 206px;
    justify-content: center;
    padding: 0 16px;
  }

  .tcwf-tabs__list {
    justify-content: flex-start;
  }

  .tcwf-tabs__tab {
    margin: 0;
    padding: 0 16px 4px;
    font-size: 16px;
    line-height: 26px;
  }

  .tcwf-tabs__panel {
    padding-top: 20px;
  }

  .tcwf-scenario-explorer__desktop {
    display: none;
  }

  .tcwf-scenario-explorer__mobile {
    display: block;
  }

  .tcwf-example-mobile-only {
    display: block;
    margin-top: 24px;
  }

  .tcwf-split-cases__desktop,
  .tcwf-floating-index {
    display: none;
  }

  .tcwf-split-cases__mobile {
    display: grid;
    gap: 16px;
  }

  .tcwf-split-cases__mobile-logo {
    width: auto;
    max-width: 150px;
    height: 40px;
    margin-bottom: 12px;
    object-fit: contain;
    object-position: left center;
  }

  .tcwf-event {
    --tcwf-event-card-width: 232px;
  }

  .tcwf-event__viewport {
    min-height: 342px;
  }

  .tcwf-event__slide {
    padding: 0 26px;
  }

  .tcwf-event__slide[data-active="true"] {
    transform: scale(1.04);
  }

  .tcwf-event__card {
    display: block;
    height: 322px;
    min-height: 0;
    background: var(--tcwf-surface-2);
  }

  .tcwf-event__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .tcwf-event__content {
    padding: 20px;
  }

  .tcwf-event__title {
    max-height: 36px;
    font-size: 14px;
    line-height: 18px;
    -webkit-line-clamp: 2;
  }

  .tcwf-event__date {
    font-size: 12px;
    line-height: 20px;
  }

  .tcwf-event__description {
    height: 64px;
    margin-top: 8px;
    color: #747474;
    font-size: 12px;
    line-height: 16px;
  }

  .tcwf-event__arrow {
    display: none;
  }

  .tcwf-search__input,
  .tcwf-search__button {
    height: 40px;
  }

  .tcwf-search__input {
    border-color: var(--tcwf-border-soft);
  }
}

@media (max-width: 600px) {
  .tcwf-section {
    padding: 32px 0;
  }

  .tcwf-benefits,
  .tcwf-type-grid,
  .tcwf-solution-features--2,
  .tcwf-solution-features--3,
  .tcwf-solution-features--4,
  .tcwf-case-grid,
  .tcwf-related-products {
    grid-template-columns: 1fr;
  }

  .tcwf-type-grid {
    gap: 16px;
  }

  .tcwf-product-card {
    min-height: 0;
  }

  .tcwf-solution-feature {
    min-height: 0;
    padding: 20px 16px;
  }

  .tcwf-solution-cta__inner > img {
    opacity: 0.28;
  }
}

@media (hover: none) {
  .tcwf-type-card:hover,
  .tcwf-event__slide[data-active="true"] {
    box-shadow: var(--tcwf-shadow-card);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tcwf-root *,
  .tcwf-root *::before,
  .tcwf-root *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Static-only shell rules. The scaffold prepends the shared React foundation.css verbatim. */
:root {
  --tcwf-progress: 0%;
  --tcwf-event-index: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #fff;
}

.tcwf-static-page {
  min-height: 100vh;
}

.tcwf-static-header {
  position: relative;
  z-index: 100;
  height: 62px;
  border-bottom: 1px solid rgba(155, 166, 183, 0.3);
  background: #fff;
}

.tcwf-static-header__inner {
  display: flex;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.tcwf-static-brand {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  color: var(--tcwf-ink-900);
  font-size: 18px;
  font-weight: 600;
}

.tcwf-static-page .tcwf-action,
.tcwf-static-page .tcwf-text-link {
  min-height: 44px;
}

.tcwf-static-page .tcwf-action {
  height: 44px;
  line-height: 42px;
}

.tcwf-static-menu {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 0;
  color: var(--tcwf-ink-700);
  background: transparent;
  cursor: pointer;
}

.tcwf-static-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  gap: 4px;
  margin-left: 36px;
}

.tcwf-static-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--tcwf-ink-900);
  font-weight: 500;
}

.tcwf-static-nav a:hover,
.tcwf-static-nav a:focus-visible {
  color: var(--tcwf-blue-600);
}

.tcwf-root .tcwf-static-header__console {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-left: auto;
  padding: 0 12px;
  color: var(--tcwf-blue-600);
  font-weight: 500;
}

.tcwf-static-section-nav {
  position: sticky;
  z-index: 98;
  top: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--tcwf-border);
  background: var(--tcwf-surface-2);
}

.tcwf-static-section-nav__inner {
  display: flex;
  width: max-content;
  min-width: 100%;
  max-width: var(--tcwf-container);
  justify-content: center;
  margin: 0 auto;
}

.tcwf-static-section-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 0 28px;
  color: var(--tcwf-ink-700);
  font-size: 16px;
  line-height: 60px;
}

.tcwf-static-section-nav a:hover,
.tcwf-static-section-nav a:focus-visible {
  color: var(--tcwf-blue-600);
}

.tcwf-static-hero {
  background: #eef6ff;
}

.tcwf-static-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 249, 251, 0.98) 0%, rgba(243, 249, 251, 0.9) 44%, rgba(243, 249, 251, 0.12) 75%);
  content: "";
}

.tcwf-static-hero__background {
  left: auto;
  width: min(70vw, 1160px);
  object-fit: cover;
  object-position: right center;
}

.tcwf-static-hero .tcwf-solution-hero__inner {
  z-index: 2;
}

@media (max-width: 768px) {
  .tcwf-static-header {
    height: 56px;
  }

  .tcwf-static-header__inner {
    padding: 0 16px;
  }

  .tcwf-static-nav {
    display: none;
    position: absolute;
    right: 0;
    top: 56px;
    left: 0;
    height: auto;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 16px;
    border-bottom: 1px solid var(--tcwf-border);
    background: #fff;
    box-shadow: var(--tcwf-shadow-card-hover);
  }

  .tcwf-static-nav[data-open="true"] {
    display: flex;
  }

  .tcwf-static-nav a {
    min-height: 44px;
    padding: 0;
  }

  .tcwf-static-menu {
    display: inline-flex;
    margin-left: auto;
  }

  .tcwf-root .tcwf-static-header__console {
    display: none;
    margin-left: 4px;
    padding-right: 0;
  }

  .tcwf-static-section-nav__inner {
    justify-content: flex-start;
  }

  .tcwf-static-section-nav a {
    padding: 0 16px;
    font-size: 14px;
    line-height: 44px;
  }

  .tcwf-static-hero::after {
    background: rgba(243, 249, 251, 0.86);
  }

  .tcwf-static-hero__background {
    width: 100%;
    opacity: 0.58;
  }
}
