/* Tradleap homepage — widths follow design canvas 1680, content 1440 (120px side) */
html:has(body.page-home) {
  --header-h: clamp(56px, calc(100vw * 80 / 1680), 88px);
  --tl-purple: #6c63ff;
  --tl-purple-deep: #5548e8;
  scroll-padding-top: calc(var(--header-h) + 12px);
  scrollbar-width: thin;
  scrollbar-color: #6c63ff #eeedff;
}

html:has(body.page-home)::-webkit-scrollbar,
html:has(body.page-home) *::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html:has(body.page-home)::-webkit-scrollbar-track,
html:has(body.page-home) *::-webkit-scrollbar-track {
  background: #eeedff;
  border-radius: 999px;
}

html:has(body.page-home)::-webkit-scrollbar-thumb,
html:has(body.page-home) *::-webkit-scrollbar-thumb {
  background: #6c63ff;
  border: 2px solid #eeedff;
  border-radius: 999px;
}

html:has(body.page-home)::-webkit-scrollbar-thumb:hover,
html:has(body.page-home) *::-webkit-scrollbar-thumb:hover {
  background: #5548e8;
}

.page-home {
  --header-h: clamp(56px, calc(100vw * 80 / 1680), 88px);
  --tl-purple: #6c63ff;
  --tl-purple-2: #7070ff;
  --tl-purple-deep: #5548e8;
  --tl-deep: #0b0e2a;
  --tl-text: #1b1c33;
  --tl-muted: #6b7280;
  --tl-line: #eceef5;
  --tl-frame: 1680;
  --tl-content: 1440;
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--tl-text);
  background: #fff;
}

.page-home .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

@media (min-width: 1600px) {
  .page-home .container {
    width: calc(100% * var(--tl-content) / var(--tl-frame));
    max-width: calc(100% - 48px);
  }
}

/* Header: logo left, nav + compact purple CTA grouped right */
.page-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  container-type: inline-size;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.page-home .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, calc(100vw * 24 / 1680), 32px);
  height: var(--header-h);
}

.page-home .brand {
  justify-self: start;
  gap: 0;
  color: #fff;
  flex-shrink: 0;
}

.page-home .brand span {
  display: none;
}

.page-home .brand img {
  width: auto;
  height: clamp(24px, calc(100vw * 36 / 1680), 36px);
  max-width: none;
  object-fit: contain;
  background: none;
  border-radius: 0;
  padding: 0;
  mix-blend-mode: normal;
  filter: none;
}

.page-home #mainNav {
  justify-self: unset;
}

.page-home .header-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: calc(100vw * 48 / 1680);
  margin-left: auto;
}

.page-home .nav-links {
  gap: 0 calc(100vw * 64 / 1680);
}

.page-home .nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: max(14px, calc(100vw * 16 / 1680));
  letter-spacing: 0;
  line-height: 1;
}

.page-home .nav-links a:hover {
  color: #fff;
  opacity: 0.8;
}

.page-home .nav-links a.is-active {
  color: #fff;
  font-weight: 500;
  opacity: 1;
}

.page-home .nav-links .icon {
  display: none;
}

.page-home .nav-toggle {
  color: #fff;
}

.page-home .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-home .tl-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: max(36px, calc(100vw * 40 / 1680));
  padding: 0 max(16px, calc(100vw * 22 / 1680));
  border: 0;
  border-radius: 999px;
  background: #7070ff;
  color: #fff;
  font-size: max(14px, calc(100vw * 16 / 1680));
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}

.page-home .tl-header-cta:hover {
  background: #5548e8;
  color: #fff;
}

.page-home .site-header.is-scrolled,
.page-home .site-header.is-nav-open {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: none;
}

.page-home .site-header.is-scrolled .brand img,
.page-home .site-header.is-nav-open .brand img {
  mix-blend-mode: normal;
  background: none;
  border-radius: 0;
  padding: 0;
  filter: none;
}

.page-home .site-header.is-scrolled .nav-links a,
.page-home .site-header.is-nav-open .nav-links a {
  color: #2f334d;
}

.page-home .site-header.is-scrolled .nav-links a:hover,
.page-home .site-header.is-scrolled .nav-links a.is-active,
.page-home .site-header.is-nav-open .nav-links a:hover,
.page-home .site-header.is-nav-open .nav-links a.is-active {
  color: var(--tl-purple);
  opacity: 1;
}

.page-home .site-header.is-scrolled .nav-toggle,
.page-home .site-header.is-nav-open .nav-toggle {
  color: var(--tl-deep);
}

.page-home .site-header.is-scrolled .nav-toggle:hover,
.page-home .site-header.is-nav-open .nav-toggle:hover {
  background: rgba(3, 36, 89, 0.06);
}

.page-home .site-header.is-scrolled .tl-header-cta,
.page-home .site-header.is-nav-open .tl-header-cta {
  background: #7070ff;
  color: #fff;
}

.page-home .site-header.is-scrolled .tl-header-cta:hover,
.page-home .site-header.is-nav-open .tl-header-cta:hover {
  background: #5548e8;
  color: #fff;
}

.tl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: max(40px, calc(100vw * 48 / 1680));
  min-height: max(40px, calc(100vw * 48 / 1680));
  padding: 0 max(22px, calc(100vw * 36 / 1680));
  border-radius: 999px;
  font-weight: 500;
  font-size: max(0.875rem, calc(100vw * 16 / 1680));
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tl-btn--solid {
  background: #fff;
  color: #6c63ff;
  box-shadow: none;
}

.tl-btn--solid:hover {
  background: #f5f3ff;
  color: #5548e8;
}

.tl-btn--purple {
  background: var(--tl-purple);
  color: #fff;
  box-shadow: none;
}

.tl-btn--purple:hover {
  background: var(--tl-purple-deep);
  color: #fff;
}

.tl-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.tl-btn--ghost:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  opacity: 0.82;
}

.tl-head {
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.tl-head h2 {
  font-size: max(1.5rem, calc(100cqw * 36 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--tl-deep);
  line-height: 1.28;
}

.tl-head__lead {
  max-width: 36em;
  margin: 12px auto 0;
  color: var(--tl-muted);
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  line-height: 1.75;
}

.tl-kicker {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--tl-purple);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Hero: full 1680x1080 artwork, no crop */
.tl-hero {
  position: relative;
  margin-top: 0;
  width: 100%;
  aspect-ratio: 1680 / 1080;
  min-height: 0;
  height: auto;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.tl-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1b1570;
  background-image: url("../images/background_hero.png");
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
}

.tl-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  align-items: center;
  min-height: 0;
  padding: calc(var(--header-h) + 1%) 0 4%;
}

.tl-hero__copy {
  max-width: none;
}

.tl-hero__copy h1 {
  font-size: clamp(1.75rem, calc(100vw * 64 / 1680), 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: clamp(16px, calc(100vw * 24 / 1680), 24px);
  white-space: nowrap;
}

.tl-hero__copy p {
  font-size: clamp(0.8125rem, calc(100vw * 20 / 1680), 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin-bottom: clamp(40px, calc(100vw * 72 / 1680), 72px);
  max-width: none;
}

.tl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tl-hero__actions .tl-btn {
  height: clamp(36px, calc(100vw * 60 / 1680), 60px);
  min-height: 0;
  min-width: 0;
  padding: 0 clamp(20px, calc(100vw * 36 / 1680), 36px);
  font-size: clamp(0.8125rem, calc(100vw * 22 / 1680), 1.375rem);
  font-weight: 400;
  background: transparent;
}

.tl-hero__visual {
  min-height: 0;
}

/* Logos: title left + marquee. 1024 design scaled to 1680 frame. */
.tl-logos {
  background: #fff;
  padding: clamp(48px, calc(100vw * 73 / 1024), 120px) 0 clamp(48px, calc(100vw * 78 / 1024), 128px);
}

.tl-logos__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tl-logos__title {
  margin: 0;
  color: #000;
  font-size: clamp(21px, calc(100vw * 21 / 1024 * var(--tl-content) / var(--tl-frame)), 30px);
  font-weight: 700;
  line-height: clamp(30px, calc(100vw * 30 / 1024 * var(--tl-content) / var(--tl-frame)), 42px);
  letter-spacing: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.tl-logos__viewport {
  flex: 0 0 calc(100% * 520 / 885);
  width: calc(100% * 520 / 885);
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent);
}

.tl-logos__track {
  display: flex;
  width: max-content;
  animation: tl-marquee 28s linear infinite;
}

.tl-logos__viewport:hover .tl-logos__track {
  animation-play-state: paused;
}

.tl-logos__group {
  display: flex;
  align-items: center;
  gap: clamp(24px, calc(100vw * 24 / 1024), 39px);
  padding-right: clamp(24px, calc(100vw * 24 / 1024), 39px);
}

.tl-logo-item {
  display: flex;
  align-items: center;
  height: clamp(30px, calc(100vw * 30 / 1024), 49px);
  flex: 0 0 auto;
  background: none;
  border-radius: 0;
  padding: 0;
}

.tl-logo-item img {
  height: clamp(30px, calc(100vw * 30 / 1024), 49px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@keyframes tl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .tl-logos__track {
    animation: none;
  }
}

/* Stats: three flat cards. Metrics from design 1024x106 (card 226x104, gap 30, span 738). */
.tl-stats {
  background: #fff;
  padding: 28px 0 16px;
}

.page-home .tl-stats .container {
  width: calc(100% * 738 / 1024);
  max-width: calc(100% - 40px);
}

.tl-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(100% * 30 / 738);
  container-type: inline-size;
}

.tl-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f5f6fb;
  border-radius: clamp(8px, calc(100vw * 12 / 1024), 16px);
  aspect-ratio: 226 / 104;
  padding: 0 8px;
  min-height: 0;
  box-shadow: none;
  border: 0;
}

.tl-stat-card h3 {
  font-size: max(1.5rem, calc(100cqw * 34 / 738 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  color: #5c58c0;
  margin: 0 0 max(8px, calc(100cqw * 12 / 738));
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.tl-stat-card p {
  margin: 0;
  color: #343539;
  font-size: max(0.75rem, calc(100cqw * 12 / 738 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

/* How we help — design canvas 1024x633, content 750; original burst PNG, no recompress */
.tl-how {
  container-type: inline-size;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1024 / 633;
  padding: calc(100cqw * 75 / 1024) 0 0;
  background-color: #fff;
  background-image: url("../images/background_methodology.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

.page-home .tl-how .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-how .tl-head {
  margin-bottom: calc(100cqw * 27 / 1024);
}

.tl-how .tl-kicker {
  margin-bottom: calc(100cqw * 17 / 1024);
  color: #8a8a8a;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tl-how .tl-head h2 {
  margin-bottom: calc(100cqw * 30 / 1024);
  color: #111;
  font-size: max(1.5rem, calc(100cqw * 36 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.tl-how .tl-head__lead {
  max-width: none;
  margin: 0 auto;
  color: #808080;
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: max(1.5em, calc(100cqw * 22 / 1024 * var(--tl-content) / var(--tl-frame)));
}

.tl-how__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 calc(100cqw * 28 / 1024);
}

.tl-how-item {
  text-align: center;
  padding: calc(100cqw * 26 / 1024) 0 calc(100cqw * 24 / 1024);
  background-image: url("../images/Line 9.png"), url("../images/Line 9.png");
  background-repeat: no-repeat;
  background-position: center top, center bottom;
  background-size: 100% 1px;
}

.tl-how-item h3 {
  margin: 0 0 calc(100cqw * 12 / 1024);
  color: #111;
  font-size: max(1.05rem, calc(100cqw * 20 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  line-height: 1.05;
}

.tl-how-item p {
  margin: 0;
  color: #8a8a8a;
  font-size: max(0.75rem, calc(100cqw * 12 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.3;
}

/* Brand growth journey — design canvas 1024x452, content 894 */
.tl-method {
  container-type: inline-size;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1024 / 452;
  padding: calc(100cqw * 76 / 1024) 0 0;
  background: #fff;
  color: var(--tl-text);
}

.page-home .tl-method .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-method .tl-head {
  margin-bottom: calc(100cqw * 48 / 1024);
}

.tl-method .tl-kicker {
  margin-bottom: calc(100cqw * 16 / 1024);
  color: #8a8a8a;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tl-method .tl-head h2 {
  margin: 0;
  color: #111;
  font-size: max(1.5rem, calc(100cqw * 36 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.tl-journey {
  position: relative;
}

.tl-journey::before {
  content: "";
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: calc(100cqw * 136 / 1024);
  bottom: calc(100cqw * 18 / 1024);
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(to bottom, #6e68e4 0 2px, transparent 2px 5px),
    repeating-linear-gradient(to bottom, #5fd4b5 0 2px, transparent 2px 5px);
  background-size: 1px 100%, 1px 100%;
  background-position: left top, right top;
  background-repeat: no-repeat;
}

.tl-journey::after {
  content: "";
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  bottom: calc(100cqw * 18 / 1024);
  height: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg, #6e68e4 0%, #8f8bf5 55%, #6ecdb8 85%, #5fd4b5 100%);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 5px);
  mask-image: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 5px);
}

.tl-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.tl-steps::before {
  content: "";
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: calc(100cqw * 33 / 1024);
  height: 1px;
  background: linear-gradient(90deg, #6e68e4 0%, #8f8bf5 55%, #6ecdb8 85%, #5fd4b5 100%);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 5px);
  mask-image: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 5px);
  pointer-events: none;
  z-index: 0;
}

.tl-steps li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tl-steps img {
  display: block;
  width: max(48px, calc(100cqw * 67 / 1024));
  height: max(48px, calc(100cqw * 67 / 1024));
  object-fit: contain;
  margin: 0 auto calc(100cqw * 12 / 1024);
}

.tl-steps h3 {
  margin: 0 0 calc(100cqw * 16 / 1024);
  color: #222;
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  line-height: 1;
}

.tl-steps p {
  margin: 0;
  color: #8a8a8a;
  font-size: max(0.75rem, calc(100cqw * 11 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1;
}

.tl-journey__platform {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100cqw * 214 / 1024);
  height: calc(100cqw * 37 / 1024);
  margin: calc(100cqw * 36 / 1024) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #746ffd 0%, #8d8cff 48%, #a8a6ff 100%);
  color: #fff;
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Our Solutions — design canvas 1024x579 (bg 1680x950) */
.page-home .tl-caps#capabilities,
.tl-caps {
  container-type: inline-size;
  position: relative;
  isolation: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1024 / 579;
  padding: calc(100cqw * 100 / 1024) 0 0;
  background-color: #7a7af2;
  background-image: url("../images/background_our solutions.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: #fff;
}

.page-home #capabilities::before,
.page-home #capabilities::after {
  content: none;
  display: none;
}

.page-home .tl-caps .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-caps .tl-head {
  margin-bottom: calc(100cqw * 52 / 1024);
}

.tl-caps .tl-kicker {
  margin-bottom: calc(100cqw * 16 / 1024);
  color: #fff;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tl-caps .tl-head h2 {
  margin: 0;
  color: #fff;
  font-size: max(1.5rem, calc(100cqw * 36 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.tl-caps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(100cqw * 27 / 1024);
  align-items: stretch;
}

.tl-cap-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: 340 / 420;
  min-height: 0;
  padding: calc(100cqw * 32 / 1024) calc(100cqw * 26 / 1024) calc(100cqw * 30 / 1024);
  border-radius: calc(100vw * 20 / 1680);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 calc(100vw * 10 / 1680) calc(100vw * 30 / 1680) rgba(52, 38, 140, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}

.tl-cap-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(100cqw * 12 / 1024);
  margin-bottom: calc(100cqw * 22 / 1024);
  font-size: max(1rem, calc(100cqw * 18 / 1024 * var(--tl-content) / var(--tl-frame)));
}

.tl-cap-card__icon {
  width: calc(100vw * 75 / 1680);
  height: calc(100vw * 75 / 1680);
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
  margin: 0;
}

.tl-cap-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.tl-cap-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tl-cap-card li {
  display: flex;
  align-items: center;
  gap: calc(100cqw * 10 / 1024);
  margin-bottom: calc(100cqw * 10 / 1024);
  color: #fff;
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.25;
}

.tl-cap-card li:last-child {
  margin-bottom: 0;
}

.tl-cap-card li::before {
  content: "";
  width: calc(100cqw * 6 / 1024);
  height: calc(100cqw * 6 / 1024);
  border-radius: 50%;
  background: #5bf4bb;
  flex-shrink: 0;
}

/* Comparison — design canvas 1024x628, content 886 */
.tl-compare {
  container-type: inline-size;
  padding: calc(100cqw * 76 / 1024) 0 calc(100cqw * 24 / 1024);
  background: #fff;
}

.page-home .tl-compare .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-compare .tl-head {
  margin-bottom: calc(100cqw * 48 / 1024);
}

.tl-compare .tl-kicker {
  margin-bottom: calc(100cqw * 16 / 1024);
  color: #8a8a8a;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tl-compare .tl-head h2 {
  margin-bottom: calc(100cqw * 30 / 1024);
  color: #111;
  font-size: max(1.5rem, calc(100cqw * 36 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.tl-compare .tl-head__lead {
  max-width: none;
  margin: 0 auto;
  color: #8a8a8a;
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.5;
}

.tl-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc(100cqw * 80 / 1024) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.tl-compare-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(100cqw * 12 / 1024);
  background: #f4f5f9;
}

.tl-compare-card--now {
  background: #d1cfff;
}

.tl-compare-card__media {
  aspect-ratio: 403 / 226;
  overflow: hidden;
}

.tl-compare-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tl-compare-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(100cqw * 22 / 1024) 0 calc(100cqw * 25 / 1024);
  text-align: center;
  color: #111;
}

.tl-compare-card__body h3 {
  margin: 0 0 calc(100cqw * 14 / 1024);
  color: #111;
  font-size: calc(100cqw * 20 / 1024);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.tl-compare-card__tags {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: calc(100cqw * 26 / 1024);
  list-style: none;
  margin: 0 0 calc(100cqw * 14 / 1024);
  padding: 0;
  color: #333;
  font-size: calc(100cqw * 12 / 1024);
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.tl-compare-card--now .tl-compare-card__tags {
  color: #333;
}

.tl-compare-card__note {
  width: calc(100% * 275 / 403);
  margin: 0 auto;
  padding: calc(100cqw * 13 / 1024) calc(100cqw * 16 / 1024);
  border-radius: calc(100cqw * 8 / 1024);
  background: #fff;
}

.tl-compare-card--now .tl-compare-card__note {
  background: #e7e7ff;
}

.tl-compare-card__note p {
  margin: 0;
  color: #111;
  font-size: calc(100cqw * 12 / 1024);
  font-weight: 400;
  line-height: calc(100cqw * 17 / 1024);
}

.tl-compare__vs {
  align-self: center;
  justify-self: center;
  color: #c7c7c7;
  font-size: max(0.9375rem, calc(100cqw * 16 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Marketing Intelligence — design canvas 1024x742, content 886 */
.tl-data {
  container-type: inline-size;
  padding: calc(100cqw * 56 / 1024) 0 calc(100cqw * 24 / 1024);
  background: #fff;
}

.page-home .tl-data .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-data .tl-head {
  margin-bottom: calc(100cqw * 36 / 1024);
}

.tl-data .tl-kicker {
  margin-bottom: calc(100cqw * 16 / 1024);
  color: #8a8a8a;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tl-data .tl-head h2 {
  margin-bottom: calc(100cqw * 18 / 1024);
  color: #111;
  font-size: max(1.5rem, calc(100cqw * 36 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.tl-data .tl-head__lead {
  max-width: 36em;
  margin: 0 auto;
  color: #8a8a8a;
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.7;
}

.tl-data__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(100cqw * 16 / 1024);
  margin-bottom: calc(100cqw * 28 / 1024);
}

.tl-data__tab {
  border: 0;
  background: #ecebff;
  color: #3f3d56;
  border-radius: 999px;
  padding: calc(100cqw * 10 / 1024) calc(100cqw * 22 / 1024);
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
}

.tl-data__tab:hover {
  background: #dddcf8;
  color: #3f3d56;
}

.tl-data__tab.is-active,
.tl-data__tab.is-active:hover {
  background: linear-gradient(to right, #726CFF, #A7A6FF);
  color: #fff;
}

.tl-data__stage {
  overflow: hidden;
  background: #fff;
  border-radius: calc(100cqw * 24 / 1024);
  min-height: calc(100cqw * 392 / 1024);
  box-shadow: 0 calc(100cqw * 4 / 1024) calc(100cqw * 14 / 1024) rgba(70, 64, 160, 0.06);
  border: 1px solid #eef0f6;
}

.tl-data__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  align-items: stretch;
  min-height: calc(100cqw * 392 / 1024);
}

.tl-data__panel[hidden] {
  display: none !important;
}

.tl-data__copy {
  padding: calc(100cqw * 40 / 1024) calc(100cqw * 36 / 1024) calc(100cqw * 36 / 1024) calc(100cqw * 40 / 1024);
}

.tl-data__label {
  margin: 0 0 calc(100cqw * 10 / 1024);
  color: #7d78f2;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 500;
  line-height: 1.3;
}

.tl-data__copy h3 {
  margin: 0 0 calc(100cqw * 14 / 1024);
  color: #111;
  font-size: max(1.15rem, calc(100cqw * 22 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.tl-data__copy > p:not(.tl-data__label) {
  margin: 0 0 calc(100cqw * 22 / 1024);
  color: #8a8a8a;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.7;
}

.tl-data__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-data__copy li {
  display: flex;
  align-items: flex-start;
  gap: calc(100cqw * 10 / 1024);
  margin-bottom: calc(100cqw * 12 / 1024);
  color: #333;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  line-height: 1.55;
}

.tl-data__copy li:last-child {
  margin-bottom: 0;
}

.tl-data__copy li img {
  width: calc(100cqw * 16 / 1024);
  height: calc(100cqw * 16 / 1024);
  margin-top: 2px;
  flex-shrink: 0;
  object-fit: contain;
}

.tl-data__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(100cqw * 28 / 1024);
  background-color: #eef0f8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tl-data__visual img {
  width: 100%;
  max-width: calc(100cqw * 420 / 1024);
  height: auto;
  display: block;
}

/* About Us — design canvas 1024x804, content 886 */
.tl-about {
  container-type: inline-size;
  padding: calc(100cqw * 28 / 1024) 0 0;
  background: #fff;
}

.page-home .tl-about .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-about .tl-head {
  margin-bottom: calc(100cqw * 24 / 1024);
}

.tl-about .tl-kicker {
  margin-bottom: calc(100cqw * 17 / 1024);
  color: #8a8a8a;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tl-about .tl-head h2 {
  margin: 0 0 calc(100cqw * 30 / 1024);
  color: #111;
  font-size: max(1.5rem, calc(100cqw * 36 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.tl-about .tl-head__lead {
  max-width: none;
  margin: 0 auto;
  color: #4a4a4a;
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: max(1.5em, calc(100cqw * 22 / 1024 * var(--tl-content) / var(--tl-frame)));
}

.tl-about__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc(100cqw * 284 / 1024);
  align-items: stretch;
  min-height: calc(100cqw * 293 / 1024);
  margin-bottom: calc(100cqw * 21 / 1024);
  overflow: visible;
  border-radius: calc(100cqw * 32 / 1024);
  background: #f4f5f9;
}

.tl-about__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(100cqw * 59 / 1024) calc(100cqw * 36 / 1024) calc(100cqw * 40 / 1024) calc(100cqw * 49 / 1024);
}

.tl-about__copy-head {
  display: flex;
  align-items: center;
  gap: calc(100cqw * 14 / 1024);
  margin-bottom: calc(100cqw * 57 / 1024);
}

.tl-about__copy-head img {
  width: max(36px, calc(100cqw * 48 / 1024));
  height: max(36px, calc(100cqw * 48 / 1024));
  object-fit: contain;
  flex-shrink: 0;
}

.tl-about__copy h3 {
  margin: 0;
  color: #111;
  font-size: max(1.35rem, calc(100cqw * 28 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  line-height: 1;
}

.tl-about__copy p {
  max-width: calc(100cqw * 400 / 1024);
  margin: 0;
  color: #222;
  font-size: max(0.9375rem, calc(100cqw * 16 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: max(1.5em, calc(100cqw * 26 / 1024 * var(--tl-content) / var(--tl-frame)));
}

.tl-about__copy strong {
  font-weight: 700;
  color: #111;
}

.tl-about__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
}

.tl-about__photo img {
  position: absolute;
  right: calc(100cqw * 40 / 1024);
  bottom: 0;
  width: auto;
  height: calc(100cqw * 339 / 1024);
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
}

.tl-about__services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(100cqw * 22 / 1024);
}

.tl-service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: calc(100cqw * 24 / 1024);
  border: 1px solid #e4e6f5;
  border-radius: calc(100cqw * 16 / 1024);
  background: #fff;
  box-shadow: none;
}

.tl-service-card__head {
  display: flex;
  align-items: center;
  gap: calc(100cqw * 14 / 1024);
  margin-bottom: calc(100cqw * 16 / 1024);
}

.tl-service-card img {
  width: max(32px, calc(100cqw * 40 / 1024));
  height: max(32px, calc(100cqw * 40 / 1024));
  margin: 0;
  object-fit: contain;
  border-radius: calc(100cqw * 10 / 1024);
  flex-shrink: 0;
}

.tl-service-card h3 {
  margin: 0;
  color: #111;
  font-size: max(1.05rem, calc(100cqw * 20 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  line-height: 1.2;
}

.tl-service-card p {
  flex: 1;
  margin: 0 0 calc(100cqw * 16 / 1024);
  color: #666;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: max(1.5em, calc(100cqw * 20 / 1024 * var(--tl-content) / var(--tl-frame)));
}

.tl-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: max(8px, calc(100cqw * 6 / 1024));
  list-style: none;
  margin: 0;
  padding: 0;
}

.tl-service-card__tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: auto;
  min-height: max(22px, calc(100cqw * 22 / 1024));
  padding: 4px max(10px, calc(100cqw * 10 / 1024));
  border: 1px solid #c4c0f5;
  border-radius: 999px;
  background: #eeedff;
  color: #6b63ff;
  font-size: max(0.75rem, calc(100cqw * 12 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

/* Final CTA — design canvas 1024x410, banner pad top 20 / bottom 18 */
.tl-cta {
  container-type: inline-size;
  padding: calc(100cqw * 20 / 1024) 0 calc(100cqw * 18 / 1024);
  background: #fff;
  color: #fff;
}

.page-home .tl-cta .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-cta__banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 1480 / 600;
  padding: 0 calc(100cqw * 56 / 1024) 0 0;
  overflow: hidden;
  border-radius: calc(100cqw * 24 / 1024);
  background-color: #3b2cc5;
  background-image: url("../images/background_growth.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tl-cta__copy {
  width: min(100%, calc(100cqw * 380 / 1024));
  text-align: left;
}

.tl-cta h2 {
  margin: 0 0 calc(100cqw * 12 / 1024);
  color: #fff;
  font-size: max(1.25rem, calc(100cqw * 26 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.tl-cta__copy p {
  margin: 0 0 calc(100cqw * 22 / 1024);
  color: rgba(255, 255, 255, 0.88);
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.6;
}

.tl-cta__btn {
  height: calc(100cqw * 40 / 1024);
  min-height: 36px;
  padding: 0 calc(100cqw * 28 / 1024);
  background: rgba(110, 104, 230, 0.48);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 20px rgba(40, 32, 140, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: max(0.875rem, calc(100cqw * 14 / 1024 * var(--tl-content) / var(--tl-frame)));
}

.tl-cta__btn:hover {
  background: rgba(110, 104, 230, 0.72);
  color: #fff;
}

/* Footer — same content width as homepage modules (1440 / 1024) */
.page-home .site-footer.tl-footer {
  container-type: inline-size;
  padding: calc(100cqw * 48 / 1024) 0 calc(100cqw * 40 / 1024);
  background: #fff;
  color: #555;
  border-top: 0;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
}

.page-home .tl-footer .container {
  width: calc(100% * var(--tl-content) / var(--tl-frame));
  max-width: calc(100% - 40px);
}

.tl-footer__top,
.tl-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(100cqw * 24 / 1024);
}

.tl-footer__top {
  padding-bottom: calc(100cqw * 16 / 1024);
}

.tl-footer__bottom {
  padding-top: calc(100cqw * 16 / 1024);
  border-top: 1px solid #ececec;
}

.tl-footer__contact p {
  margin: 0;
  color: #555;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1.7;
}

.tl-footer__contact strong {
  font-weight: 700;
  color: #333;
}

.tl-footer__contact a {
  color: #555;
  text-decoration: none;
}

.tl-footer__contact a:hover {
  color: var(--tl-purple);
}

.tl-footer__nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: calc(100cqw * 28 / 1024);
}

.tl-footer__nav > a:not(.tl-footer__cta) {
  color: #333;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.tl-footer__nav > a:not(.tl-footer__cta):hover {
  color: var(--tl-purple);
}

.tl-footer__cta {
  height: calc(100cqw * 32 / 1024);
  min-height: 28px;
  padding: 0 calc(100cqw * 18 / 1024);
  background: #6c63ff;
  color: #fff;
  font-size: max(0.8125rem, calc(100cqw * 13 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 500;
}

.tl-footer__cta:hover {
  background: var(--tl-purple-deep);
  color: #fff;
}

.tl-footer__copy {
  margin: 0;
  color: #a3a3a3;
  font-size: max(0.75rem, calc(100cqw * 12 / 1024 * var(--tl-content) / var(--tl-frame)));
  font-weight: 400;
  line-height: 1;
}

.tl-footer__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tl-footer__logo img {
  display: block;
  width: auto;
  height: calc(100cqw * 24 / 1024);
  max-height: 28px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  padding: 0;
}

/* Consult modal — 1680 canvas */
.tl-modal {
  container-type: inline-size;
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  height: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.tl-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 42, 0.55);
}

.tl-modal__dialog {
  position: relative;
  z-index: 1;
  width: calc(100vw * 1024 / 1680);
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #fff;
  border-radius: calc(100vw * 24 / 1680);
  padding: max(24px, calc(100vw * 44 / 1680)) max(20px, calc(100vw * 40 / 1680));
  box-shadow: 0 calc(100vw * 16 / 1680) calc(100vw * 48 / 1680) rgba(15, 23, 42, 0.16);
}

.tl-modal__close {
  position: absolute;
  top: max(10px, calc(100vw * 14 / 1680));
  right: max(10px, calc(100vw * 14 / 1680));
  width: max(36px, calc(100vw * 40 / 1680));
  height: max(36px, calc(100vw * 40 / 1680));
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: max(1.15rem, calc(100vw * 22 / 1680));
  line-height: 1;
  color: #4b5563;
  cursor: pointer;
}

.tl-modal__close:hover {
  background: #e5e7eb;
}

.tl-modal__head {
  text-align: center;
  margin-bottom: calc(100vw * 36 / 1680);
}

.tl-modal__kicker {
  margin: 0 0 calc(100vw * 16 / 1680);
  color: #8a8a8a;
  font-size: max(0.8125rem, calc(100vw * 13 / 1680));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tl-modal__head h2 {
  margin: 0 0 calc(100vw * 30 / 1680);
  color: #111;
  font-size: max(1.5rem, calc(100vw * 36 / 1680));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.tl-modal__lead {
  margin: 0;
  color: #8a8a8a;
  font-size: max(0.875rem, calc(100vw * 14 / 1680));
  font-weight: 400;
  line-height: max(1.5em, calc(100vw * 22 / 1680));
}

.tl-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: calc(100vw * 32 / 1680);
  align-items: stretch;
}

.tl-modal__visual {
  min-height: 0;
  align-self: stretch;
}

.tl-modal__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(100vw * 16 / 1680);
  min-height: calc(100vw * 280 / 1680);
}

.tl-form__row {
  display: grid;
  gap: calc(100vw * 12 / 1680);
  margin-bottom: calc(100vw * 12 / 1680);
  align-items: start;
}

.tl-form__field {
  position: relative;
  min-width: 0;
}

.tl-form__field--area {
  margin-bottom: calc(100vw * 16 / 1680);
}

.tl-form .help-block {
  display: block;
  margin: 4px 2px 0;
  padding: 0;
  font-style: normal;
  font-size: 12px;
  line-height: 1.3;
  color: #e24c4c;
}

.tl-form .form-control-feedback {
  display: none;
}

.tl-form__row > .help-block,
.tl-form__row > .form-control-feedback {
  grid-column: 1 / -1;
}

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

.tl-form__row--2 {
  grid-template-columns: 1.6fr 1fr;
}

.tl-form__row--fields {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tl-form__row--fields > .tl-form__field {
  grid-column: span 2;
}

.tl-form__row--fields > .tl-form__field:nth-child(n + 4) {
  grid-column: span 3;
}

.tl-form__field--span {
  grid-column: 1 / -1 !important;
}

.tl-form__row--code {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.tl-form__row--code img {
  height: calc(100vw * 44 / 1680);
  border-radius: calc(100vw * 8 / 1680);
  cursor: pointer;
}

.tl-form__input,
.tl-form__textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: none;
  background: #f4f5f9;
  border-radius: max(8px, calc(100vw * 8 / 1680));
  padding: max(10px, calc(100vw * 14 / 1680)) max(12px, calc(100vw * 16 / 1680));
  font-family: inherit;
  font-size: max(0.875rem, calc(100vw * 14 / 1680));
  font-weight: 400;
  color: #111;
}

.tl-form__textarea {
  height: max(96px, calc(100vw * 120 / 1680));
  min-height: max(96px, calc(100vw * 120 / 1680));
  resize: vertical;
  margin-bottom: 0;
}

.tl-form__input::placeholder,
.tl-form__textarea::placeholder {
  color: #8a8a8a;
}

.tl-form__input:focus,
.tl-form__textarea:focus {
  outline: 2px solid rgba(112, 112, 255, 0.35);
  background: #fafafa;
}

.tl-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: max(88px, calc(100vw * 88 / 1680));
  height: max(40px, calc(100vw * 40 / 1680));
  min-height: max(40px, calc(100vw * 40 / 1680));
  padding: 0 max(22px, calc(100vw * 28 / 1680));
  border: none;
  border-radius: 999px;
  background: #7070ff;
  color: #fff;
  font-size: max(0.875rem, calc(100vw * 14 / 1680));
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.tl-form__submit:hover {
  background: #5b5be8;
}

.tl-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.tl-modal__form {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tl-modal.is-success .tl-form {
  display: none;
}

.tl-modal.is-success .tl-modal__dialog {
  width: min(440px, calc(100vw - 48px));
  max-width: min(440px, calc(100vw - 48px));
}

.tl-modal.is-success .tl-modal__head {
  margin-bottom: max(20px, calc(100vw * 24 / 1680));
}

.tl-modal.is-success .tl-modal__head h2 {
  margin-bottom: calc(100vw * 16 / 1680);
}

.tl-modal.is-success .tl-modal__visual {
  display: none;
}

.tl-modal.is-success .tl-modal__body {
  display: block;
}

.tl-modal.is-success .tl-modal__form,
.tl-modal.is-success .tl-modal__thanks {
  flex: none;
  height: auto;
}

.tl-modal__thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 0;
  gap: 0;
}

.tl-modal__thanks[hidden] {
  display: none !important;
}

.tl-modal__thanks-icon {
  width: max(48px, calc(100vw * 56 / 1680));
  height: max(48px, calc(100vw * 56 / 1680));
  margin-bottom: max(14px, calc(100vw * 16 / 1680));
  border-radius: 50%;
  background: #7070ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tl-modal__thanks-title {
  margin: 0 0 max(8px, calc(100vw * 8 / 1680));
  color: #111;
  font-size: max(1.25rem, calc(100vw * 24 / 1680));
  font-weight: 700;
  line-height: 1.3;
}

.tl-modal__thanks-note {
  margin: 0;
  max-width: 22em;
  color: #6b7280;
  font-size: max(0.875rem, calc(100vw * 14 / 1680));
  line-height: 1.6;
}

.tl-modal__thanks .tl-form__submit {
  margin-top: max(20px, calc(100vw * 24 / 1680));
}

.tl-modal[data-consult-head-ok][hidden],
.tl-modal [data-consult-head-ok][hidden] {
  display: none !important;
}

html:has(body.is-consult-open),
body.is-consult-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 1100px) {
  .tl-how,
  .tl-method,
  .page-home .tl-caps#capabilities,
  .tl-caps {
    aspect-ratio: auto;
  }

  .tl-how {
    padding: 56px 0 120px;
  }

  .tl-method {
    padding: 56px 0 64px;
  }

  .page-home .tl-caps#capabilities,
  .tl-caps {
    padding: 56px 0 64px;
    background-size: cover;
    background-position: center top;
  }

  .tl-caps .tl-head {
    margin-bottom: 28px;
  }

  .tl-how__grid,
  .tl-caps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tl-cap-card {
    aspect-ratio: auto;
    min-height: 240px;
  }

  .tl-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .tl-journey::before,
  .tl-journey::after,
  .tl-steps::before {
    display: none;
  }

  .tl-about__intro {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
  }

  .tl-about__photo {
    min-height: 220px;
  }

  .tl-about__photo img {
    position: static;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: center bottom;
  }

  .tl-hero {
    aspect-ratio: auto;
    min-height: 100svh;
    align-items: flex-start;
  }

  .tl-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: calc(var(--header-h) + max(96px, 12vh)) 0 48px;
  }

  .tl-hero__visual {
    display: none;
  }

  .tl-hero__copy h1 {
    white-space: normal;
  }

  .tl-hero__bg {
    background-color: #1a4aa8;
    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center bottom;
  }
}

@media (max-width: 960px) {
  .page-home .site-header {
    position: fixed;
    top: 0;
  }

  .page-home .header-inner {
    display: flex;
  }

  .page-home .header-right {
    gap: 10px;
    margin-left: auto;
  }

  .page-home .nav-links a,
  .page-home .site-header.is-scrolled .nav-links a,
  .page-home .site-header.is-nav-open .nav-links a {
    color: #2f334d;
    font-size: 14px;
  }

  .page-home .nav-links a:hover,
  .page-home .nav-links a.is-active,
  .page-home .site-header.is-scrolled .nav-links a:hover,
  .page-home .site-header.is-scrolled .nav-links a.is-active,
  .page-home .site-header.is-nav-open .nav-links a:hover,
  .page-home .site-header.is-nav-open .nav-links a.is-active {
    color: var(--tl-purple);
  }

  .tl-logos {
    padding: 48px 0;
  }

  .tl-logos__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .tl-logos__title {
    font-size: 21px;
    line-height: 30px;
    white-space: normal;
  }

  .tl-logo-item,
  .tl-logo-item img {
    height: 30px;
  }

  .tl-logos__viewport {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .tl-stats__grid,
  .tl-compare__grid,
  .tl-data__panel,
  .tl-modal__body {
    grid-template-columns: 1fr;
  }

  .page-home .tl-stats .container {
    width: calc(100% * var(--tl-content) / var(--tl-frame));
  }

  .tl-stats__grid {
    gap: 16px;
  }

  .tl-stat-card {
    aspect-ratio: auto;
    min-height: 120px;
    padding: 32px 16px;
  }

  .tl-stat-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }

  .tl-stat-card p {
    font-size: 0.8125rem;
    white-space: normal;
  }

  .tl-compare-card {
    border-radius: 12px;
  }

  .tl-compare__vs {
    margin: 8px auto;
    font-size: 0.875rem;
  }

  .tl-data__panel {
    min-height: 0;
  }

  .tl-data__visual {
    min-height: 240px;
  }

  .tl-form__row--3,
  .tl-form__row--2,
  .tl-form__row--fields {
    grid-template-columns: 1fr;
  }

  .tl-form__row--fields > .tl-form__field,
  .tl-form__row--fields > .tl-form__field:nth-child(n + 4),
  .tl-form__field--span {
    grid-column: auto;
  }

  .tl-modal__visual {
    display: none;
  }

  .tl-modal.is-success .tl-modal__dialog {
    width: min(400px, calc(100vw - 32px));
    max-width: none;
  }

  .tl-footer__top {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-home .container,
  .page-home .tl-stats .container,
  .page-home .tl-how .container,
  .page-home .tl-method .container,
  .page-home .tl-caps .container,
  .page-home .tl-compare .container,
  .page-home .tl-data .container,
  .page-home .tl-cta .container,
  .page-home .tl-about .container,
  .page-home .tl-footer .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .page-home .tl-caps#capabilities,
  .tl-caps {
    aspect-ratio: auto;
    padding: 56px 0 64px;
    background-size: cover;
    background-position: center top;
  }

  .tl-caps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .tl-method {
    aspect-ratio: auto;
    padding: 56px 0 64px;
  }

  .tl-method .tl-kicker {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }

  .tl-method .tl-head h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .tl-method .tl-head {
    margin-bottom: 28px;
  }

  .tl-journey::before,
  .tl-journey::after,
  .tl-steps::before {
    display: none;
  }

  .tl-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .tl-steps img {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }

  .tl-steps h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .tl-steps p {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .tl-journey__platform {
    width: auto;
    min-width: 180px;
    height: 36px;
    padding: 0 28px;
    margin-top: 28px;
    font-size: 0.875rem;
  }

  .tl-how {
    aspect-ratio: auto;
    padding: 56px 0 140px;
  }

  .tl-how .tl-kicker {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }

  .tl-how .tl-head h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .tl-how .tl-head__lead {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .tl-how .tl-head {
    margin-bottom: 24px;
  }

  .tl-how__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .tl-how-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .tl-how-item p {
    font-size: 0.75rem;
  }

  .tl-compare {
    padding: 56px 0 24px;
  }

  .tl-compare .tl-kicker {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }

  .tl-compare .tl-head h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .tl-compare .tl-head__lead {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .tl-compare .tl-head {
    margin-bottom: 24px;
  }

  .tl-compare-card__body {
    padding: 20px 0 20px;
  }

  .tl-compare-card__body h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }

  .tl-compare-card__tags {
    font-size: 0.75rem;
    gap: 12px 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .tl-compare-card__note {
    width: calc(100% - 48px);
    padding: 12px 14px;
    border-radius: 8px;
  }

  .tl-compare-card__note p {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .tl-data {
    padding: 40px 0 24px;
  }

  .tl-data .tl-kicker {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }

  .tl-data .tl-head h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .tl-data .tl-head__lead {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .tl-data .tl-head {
    margin-bottom: 24px;
  }

  .tl-data__tab {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .tl-data__copy {
    padding: 24px 20px 8px;
  }

  .tl-data__label {
    font-size: 0.8125rem;
  }

  .tl-data__copy h3 {
    font-size: 1.15rem;
  }

  .tl-data__copy > p:not(.tl-data__label),
  .tl-data__copy li {
    font-size: 0.8125rem;
  }

  .tl-data__visual {
    min-height: 220px;
    padding: 20px;
  }

  .tl-data__visual img {
    max-width: none;
  }

  .tl-data__panel {
    min-height: 0;
  }

  .tl-cta {
    padding: var(--header-h) 0 0;
  }

  .tl-cta__banner {
    aspect-ratio: auto;
    min-height: calc(100svh - var(--header-h));
    align-items: flex-end;
    justify-content: center;
    padding: 48px 24px 56px;
    border-radius: 20px;
    background-color: #6b5ce6;
    background-image: url("../images/Background_arrow.png");
    background-position: center top;
    background-size: cover;
  }

  .tl-cta__copy {
    width: 100%;
    max-width: 28em;
    margin: 0 auto;
    text-align: center;
  }

  .tl-cta h2 {
    font-size: 1.5rem;
  }

  .tl-cta__copy p {
    font-size: 0.875rem;
  }

  .tl-cta__btn {
    height: 44px;
    padding: 0 28px;
    font-size: 0.9375rem;
  }

  .tl-modal {
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px));
    align-items: center;
    height: 100%;
    height: 100svh;
    max-height: 100svh;
  }

  .tl-modal__dialog {
    width: 100%;
    max-width: none;
    max-height: 100%;
    min-height: 0;
    margin: 0;
    padding: 24px 18px 28px;
    border-radius: 16px;
  }

  .tl-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .tl-modal__kicker {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .tl-modal__head h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .tl-modal__lead {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .tl-modal__head {
    margin-bottom: 14px;
    padding-right: 28px;
  }

  .tl-form__row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .tl-form__input,
  .tl-form__textarea {
    font-size: 16px;
    padding: 11px 14px;
    min-height: 44px;
    border-radius: 8px;
  }

  .tl-form__field--area {
    margin-bottom: 16px;
  }

  .tl-form__textarea {
    height: 76px;
    min-height: 76px;
    max-height: 76px;
    margin-bottom: 0;
  }

  .tl-form__submit {
    display: flex;
    width: 100%;
    min-width: 0;
    height: 44px;
    min-height: 44px;
    padding: 0 24px;
    font-size: 15px;
  }

  .tl-modal.is-success .tl-modal__dialog {
    width: 100%;
    padding: 28px 20px 32px;
  }

  .tl-modal__thanks {
    min-height: 0;
    align-items: center;
  }

  .tl-modal__thanks-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .tl-modal__thanks-title {
    font-size: 1.125rem;
  }

  .tl-modal__thanks-note {
    font-size: 0.875rem;
  }

  .tl-modal.is-success .tl-modal__head h2 {
    margin-bottom: 8px;
  }

  .tl-modal.is-success .tl-modal__thanks .tl-form__submit {
    margin-top: 16px;
    width: auto;
    min-width: 120px;
  }

  .tl-about {
    padding: 32px 0 0;
  }

  .tl-about .tl-head {
    margin-bottom: 24px;
  }

  .tl-about .tl-kicker {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }

  .tl-about .tl-head h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .tl-about .tl-head__lead {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .tl-about__intro {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .tl-about__copy {
    padding: 32px 28px 16px;
  }

  .tl-about__copy-head {
    margin-bottom: 16px;
  }

  .tl-about__copy-head img {
    width: 40px;
    height: 40px;
  }

  .tl-about__copy h3 {
    font-size: 1.25rem;
  }

  .tl-about__copy p {
    max-width: none;
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .tl-about__photo {
    min-height: 220px;
  }

  .tl-about__photo img {
    position: static;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: center bottom;
  }

  .tl-about__services {
    gap: 16px;
  }

  .tl-service-card {
    min-height: 0;
    padding: 24px 20px 20px;
  }

  .tl-service-card img {
    width: 44px;
    height: 44px;
  }

  .tl-service-card h3 {
    font-size: 1.05rem;
  }

  .tl-service-card p {
    font-size: 0.8125rem;
    line-height: 1.7;
  }

  .tl-service-card__tags {
    gap: 8px;
  }

  .tl-service-card__tags li {
    min-height: 28px;
    padding: 5px 12px;
    font-size: 12px;
    line-height: 1.25;
  }

  .page-home .site-footer.tl-footer {
    padding: 40px 0 32px;
    font-size: 0.8125rem;
  }

  .tl-footer__top,
  .tl-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .tl-footer__nav {
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .tl-footer__contact p,
  .tl-footer__nav > a:not(.tl-footer__cta),
  .tl-footer__cta {
    font-size: 0.8125rem;
  }

  .tl-footer__cta {
    height: 36px;
    padding: 0 18px;
  }

  .tl-footer__copy {
    font-size: 0.75rem;
  }

  .tl-footer__logo img {
    height: 24px;
  }
}

@media (max-width: 640px) {
  .page-home .tl-caps#capabilities,
  .tl-caps {
    padding: 56px 0 64px;
  }

  .tl-caps__grid {
    grid-template-columns: 1fr;
  }

  .tl-how__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
  }

  .tl-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .tl-hero {
    aspect-ratio: auto;
    min-height: 100svh;
  }

  .tl-hero__inner {
    min-height: 0;
    padding: calc(var(--header-h) + max(112px, 14vh)) 0 40px;
  }

  .tl-hero__copy h1 {
    font-size: 1.85rem;
    white-space: normal;
  }

  .tl-hero__copy p {
    font-size: 1rem;
  }

  .tl-hero__actions .tl-btn {
    height: 48px;
    min-height: 48px;
    font-size: 16px;
    padding: 0 22px;
  }

  .tl-stat-card,
  .tl-cap-card {
    min-height: 0;
  }

  .tl-data__stage {
    min-height: 0;
    border-radius: 16px;
  }

  .tl-data__tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .tl-data__tab {
    flex: 0 0 auto;
  }

  .tl-about__intro {
    grid-template-columns: 1fr;
  }

  .tl-about__copy {
    padding: 28px 24px 8px;
  }

  .tl-about__photo {
    min-height: 200px;
  }

  .tl-about__photo img {
    height: 200px;
  }

  .tl-about__services {
    grid-template-columns: 1fr;
  }

  .page-home .tl-header-cta {
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
  }
}

/* Scroll-in motion: enabled only when html.tl-motion is set (homepage, no reduced-motion). */
html.tl-motion .page-home .tl-hero__copy > *,
html.tl-motion .page-home .tl-logos__title,
html.tl-motion .page-home .tl-stat-card,
html.tl-motion .page-home .tl-how .tl-head,
html.tl-motion .page-home .tl-how-item,
html.tl-motion .page-home .tl-method .tl-head,
html.tl-motion .page-home .tl-steps li,
html.tl-motion .page-home .tl-journey__platform,
html.tl-motion .page-home .tl-caps .tl-head,
html.tl-motion .page-home .tl-cap-card,
html.tl-motion .page-home .tl-compare .tl-head,
html.tl-motion .page-home .tl-compare-card,
html.tl-motion .page-home .tl-compare__vs,
html.tl-motion .page-home .tl-data .tl-head,
html.tl-motion .page-home .tl-data__tabs,
html.tl-motion .page-home .tl-data__stage,
html.tl-motion .page-home .tl-about .tl-head,
html.tl-motion .page-home .tl-about__intro,
html.tl-motion .page-home .tl-service-card,
html.tl-motion .page-home .tl-cta__copy > * {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--tl-d, 0s);
}

html.tl-motion .page-home .tl-cap-card {
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.tl-motion .page-home .tl-compare-card:first-child {
  transform: translate3d(-32px, 24px, 0);
}

html.tl-motion .page-home .tl-compare-card.tl-compare-card--now {
  transform: translate3d(32px, 24px, 0);
}

html.tl-motion .page-home .tl-compare__vs {
  transform: scale(0.7);
}

html.tl-motion .page-home .tl-hero__copy > :nth-child(1) { --tl-d: 0.05s; }
html.tl-motion .page-home .tl-hero__copy > :nth-child(2) { --tl-d: 0.16s; }
html.tl-motion .page-home .tl-hero__copy > :nth-child(3) { --tl-d: 0.28s; }
html.tl-motion .page-home .tl-cta__copy > :nth-child(1) { --tl-d: 0.04s; }
html.tl-motion .page-home .tl-cta__copy > :nth-child(2) { --tl-d: 0.14s; }
html.tl-motion .page-home .tl-cta__copy > :nth-child(3) { --tl-d: 0.24s; }
html.tl-motion .page-home .tl-stat-card:nth-child(2),
html.tl-motion .page-home .tl-how-item:nth-child(2),
html.tl-motion .page-home .tl-cap-card:nth-child(2),
html.tl-motion .page-home .tl-service-card:nth-child(2),
html.tl-motion .page-home .tl-steps li:nth-child(2) { --tl-d: 0.08s; }
html.tl-motion .page-home .tl-stat-card:nth-child(3),
html.tl-motion .page-home .tl-how-item:nth-child(3),
html.tl-motion .page-home .tl-cap-card:nth-child(3),
html.tl-motion .page-home .tl-service-card:nth-child(3),
html.tl-motion .page-home .tl-steps li:nth-child(3) { --tl-d: 0.16s; }
html.tl-motion .page-home .tl-how-item:nth-child(4),
html.tl-motion .page-home .tl-cap-card:nth-child(4),
html.tl-motion .page-home .tl-steps li:nth-child(4) { --tl-d: 0.24s; }
html.tl-motion .page-home .tl-steps li:nth-child(5) { --tl-d: 0.32s; }
html.tl-motion .page-home .tl-steps li:nth-child(6) { --tl-d: 0.4s; }

html.tl-motion .page-home .tl-hero__copy > *.tl-in,
html.tl-motion .page-home .tl-logos__title.tl-in,
html.tl-motion .page-home .tl-stat-card.tl-in,
html.tl-motion .page-home .tl-how .tl-head.tl-in,
html.tl-motion .page-home .tl-how-item.tl-in,
html.tl-motion .page-home .tl-method .tl-head.tl-in,
html.tl-motion .page-home .tl-steps li.tl-in,
html.tl-motion .page-home .tl-journey__platform.tl-in,
html.tl-motion .page-home .tl-caps .tl-head.tl-in,
html.tl-motion .page-home .tl-cap-card.tl-in,
html.tl-motion .page-home .tl-compare .tl-head.tl-in,
html.tl-motion .page-home .tl-compare-card.tl-in,
html.tl-motion .page-home .tl-compare__vs.tl-in,
html.tl-motion .page-home .tl-data .tl-head.tl-in,
html.tl-motion .page-home .tl-data__tabs.tl-in,
html.tl-motion .page-home .tl-data__stage.tl-in,
html.tl-motion .page-home .tl-about .tl-head.tl-in,
html.tl-motion .page-home .tl-about__intro.tl-in,
html.tl-motion .page-home .tl-service-card.tl-in,
html.tl-motion .page-home .tl-cta__copy > *.tl-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.tl-motion .page-home .tl-hero__copy > *,
  html.tl-motion .page-home .tl-logos__title,
  html.tl-motion .page-home .tl-stat-card,
  html.tl-motion .page-home .tl-how .tl-head,
  html.tl-motion .page-home .tl-how-item,
  html.tl-motion .page-home .tl-method .tl-head,
  html.tl-motion .page-home .tl-steps li,
  html.tl-motion .page-home .tl-journey__platform,
  html.tl-motion .page-home .tl-caps .tl-head,
  html.tl-motion .page-home .tl-cap-card,
  html.tl-motion .page-home .tl-compare .tl-head,
  html.tl-motion .page-home .tl-compare-card,
  html.tl-motion .page-home .tl-compare__vs,
  html.tl-motion .page-home .tl-data .tl-head,
  html.tl-motion .page-home .tl-data__tabs,
  html.tl-motion .page-home .tl-data__stage,
  html.tl-motion .page-home .tl-about .tl-head,
  html.tl-motion .page-home .tl-about__intro,
  html.tl-motion .page-home .tl-service-card,
  html.tl-motion .page-home .tl-cta__copy > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
