@font-face {
  font-family: "Cal Sans";
  src: url("../fonts/Cal_Sans/CalSans-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/static/Geologica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/static/Geologica-SemiBold.ttf") format("truetype");
  font-weight: 650;
  font-display: swap;
}

:root {
  --tl-ink: #101415;
  --tl-ink-soft: #445052;
  --tl-muted: #6d797b;
  --tl-line: #d9e4e3;
  --tl-surface: #ffffff;
  --tl-surface-soft: #f5f8f7;
  --tl-surface-blue: #eef7f8;
  --tl-primary: #038488;
  --tl-primary-dark: #02676a;
  --tl-accent: #8fcfd0;
  --tl-success: #2c8f62;
  --tl-mark-dark: #20242a;
  --tl-mark-mid: #6c7177;
  --tl-mark-light: #bfc5c8;
  --tl-mark-primary: #038488;
  --tl-mark-aqua: #8fcfd0;
  --tl-mark-stack: url("../media/terminal-lens-site-icon.png") center / contain no-repeat;
  --tl-corner-stack-subtle: url("../media/terminal-lens-site-icon.png") center / contain no-repeat;
  --tl-embrace-stroke: clamp(6px, 0.74vw, 10px);
  --tl-embrace-gap: clamp(12px, 1.32vw, 20px);
  --tl-embrace-arm: clamp(88px, 11vw, 164px);
  --tl-embrace-black: #030404;
  --tl-embrace-inner: rgba(3, 132, 136, 0.84);
  --tl-embrace-second: rgba(116, 184, 186, 0.78);
  --tl-embrace-third: rgba(159, 205, 207, 0.72);
  --tl-embrace-outer: rgba(191, 197, 200, 0.78);
  --tl-shadow: 0 24px 70px rgba(12, 34, 35, 0.11);
  --tl-shadow-strong: 0 38px 110px rgba(3, 27, 29, 0.22);
  --tl-radius: 8px;
  --tl-container: 1180px;
  --tl-header-height: 116px;
  --tl-header-height-scrolled: 76px;
  --tl-header-logo-width: clamp(242px, 18vw, 300px);
  --tl-header-logo-width-scrolled: clamp(176px, 14vw, 218px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tl-header-height) + 24px);
}

[id] {
  scroll-margin-top: calc(var(--tl-header-height) + 24px);
}

body {
  margin: 0;
  background: var(--tl-surface);
  color: var(--tl-ink);
  font-family: "Geologica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

[data-tl-video-frame] {
  --tl-video-opacity: 1;
  position: relative;
}

.tl-video-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  border-radius: inherit;
  background-color: #071112;
  background-position: center;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

[data-tl-video-frame] video[data-tl-video] {
  opacity: 0;
  transition: opacity 260ms ease;
}

[data-tl-video-frame].is-video-ready video[data-tl-video] {
  opacity: var(--tl-video-opacity);
}

[data-tl-video-frame].is-video-ready .tl-video-placeholder {
  visibility: hidden;
  opacity: 0;
}

a {
  color: inherit;
}

.screen-reader-text,
.tl-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tl-skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--tl-ink);
  color: #fff;
  border-radius: var(--tl-radius);
}

.tl-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 228, 227, 0.78);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.tl-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(217, 228, 227, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

.tl-header__inner {
  width: min(100% - 32px, var(--tl-container));
  min-height: var(--tl-header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 260ms ease;
}

.tl-header.is-scrolled .tl-header__inner {
  min-height: var(--tl-header-height-scrolled);
}

.tl-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--tl-ink);
  flex: 0 0 auto;
}

.tl-brand__logo,
.tl-brand .custom-logo {
  width: var(--tl-header-logo-width);
  max-width: var(--tl-header-logo-width);
  height: auto;
  object-fit: contain;
  transition: width 260ms ease, max-width 260ms ease;
}

.tl-header.is-scrolled .tl-brand__logo,
.tl-header.is-scrolled .tl-brand .custom-logo {
  width: var(--tl-header-logo-width-scrolled);
  max-width: var(--tl-header-logo-width-scrolled);
}

.tl-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.tl-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--tl-ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.tl-menu a:hover,
.tl-menu .current-menu-item > a {
  color: var(--tl-primary-dark);
}

.tl-nav__cta,
.tl-button,
.tl-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--tl-primary);
  border-radius: var(--tl-radius);
  background: var(--tl-primary);
  color: #fff;
  font: 650 14px/1 "Geologica", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tl-nav__cta::after,
.tl-button::after,
.tl-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 48%, transparent 100%);
  transition: transform 520ms ease;
}

.tl-nav__cta:hover,
.tl-button:hover,
.tl-form button:hover {
  transform: translateY(-1px);
  background: var(--tl-primary-dark);
  border-color: var(--tl-primary-dark);
  box-shadow: 0 12px 30px rgba(3, 132, 136, 0.24);
}

.tl-nav__cta:hover::after,
.tl-button:hover::after,
.tl-form button:hover::after {
  transform: translateX(120%);
}

.tl-button--ghost {
  background: transparent;
  color: var(--tl-primary-dark);
}

.tl-button--ghost:hover {
  color: #fff;
}

.tl-button--light {
  background: #fff;
  border-color: #fff;
  color: var(--tl-primary-dark);
}

.tl-button--light:hover {
  background: var(--tl-primary-dark);
  border-color: var(--tl-primary-dark);
  color: #fff;
}

.tl-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
}

.tl-nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--tl-ink);
}

.tl-section {
  padding: 96px 0;
}

.tl-section--soft {
  background: var(--tl-surface-soft);
}

.tl-section--blue {
  background: var(--tl-surface-blue);
}

.tl-section--dark {
  background: var(--tl-ink);
  color: #fff;
}

.tl-container {
  width: min(100% - 32px, var(--tl-container));
  margin: 0 auto;
}

.tl-narrow {
  max-width: 820px;
}

.tl-eyebrow {
  margin: 0 0 14px;
  color: var(--tl-primary-dark);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.tl-section--dark .tl-eyebrow,
.tl-hero--media .tl-eyebrow {
  color: #9be1e2;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Cal Sans", "Geologica", sans-serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(46px, 6.4vw, 88px);
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

p {
  margin: 0;
}

.tl-lead {
  max-width: 780px;
  color: var(--tl-ink-soft);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.tl-section--dark .tl-lead,
.tl-hero--media .tl-lead {
  color: rgba(255, 255, 255, 0.82);
}

.tl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tl-objection-line {
  margin-top: 18px;
  color: var(--tl-ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.tl-hero {
  position: relative;
  min-height: calc(100vh - var(--tl-header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.tl-hero--short {
  min-height: 520px;
}

.tl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.tl-hero--media {
  background: #071112;
  color: #fff;
}

.tl-hero--media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.82) 0%, rgba(7, 17, 18, 0.48) 48%, rgba(7, 17, 18, 0.12) 100%),
    var(--tl-hero-image, none) center/cover no-repeat;
  transform: scale(1.02);
}

.tl-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  opacity: 0.42;
}

.tl-hero--media > .tl-container {
  position: relative;
  z-index: 1;
}

.tl-hero--case {
  min-height: clamp(430px, 45vw, 560px);
  color: var(--tl-ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(238, 247, 248, 0.72) 68%, rgba(238, 247, 248, 0.42) 100%),
    url("../media/csp-aerea-terminal.jpg") right center / min(64vw, 840px) auto no-repeat,
    linear-gradient(135deg, #ffffff 0%, #eef7f8 100%);
}

.tl-hero--case::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 132, 136, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(3, 132, 136, 0.06) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.78) 44%, transparent 88%);
  opacity: 0.7;
}

.tl-hero--case > .tl-container {
  position: relative;
  z-index: 1;
}

.tl-hero--case h1 {
  max-width: 720px;
}

.tl-hero--case .tl-lead {
  max-width: 760px;
  margin-top: 16px;
  color: var(--tl-ink-soft);
}

.tl-hero--clean {
  min-height: auto;
  align-items: start;
  padding: 56px 0 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(3, 132, 136, 0.11), transparent 42%),
    linear-gradient(180deg, #fff 0%, #fff 64%, #f7faf9 100%);
}

.tl-hero--clean .tl-port-marquee {
  order: 2;
  margin-top: 32px;
}

.tl-hero--clean .tl-product-stage {
  order: 3;
}

.tl-hero-center {
  order: 1;
  max-width: 980px;
  text-align: center;
  display: grid;
  justify-items: center;
}

.tl-hero-center h1 {
  max-width: 940px;
  font-size: clamp(46px, 6.4vw, 86px);
}

.tl-hero-center .tl-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--tl-ink-soft);
}

.tl-hero-center .tl-actions {
  justify-content: center;
}

.tl-hero--clean .tl-button--light {
  border-color: var(--tl-line);
  box-shadow: 0 12px 34px rgba(12, 34, 35, 0.07);
}

.tl-product-stage {
  position: relative;
  margin-top: clamp(78px, 7vw, 112px);
  padding-bottom: 116px;
  isolation: isolate;
}

.tl-stage-photo,
.tl-stage-product {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(217, 228, 227, 0.88);
  border-radius: var(--tl-radius);
  background: #fff;
}

.tl-stage-photo,
.tl-product-preview,
.tl-panel--elevated:has(> img),
.tl-media-band .tl-panel--elevated:has(> img),
.tl-case-visual-band figure:first-child {
  overflow: visible;
}

.tl-stage-photo::before,
.tl-product-preview::before,
.tl-panel--elevated:has(> img)::before,
.tl-media-band .tl-panel--elevated:has(> img)::before,
.tl-case-visual-band figure:first-child::before,
.tl-stage-photo::after,
.tl-product-preview::after,
.tl-panel--elevated:has(> img)::after,
.tl-media-band .tl-panel--elevated:has(> img)::after,
.tl-case-visual-band figure:first-child::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.tl-stage-photo::before,
.tl-product-preview::before,
.tl-panel--elevated:has(> img)::before,
.tl-media-band .tl-panel--elevated:has(> img)::before,
.tl-case-visual-band figure:first-child::before {
  left: calc(-1 * (var(--tl-embrace-gap) + var(--tl-embrace-stroke)));
  bottom: calc(-1 * (var(--tl-embrace-gap) + var(--tl-embrace-stroke)));
  width: var(--tl-embrace-arm);
  height: var(--tl-embrace-arm);
  background:
    linear-gradient(var(--tl-embrace-black), var(--tl-embrace-black)) left bottom / var(--tl-embrace-arm) var(--tl-embrace-stroke) no-repeat,
    linear-gradient(var(--tl-embrace-black), var(--tl-embrace-black)) left bottom / var(--tl-embrace-stroke) var(--tl-embrace-arm) no-repeat;
}

.tl-stage-photo::after,
.tl-product-preview::after,
.tl-panel--elevated:has(> img)::after,
.tl-media-band .tl-panel--elevated:has(> img)::after,
.tl-case-visual-band figure:first-child::after {
  top: calc(-1 * ((var(--tl-embrace-gap) * 4) + var(--tl-embrace-stroke)));
  right: calc(-1 * ((var(--tl-embrace-gap) * 4) + var(--tl-embrace-stroke)));
  width: calc(var(--tl-embrace-arm) + (var(--tl-embrace-gap) * 3));
  height: calc(var(--tl-embrace-arm) + (var(--tl-embrace-gap) * 3));
  background:
    linear-gradient(var(--tl-embrace-outer), var(--tl-embrace-outer)) right 0 top 0 / var(--tl-embrace-arm) var(--tl-embrace-stroke) no-repeat,
    linear-gradient(var(--tl-embrace-outer), var(--tl-embrace-outer)) right 0 top 0 / var(--tl-embrace-stroke) var(--tl-embrace-arm) no-repeat,
    linear-gradient(var(--tl-embrace-third), var(--tl-embrace-third)) right var(--tl-embrace-gap) top var(--tl-embrace-gap) / var(--tl-embrace-arm) var(--tl-embrace-stroke) no-repeat,
    linear-gradient(var(--tl-embrace-third), var(--tl-embrace-third)) right var(--tl-embrace-gap) top var(--tl-embrace-gap) / var(--tl-embrace-stroke) var(--tl-embrace-arm) no-repeat,
    linear-gradient(var(--tl-embrace-second), var(--tl-embrace-second)) right calc(var(--tl-embrace-gap) * 2) top calc(var(--tl-embrace-gap) * 2) / var(--tl-embrace-arm) var(--tl-embrace-stroke) no-repeat,
    linear-gradient(var(--tl-embrace-second), var(--tl-embrace-second)) right calc(var(--tl-embrace-gap) * 2) top calc(var(--tl-embrace-gap) * 2) / var(--tl-embrace-stroke) var(--tl-embrace-arm) no-repeat,
    linear-gradient(var(--tl-embrace-inner), var(--tl-embrace-inner)) right calc(var(--tl-embrace-gap) * 3) top calc(var(--tl-embrace-gap) * 3) / var(--tl-embrace-arm) var(--tl-embrace-stroke) no-repeat,
    linear-gradient(var(--tl-embrace-inner), var(--tl-embrace-inner)) right calc(var(--tl-embrace-gap) * 3) top calc(var(--tl-embrace-gap) * 3) / var(--tl-embrace-stroke) var(--tl-embrace-arm) no-repeat;
}

.tl-stage-photo {
  --tl-embrace-stroke: clamp(6px, 0.65vw, 10px);
  --tl-embrace-gap: clamp(12px, 1vw, 18px);
  --tl-embrace-arm: clamp(108px, 11vw, 164px);
  z-index: 1;
  height: clamp(430px, 52vw, 680px);
  box-shadow: 0 40px 120px rgba(12, 34, 35, 0.12);
}

.tl-panel--elevated:has(> img),
.tl-media-band .tl-panel--elevated:has(> img),
.tl-case-visual-band figure:first-child {
  --tl-embrace-stroke: clamp(5px, 0.52vw, 8px);
  --tl-embrace-gap: clamp(9px, 0.95vw, 15px);
  --tl-embrace-arm: clamp(72px, 8.5vw, 132px);
}

.tl-product-preview {
  --tl-embrace-stroke: clamp(5px, 0.5vw, 8px);
  --tl-embrace-gap: clamp(9px, 0.9vw, 14px);
  --tl-embrace-arm: clamp(72px, 7vw, 116px);
}

.tl-stage-photo img,
.tl-stage-product img,
.tl-stage-product video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.tl-stage-product {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 42px;
  width: min(680px, 66%);
  height: 286px;
  transform: translateX(-50%);
  box-shadow: 0 30px 90px rgba(12, 34, 35, 0.2);
}

.tl-stage-product figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tl-ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.tl-corner-angle-mark {
  display: none;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.tl-corner-angle-mark__angle {
  display: none;
}

.tl-corner-angle-mark--home {
  top: 64px;
  right: 36px;
  width: 112px;
  height: 112px;
  background: var(--tl-mark-stack);
  opacity: 0.18;
}

.tl-corner-angle-mark--home .tl-corner-angle-mark__angle--one {
  display: none;
}

.tl-corner-angle-mark--home .tl-corner-angle-mark__angle--two {
  --angle-color: rgba(190, 198, 200, 0.52);
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
}

.tl-corner-angle-mark--home .tl-corner-angle-mark__angle--three {
  --angle-color: rgba(143, 207, 208, 0.58);
  top: 18px;
  right: 18px;
  width: 76px;
  height: 76px;
}

.tl-corner-angle-mark--home .tl-corner-angle-mark__angle--four {
  --angle-color: rgba(3, 132, 136, 0.62);
  top: 36px;
  right: 36px;
  width: 60px;
  height: 60px;
}

.tl-section--production {
  padding: 82px 0;
}

.tl-production-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: start;
}

.tl-production-visual-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}

.tl-video-metric-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.9);
  border-radius: var(--tl-radius);
  background: #0d1718;
  box-shadow: 0 34px 98px rgba(12, 34, 35, 0.16);
}

.tl-video-metric-card__media {
  --tl-video-opacity: 0.72;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tl-video-metric-card__media img,
.tl-video-metric-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.tl-video-metric-card__media img {
  opacity: 0.98;
  filter: saturate(1.06) contrast(1.02);
}

.tl-video-metric-card__media video {
  opacity: 0.72;
  mix-blend-mode: normal;
  transform: scale(1.04);
  animation: tlProductionVideoDrift 14s ease-in-out infinite alternate;
}

.tl-video-metric-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.16), rgba(7, 17, 18, 0.02) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
}

.tl-video-metric-card__panel {
  --tl-metric-panel-y: 0;
  position: absolute;
  z-index: 3;
  right: 22px;
  top: 28px;
  width: min(330px, calc(100% - 44px));
  padding: 22px;
  border: 1px solid rgba(217, 228, 227, 0.88);
  border-radius: var(--tl-radius);
  background: rgba(245, 248, 247, 0.92);
  box-shadow: 0 22px 70px rgba(3, 27, 29, 0.24);
  transform: translateY(var(--tl-metric-panel-y));
  backdrop-filter: blur(18px);
  animation: tlMetricPanelFloat 6s ease-in-out infinite alternate;
}

.tl-video-metric-card__panel strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.tl-video-metric-card__panel abbr {
  color: inherit;
  text-decoration: none;
}

.tl-video-metric-card__panel span {
  display: block;
  margin-top: 8px;
  color: var(--tl-ink);
  font-weight: 650;
  line-height: 1.32;
}

.tl-mini-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 9px;
  height: 58px;
  margin-top: 22px;
}

.tl-mini-chart i {
  display: block;
  min-height: 22px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #038488, #b8e6e5);
  transform-origin: center bottom;
  animation: tlMiniChartPulse 2.8s ease-in-out infinite;
}

.tl-mini-chart i:nth-child(2) {
  height: 42px;
  animation-delay: -1.8s;
}

.tl-mini-chart i:nth-child(3) {
  height: 28px;
  animation-delay: -0.9s;
}

.tl-mini-chart i:nth-child(4) {
  height: 46px;
  animation-delay: -2.3s;
}

.tl-mini-chart i:nth-child(5) {
  height: 54px;
  animation-delay: -1.2s;
}

.tl-mini-chart i:nth-child(6) {
  height: 30px;
  animation-delay: -0.4s;
}

@keyframes tlProductionVideoDrift {
  from {
    transform: scale(1.04) translate3d(-1.4%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.4%, -1%, 0);
  }
}

@keyframes tlMetricPanelFloat {
  from {
    transform: translateY(var(--tl-metric-panel-y)) translate3d(0, 0, 0);
  }

  to {
    transform: translateY(var(--tl-metric-panel-y)) translate3d(0, -8px, 0);
  }
}

@keyframes tlMiniChartPulse {
  0%,
  100% {
    transform: scaleY(0.76);
    opacity: 0.74;
  }

  48% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.tl-production-copy {
  padding: 34px;
  border: 1px solid rgba(217, 228, 227, 0.84);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 70px rgba(12, 34, 35, 0.09);
}

.tl-production-copy p:not(.tl-eyebrow) {
  margin-top: 18px;
  color: var(--tl-ink-soft);
}

.tl-production-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.tl-production-facts span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 228, 227, 0.86);
  border-radius: var(--tl-radius);
  background: #fff;
  color: var(--tl-ink-soft);
  font-size: 14px;
  line-height: 1.3;
}

.tl-production-facts strong {
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.tl-production-copy--teaser {
  align-self: start;
  padding: 30px;
}

.tl-production-copy--teaser h2 {
  font-size: clamp(34px, 3.2vw, 48px);
}

.tl-csp-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  padding: 13px 15px;
  margin-bottom: 22px;
  border: 1px solid rgba(3, 132, 136, 0.18);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(12, 34, 35, 0.08);
}

.tl-csp-lockup--video {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  width: clamp(190px, 34%, 236px);
  min-height: 196px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: 22px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.tl-csp-lockup img {
  width: 126px;
  max-width: 42%;
  height: auto;
  flex: 0 0 auto;
}

.tl-csp-lockup--video img {
  width: min(172px, 100%);
  max-width: 100%;
}

.tl-csp-lockup span {
  color: var(--tl-ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.28;
}

.tl-csp-lockup--video span {
  max-width: 180px;
}

.tl-production-testimonial {
  position: relative;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(3, 132, 136, 0.18);
  border-radius: var(--tl-radius);
  background:
    linear-gradient(135deg, rgba(3, 132, 136, 0.12), rgba(255, 255, 255, 0.96) 52%),
    #fff;
  box-shadow: 0 18px 48px rgba(12, 34, 35, 0.08);
  animation: tlTestimonialFloat 6s ease-in-out infinite alternate;
}

.tl-production-testimonial::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--tl-primary), var(--tl-accent));
}

.tl-production-testimonial blockquote {
  position: relative;
  margin: 0;
  color: var(--tl-ink);
  font-family: "Geologica", sans-serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-style: italic;
  font-weight: 650;
  line-height: 1.22;
}

.tl-production-testimonial blockquote p,
.tl-production-testimonial blockquote span {
  display: block;
  margin: 0;
}

.tl-production-testimonial figcaption {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  color: var(--tl-ink-soft);
  font-style: normal;
  line-height: 1.34;
}

.tl-production-testimonial figcaption strong {
  color: var(--tl-primary-dark);
}

.tl-production-testimonial figcaption span {
  font-size: 13px;
  font-weight: 650;
}

.tl-production-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.tl-production-proof-strip span {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(3, 132, 136, 0.16);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--tl-ink-soft);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  animation: tlProofCardPulse 4.8s ease-in-out infinite;
}

.tl-production-proof-strip span:nth-child(2) {
  animation-delay: -1.4s;
}

.tl-production-proof-strip span:nth-child(3) {
  animation-delay: -2.8s;
}

.tl-production-proof-strip strong {
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", "Geologica", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.tl-production-teaser-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tl-production-teaser-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(3, 132, 136, 0.18);
  border-radius: 999px;
  background: rgba(3, 132, 136, 0.07);
  color: var(--tl-primary-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

@keyframes tlTestimonialFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes tlProofCardPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(12, 34, 35, 0.05);
  }

  48% {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(3, 132, 136, 0.12);
  }
}

.tl-proof-row {
  position: absolute;
  z-index: 3;
  right: 22px;
  top: 22px;
  display: flex;
  gap: 8px;
  max-width: 610px;
}

.tl-proof-row div {
  width: 150px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 228, 227, 0.9);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(12, 34, 35, 0.11);
  backdrop-filter: blur(16px);
}

.tl-proof-row--teaser a {
  display: block;
  width: 190px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 228, 227, 0.92);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--tl-ink);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(12, 34, 35, 0.11);
  backdrop-filter: blur(16px);
}

.tl-proof-row strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.tl-proof-row span {
  display: block;
  margin-top: 7px;
  color: var(--tl-ink-soft);
  font-size: 11px;
  line-height: 1.28;
}

.tl-proof-row--teaser strong {
  font-size: 22px;
}

.tl-hero--split {
  min-height: auto;
  align-items: start;
  padding: 84px 0 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 251, 250, 0.94)),
    radial-gradient(circle at 84% 8%, rgba(3, 132, 136, 0.14), transparent 34%),
    #f8fbfa;
}

.tl-hero-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.88fr);
  gap: 58px;
  align-items: center;
}

.tl-hero-split-grid > * {
  min-width: 0;
}

.tl-hero-copy {
  padding: 16px 0 24px;
}

.tl-hero--split h1 {
  max-width: 780px;
}

.tl-hero--split .tl-lead {
  color: var(--tl-ink-soft);
}

.tl-hero--split .tl-button--light {
  border-color: var(--tl-line);
  box-shadow: 0 12px 34px rgba(12, 34, 35, 0.07);
}

.tl-hero-showcase {
  position: relative;
  min-height: 560px;
}

.tl-showcase-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.82);
  border-radius: var(--tl-radius);
  background: #fff;
  box-shadow: var(--tl-shadow);
}

.tl-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tl-showcase-card--main {
  width: 82%;
  height: 520px;
  margin-left: auto;
}

.tl-showcase-card--product {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 58%;
  height: 250px;
  box-shadow: 0 28px 80px rgba(12, 34, 35, 0.18);
}

.tl-showcase-card figcaption,
.tl-port-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--tl-ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.tl-showcase-stat {
  position: absolute;
  top: 34px;
  left: 8px;
  width: 176px;
  padding: 18px;
  border: 1px solid rgba(217, 228, 227, 0.86);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 58px rgba(12, 34, 35, 0.12);
  backdrop-filter: blur(18px);
}

.tl-showcase-stat strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.tl-showcase-stat span {
  display: block;
  margin-top: 8px;
  color: var(--tl-ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.tl-hero__media {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tl-radius);
  overflow: hidden;
  box-shadow: var(--tl-shadow-strong);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.tl-hero__media img,
.tl-hero__media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tl-hero--product {
  background:
    radial-gradient(circle at 72% 22%, rgba(3, 132, 136, 0.13), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}

.tl-product-preview {
  position: relative;
  isolation: isolate;
  width: min(100%, 600px);
  margin-left: auto;
  padding: 10px;
  overflow: visible;
  border: 1px solid rgba(217, 228, 227, 0.9);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 100px rgba(12, 34, 35, 0.14);
}

.tl-product-preview > * {
  position: relative;
  z-index: 1;
}

.tl-product-preview > .tl-video-placeholder {
  position: absolute;
  inset: 30px 10px 10px;
  border-radius: calc(var(--tl-radius) - 2px);
}

.tl-product-preview__chrome {
  display: flex;
  gap: 6px;
  padding: 3px 4px 9px;
}

.tl-product-preview__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfdcdb;
}

.tl-product-preview__chrome span:first-child {
  background: var(--tl-primary);
}

.tl-product-preview img,
.tl-product-preview video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 58% 50%;
  border-radius: calc(var(--tl-radius) - 2px);
  background: #172022;
}

.tl-product-preview__chip {
  position: absolute;
  right: -18px;
  bottom: 58px;
  width: 220px;
  padding: 16px;
  border: 1px solid rgba(217, 228, 227, 0.92);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 58px rgba(12, 34, 35, 0.14);
  backdrop-filter: blur(16px);
}

.tl-product-preview__chip strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.tl-product-preview__chip span {
  display: block;
  margin-top: 8px;
  color: var(--tl-ink-soft);
  font-size: 13px;
  line-height: 1.38;
}

.tl-product-preview__rail {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.tl-product-preview__rail span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tl-ink);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(12, 34, 35, 0.1);
}

.tl-hero--lens {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 207, 208, 0.12), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(3, 132, 136, 0.17), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f5faf9 100%);
}

.tl-hero--lens::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.5) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 250, 249, 0.92)),
    var(--tl-lens-hero-image) center / cover no-repeat;
  opacity: 0.94;
}

.tl-hero--lens::after {
  content: "";
  position: absolute;
  right: min(6vw, 86px);
  bottom: 28px;
  z-index: -1;
  width: 260px;
  height: 190px;
  background: var(--tl-mark-stack);
  opacity: 0.1;
  transform: scale(1.1);
  transform-origin: right bottom;
}

.tl-hero-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  border-top: 1px solid rgba(3, 132, 136, 0.22);
  border-bottom: 1px solid rgba(3, 132, 136, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.06);
  backdrop-filter: blur(18px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.tl-hero-marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 4vw, 54px);
  padding: 16px 0;
  color: var(--tl-primary-dark);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  animation: tlMarquee 32s linear infinite;
}

.tl-hero-marquee:hover .tl-hero-marquee__track {
  animation-play-state: paused;
}

.tl-hero-marquee__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tl-hero-marquee__track span::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: clamp(28px, 4vw, 54px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tl-primary), var(--tl-mark-aqua));
  box-shadow: 0 0 0 6px rgba(3, 132, 136, 0.1);
}

.tl-screen-stack {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.tl-screen-stack::before {
  content: "";
  position: absolute;
  inset: 44px 22px 44px 58px;
  z-index: -1;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(3, 132, 136, 0.1) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(3, 132, 136, 0.08) 1px, transparent 1px) 0 0 / 44px 44px;
  opacity: 0.7;
}

.tl-screen-stack__screen {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.9);
  border-radius: var(--tl-radius);
  background: #fff;
  box-shadow: 0 26px 74px rgba(12, 34, 35, 0.13);
}

.tl-screen-stack__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tl-screen-stack__screen--one {
  z-index: 4;
  right: 4%;
  top: 120px;
  width: 74%;
  height: 260px;
}

.tl-screen-stack__screen--two {
  z-index: 3;
  left: 3%;
  top: 70px;
  width: 44%;
  height: 190px;
  opacity: 0.92;
}

.tl-screen-stack__screen--three {
  z-index: 2;
  right: 0;
  top: 28px;
  width: 42%;
  height: 158px;
  opacity: 0.88;
}

.tl-screen-stack__screen--four {
  z-index: 1;
  left: 18%;
  bottom: 34px;
  width: 54%;
  height: 176px;
  opacity: 0.82;
}

.tl-screen-stack__screen figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tl-ink);
  font-size: 12px;
  font-weight: 650;
}

.tl-screen-stack__chip {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 40px;
  width: 250px;
  padding: 16px;
  border: 1px solid rgba(217, 228, 227, 0.9);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 64px rgba(12, 34, 35, 0.14);
  backdrop-filter: blur(16px);
}

.tl-screen-stack__chip strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.tl-screen-stack__chip span {
  display: block;
  margin-top: 8px;
  color: var(--tl-ink-soft);
  font-size: 13px;
  line-height: 1.38;
}

.tl-section--lens-map {
  padding: 56px 0 54px;
  background:
    radial-gradient(circle at 8% 0%, rgba(3, 132, 136, 0.14), transparent 34%),
    linear-gradient(180deg, #eef7f8 0%, #fff 100%);
}

.tl-lens-pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

.tl-lens-pipeline article {
  position: relative;
  min-height: 252px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--tl-radius);
  background: transparent;
}

.tl-lens-pipeline article::after {
  content: none;
}

.tl-lens-flip-card {
  cursor: pointer;
  outline: none;
}

.tl-lens-flip-card__inner {
  position: relative;
  min-height: inherit;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.tl-lens-flip-card:hover .tl-lens-flip-card__inner,
.tl-lens-flip-card:focus .tl-lens-flip-card__inner,
.tl-lens-flip-card:focus-within .tl-lens-flip-card__inner,
.tl-lens-flip-card.is-active .tl-lens-flip-card__inner {
  transform: rotateY(180deg);
}

.tl-lens-flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(143, 207, 208, 0.46);
  border-radius: inherit;
  backface-visibility: hidden;
  transform: translateZ(0);
  box-shadow: 0 22px 58px rgba(3, 103, 106, 0.16);
}

.tl-lens-flip-card__face::after {
  content: none;
  display: none;
}

.tl-lens-flip-card__face--front {
  justify-content: flex-end;
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 208, 0.36), transparent 34%),
    linear-gradient(135deg, #027073 0%, var(--tl-primary) 56%, #79c6c7 100%);
  color: #fff;
}

.tl-lens-flip-card__face--back {
  justify-content: center;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #025f62 0%, #027b7f 58%, #8fcfd0 100%);
  color: #fff;
  transform: rotateY(180deg);
}

.tl-lens-pipeline article:nth-child(2) .tl-lens-flip-card__face--front {
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 208, 0.3), transparent 34%),
    linear-gradient(135deg, #04686b 0%, #038488 58%, #73bfc0 100%);
}

.tl-lens-pipeline article:nth-child(3) .tl-lens-flip-card__face--front {
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 208, 0.28), transparent 34%),
    linear-gradient(135deg, #075a5e 0%, #02777b 58%, #68b8ba 100%);
}

.tl-lens-pipeline article:nth-child(2) .tl-lens-flip-card__face--back {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #064f52 0%, #02777b 58%, #79c6c7 100%);
}

.tl-lens-pipeline article:nth-child(3) .tl-lens-flip-card__face--back {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #073f43 0%, #026e72 58%, #72bec0 100%);
}

.tl-lens-pipeline .tl-lens-flip-card__number {
  display: none;
}

.tl-lens-pipeline h3 {
  position: relative;
  z-index: 1;
  max-width: 320px;
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
}

.tl-lens-pipeline article:nth-child(3) h3 {
  max-width: 280px;
}

.tl-lens-pipeline p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.35;
}

.tl-section--lens-photo {
  padding: 42px 0 88px;
  background:
    linear-gradient(180deg, #fff 0%, #f3f9f8 100%);
}

.tl-lens-photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.72fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.88);
  border-radius: var(--tl-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(143, 207, 208, 0.18), transparent 30%),
    linear-gradient(135deg, #f7fbfb 0%, #ffffff 100%);
  box-shadow: 0 34px 100px rgba(12, 34, 35, 0.12);
}

.tl-lens-photo-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #0d1718;
}

.tl-lens-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.08), transparent 42%),
    linear-gradient(0deg, rgba(3, 132, 136, 0.18) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(3, 132, 136, 0.16) 1px, transparent 1px) 0 0 / 44px 44px;
  pointer-events: none;
}

.tl-lens-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.tl-lens-photo-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 58px);
}

.tl-lens-photo-copy h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.tl-lens-photo-copy p:not(.tl-eyebrow) {
  margin-top: 18px;
  color: var(--tl-ink-soft);
  font-size: 18px;
}

.tl-lens-photo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.tl-lens-photo-tags span {
  padding: 9px 11px;
  border: 1px solid rgba(3, 132, 136, 0.2);
  border-radius: 999px;
  background: rgba(3, 132, 136, 0.08);
  color: var(--tl-primary-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.tl-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--tl-radius);
  overflow: hidden;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.tl-proof-strip div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.tl-proof-strip strong {
  display: block;
  font-family: "Cal Sans", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.tl-proof-strip--compact {
  max-width: 720px;
  margin-top: 36px;
  border-color: rgba(217, 228, 227, 0.92);
  background: rgba(217, 228, 227, 0.8);
  box-shadow: 0 20px 50px rgba(12, 34, 35, 0.08);
  backdrop-filter: none;
}

.tl-proof-strip--compact div {
  background: rgba(255, 255, 255, 0.96);
}

.tl-proof-strip--compact strong {
  color: var(--tl-primary-dark);
}

.tl-proof-strip--compact span {
  display: block;
  margin-top: 7px;
  color: var(--tl-ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.tl-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.tl-grid--contact {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.74fr);
  align-items: stretch;
}

.tl-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 42px;
}

.tl-card,
.tl-panel,
.tl-form {
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: var(--tl-surface);
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tl-card {
  padding: 28px;
}

.tl-card:hover,
.tl-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(3, 132, 136, 0.34);
  box-shadow: var(--tl-shadow);
}

.tl-card h3 {
  margin-bottom: 12px;
}

.tl-card p,
.tl-card li {
  color: var(--tl-ink-soft);
}

.tl-section--audience .tl-card,
.tl-section--problems .tl-problem,
.tl-position-card,
.tl-limits-grid .tl-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.tl-section--audience .tl-card::before,
.tl-section--problems .tl-problem::before,
.tl-position-card::before,
.tl-limits-grid .tl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(143, 207, 208, 0.44), transparent 30%),
    linear-gradient(135deg, #025f62 0%, var(--tl-primary) 56%, #8fcfd0 100%);
  transition: opacity 220ms ease;
}

.tl-section--audience .tl-card::after,
.tl-section--problems .tl-problem::after,
.tl-position-card::after,
.tl-limits-grid .tl-card::after {
  content: none;
  display: none;
}

.tl-section--audience .tl-card > *,
.tl-section--problems .tl-problem > *,
.tl-position-card > *,
.tl-limits-grid .tl-card > * {
  position: relative;
  z-index: 1;
}

.tl-section--audience .tl-card:hover,
.tl-section--audience .tl-card:focus-visible,
.tl-section--problems .tl-problem:hover,
.tl-section--problems .tl-problem:focus-visible,
.tl-position-card:hover,
.tl-position-card:focus-visible,
.tl-limits-grid .tl-card:hover,
.tl-limits-grid .tl-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(3, 132, 136, 0.76);
  color: #fff;
  box-shadow: 0 26px 76px rgba(3, 103, 106, 0.22);
}

.tl-section--audience .tl-card:hover::before,
.tl-section--audience .tl-card:focus-visible::before,
.tl-section--problems .tl-problem:hover::before,
.tl-section--problems .tl-problem:focus-visible::before,
.tl-position-card:hover::before,
.tl-position-card:focus-visible::before,
.tl-limits-grid .tl-card:hover::before,
.tl-limits-grid .tl-card:focus-visible::before {
  opacity: 1;
}

.tl-section--audience .tl-card:hover::after,
.tl-section--audience .tl-card:focus-visible::after,
.tl-section--problems .tl-problem:hover::after,
.tl-section--problems .tl-problem:focus-visible::after,
.tl-position-card:hover::after,
.tl-position-card:focus-visible::after,
.tl-limits-grid .tl-card:hover::after,
.tl-limits-grid .tl-card:focus-visible::after {
  opacity: 0.18;
  transform: scale(0.86);
}

.tl-section--audience .tl-card h3,
.tl-section--audience .tl-card p,
.tl-section--problems .tl-problem h3,
.tl-section--problems .tl-problem p,
.tl-section--problems .tl-problem span,
.tl-position-card h3,
.tl-position-card p,
.tl-limits-grid .tl-card h3,
.tl-limits-grid .tl-card p {
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.tl-section--audience .tl-card:hover h3,
.tl-section--audience .tl-card:hover p,
.tl-section--audience .tl-card:focus-visible h3,
.tl-section--audience .tl-card:focus-visible p,
.tl-section--problems .tl-problem:hover h3,
.tl-section--problems .tl-problem:hover p,
.tl-section--problems .tl-problem:focus-visible h3,
.tl-section--problems .tl-problem:focus-visible p,
.tl-position-card:hover h3,
.tl-position-card:hover p,
.tl-position-card:focus-visible h3,
.tl-position-card:focus-visible p,
.tl-limits-grid .tl-card:hover h3,
.tl-limits-grid .tl-card:hover p,
.tl-limits-grid .tl-card:focus-visible h3,
.tl-limits-grid .tl-card:focus-visible p {
  color: #fff;
}

.tl-section--problems .tl-problem:hover span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.tl-contact-card {
  display: grid;
  align-content: start;
}

.tl-contact-card__brand {
  margin: 0 0 24px;
}

.tl-contact-card__brand-link {
  display: inline-block;
}

.tl-contact-card__brand img {
  width: min(250px, 74%);
  height: auto;
}

.tl-contact-card__address {
  color: var(--tl-ink-soft);
  font-style: normal;
  line-height: 1.58;
}

.tl-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.tl-panel:has(> img),
.tl-panel:has(> video) {
  align-self: start;
  background: transparent;
  line-height: 0;
}

.tl-panel--elevated:has(> img),
.tl-media-band .tl-panel:has(> img),
.tl-single-panel .tl-panel:has(> img) {
  overflow: visible;
}

.tl-panel--elevated {
  background: #071112;
  color: #fff;
  box-shadow: var(--tl-shadow-strong);
}

.tl-panel--elevated:has(> img),
.tl-panel--elevated:has(> video) {
  background: transparent;
}

.tl-media-band.tl-spaced-grid .tl-panel--elevated:has(> img) {
  overflow: hidden;
}

.tl-media-band.tl-spaced-grid .tl-panel--elevated:has(> img)::before,
.tl-media-band.tl-spaced-grid .tl-panel--elevated:has(> img)::after {
  content: none;
  display: none;
}

.tl-panel__body {
  padding: 30px;
}

.tl-panel img,
.tl-panel video {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: inherit;
}

.tl-company-image {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: visible;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: var(--tl-surface);
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.06);
}

.tl-company-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.tl-layer {
  position: relative;
  padding-left: 22px;
}

.tl-layer::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 4px;
  border-radius: 99px;
  background: var(--tl-primary);
}

.tl-section--layers {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(3, 132, 136, 0.24), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(143, 207, 208, 0.16), transparent 26%),
    #071112;
  color: #fff;
}

.tl-section--layers::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 100%);
}

.tl-section--layers::after {
  --tl-mark-dark: rgba(255, 255, 255, 0.92);
  --tl-mark-mid: rgba(155, 225, 226, 0.48);
  --tl-mark-light: rgba(255, 255, 255, 0.36);
  --tl-mark-primary: rgba(3, 132, 136, 0.8);
  --tl-mark-aqua: rgba(155, 225, 226, 0.72);
  content: "";
  position: absolute;
  right: clamp(-40px, 3vw, 42px);
  top: 62px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  background: var(--tl-mark-stack);
  opacity: 0.18;
  transform: scale(1.22);
}

.tl-section--layers > * {
  position: relative;
  z-index: 1;
}

.tl-layer-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.tl-layer-intro h2 {
  max-width: 820px;
}

.tl-section--layers .tl-lead {
  color: rgba(255, 255, 255, 0.72);
}

.tl-layer-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tl-layer-showcase--home {
  align-items: start;
}

.tl-layer-showcase::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(3, 132, 136, 0), rgba(3, 132, 136, 0.85), rgba(143, 207, 208, 0.75), rgba(3, 132, 136, 0));
}

.tl-layer-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--tl-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tl-layer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 225, 226, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.08));
}

.tl-layer-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--tl-primary);
}

.tl-layer-card--digital {
  margin-top: 38px;
}

.tl-layer-card--cognitive {
  margin-top: 76px;
}

.tl-layer-card--digital::before {
  background: linear-gradient(90deg, var(--tl-primary), #8fd5d2);
}

.tl-layer-card--cognitive::before {
  background: linear-gradient(90deg, #8fd5d2, var(--tl-accent));
}

.tl-layer-showcase--process .tl-layer-card {
  min-height: 760px;
}

.tl-layer-showcase--home .tl-layer-card {
  min-height: 430px;
  align-content: start;
  gap: 24px;
  padding: 34px;
}

.tl-layer-showcase--home .tl-layer-card__number {
  top: 20px;
  right: 24px;
  font-size: clamp(34px, 3.2vw, 46px);
  opacity: 0.58;
}

.tl-layer-showcase--home .tl-layer-card__icon {
  width: 116px;
  height: 116px;
  border-radius: 30px;
}

.tl-layer-showcase--home .tl-layer-card__icon::before {
  inset: 12px;
  width: auto;
  height: auto;
  opacity: 0.72;
  transform: none;
  animation: tlLayerMarkBreathe 8s ease-in-out infinite alternate;
}

.tl-layer-showcase--home .tl-layer-card:nth-child(2) .tl-layer-card__icon::before {
  animation-delay: -2.5s;
}

.tl-layer-showcase--home .tl-layer-card:nth-child(3) .tl-layer-card__icon::before {
  animation-delay: -5s;
}

.tl-layer-showcase--home .tl-layer-card__icon::after {
  position: absolute;
  left: 25%;
  top: 23%;
  z-index: 2;
  width: 46%;
  height: 46%;
}

.tl-layer-showcase--home .tl-layer-card h3 {
  max-width: 340px;
  font-size: 42px;
  line-height: 1.02;
}

.tl-layer-showcase--home .tl-layer-card p:not(.tl-layer-card__kicker) {
  max-width: 300px;
  font-size: 18px;
}

.tl-home-layer-card__signal {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid rgba(155, 225, 226, 0.22);
  border-radius: 999px;
  background: rgba(3, 132, 136, 0.13);
  color: #bdf2f0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}

.tl-home-layer-card__details {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-home-layer-card__details li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.36;
}

.tl-home-layer-card__details li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9be1e2;
  box-shadow: 0 0 0 4px rgba(155, 225, 226, 0.12);
}

.tl-layer-card--cognitive .tl-home-layer-card__details li::before {
  background: var(--tl-accent);
  box-shadow: 0 0 0 4px rgba(143, 207, 208, 0.13);
}

.tl-highlight {
  padding: 0 0.24em;
  border-radius: 4px;
  background: rgba(143, 207, 208, 0.2);
  color: #d8ffff;
  font: inherit;
}

@keyframes tlLayerMarkBreathe {
  from {
    opacity: 0.62;
    transform: translate(0, 0);
  }

  to {
    opacity: 0.84;
    transform: translate(-3px, -3px);
  }
}

.tl-layer-card__media {
  position: relative;
  height: 176px;
  margin: 72px 0 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--tl-radius);
  background: #0d1718;
}

.tl-layer-card__icon + .tl-layer-card__media {
  margin-top: 18px;
}

.tl-layer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.tl-layer-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tl-layer-card--digital .tl-layer-card__media img {
  object-position: 56% 50%;
}

.tl-layer-card--cognitive .tl-layer-card__media img {
  object-position: 50% 48%;
}

.tl-layer-card__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Cal Sans", sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.95;
  white-space: nowrap;
}

.tl-layer-card__icon {
  position: relative;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(155, 225, 226, 0.34);
  border-radius: 24px;
  background: rgba(3, 132, 136, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 20px 46px rgba(3, 132, 136, 0.2);
  --tl-frame-light: rgba(216, 255, 255, 0.72);
  --tl-frame-mid: rgba(155, 225, 226, 0.58);
  --tl-frame-primary: rgba(3, 132, 136, 0.76);
  --tl-frame-dark: rgba(255, 255, 255, 0.22);
}

.tl-layer-card__icon::before {
  content: none;
  display: none;
}

.tl-layer-card__icon::after {
  content: "";
  position: absolute;
  left: 25%;
  top: 23%;
  z-index: 2;
  width: 44%;
  height: 44%;
  background: #d8ffff;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.tl-layer-card--sensor .tl-layer-card__icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5h8l1.8 2H21a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3.2L8 5Zm4 13a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-2.4a2.6 2.6 0 1 1 0-5.2 2.6 2.6 0 0 1 0 5.2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5h8l1.8 2H21a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3.2L8 5Zm4 13a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-2.4a2.6 2.6 0 1 1 0-5.2 2.6 2.6 0 0 1 0 5.2Z'/%3E%3C/svg%3E");
}

.tl-layer-card--digital .tl-layer-card__icon::after {
  background: #eaffff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' fill-rule='evenodd' d='m12 2 9 5v10l-9 5-9-5V7l9-5Zm0 2.3L6.2 7.5 12 10.8l5.8-3.3L12 4.3ZM5 9.2v6.6l6 3.3v-6.6L5 9.2Zm8 9.9 6-3.3V9.2l-6 3.3v6.6Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' fill-rule='evenodd' d='m12 2 9 5v10l-9 5-9-5V7l9-5Zm0 2.3L6.2 7.5 12 10.8l5.8-3.3L12 4.3ZM5 9.2v6.6l6 3.3v-6.6L5 9.2Zm8 9.9 6-3.3V9.2l-6 3.3v6.6Z'/%3E%3C/svg%3E");
}

.tl-layer-card--cognitive .tl-layer-card__icon::after {
  background: #9be1e2;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 3a4 4 0 0 0-4 4v.7A4.4 4.4 0 0 0 3 15.5 5.5 5.5 0 0 0 8.5 21H11V7a4 4 0 0 0-2-4Zm6 0a4 4 0 0 1 4 4v.7a4.4 4.4 0 0 1 2 7.8 5.5 5.5 0 0 1-5.5 5.5H13V7a4 4 0 0 1 2-4ZM8 11h2v2H8v-2Zm6 0h2v2h-2v-2Zm-5 5h2v2H9v-2Zm4 0h2v2h-2v-2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 3a4 4 0 0 0-4 4v.7A4.4 4.4 0 0 0 3 15.5 5.5 5.5 0 0 0 8.5 21H11V7a4 4 0 0 0-2-4Zm6 0a4 4 0 0 1 4 4v.7a4.4 4.4 0 0 1 2 7.8 5.5 5.5 0 0 1-5.5 5.5H13V7a4 4 0 0 1 2-4ZM8 11h2v2H8v-2Zm6 0h2v2h-2v-2Zm-5 5h2v2H9v-2Zm4 0h2v2h-2v-2Z'/%3E%3C/svg%3E");
}

.tl-layer-card--digital .tl-layer-card__icon {
  background: rgba(255, 255, 255, 0.12);
}

.tl-layer-card--cognitive .tl-layer-card__icon {
  border-color: rgba(143, 207, 208, 0.4);
  background: rgba(143, 207, 208, 0.13);
}

.tl-layer-card__icon svg {
  display: none;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #9be1e2;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tl-layer-card--cognitive .tl-layer-card__icon svg {
  stroke: #9be1e2;
}

.tl-layer-card__kicker {
  margin-bottom: 9px;
  color: #9be1e2;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.tl-layer-card h3 {
  max-width: 320px;
  font-size: clamp(28px, 3vw, 42px);
}

.tl-layer-card p:not(.tl-layer-card__kicker) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.52;
}

.tl-layer-card__list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-layer-card__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.42;
}

.tl-layer-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9be1e2;
  box-shadow: 0 0 0 4px rgba(155, 225, 226, 0.12);
}

.tl-layer-card--cognitive .tl-layer-card__list li::before {
  background: var(--tl-accent);
  box-shadow: 0 0 0 4px rgba(143, 207, 208, 0.13);
}

.tl-layer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tl-layer-card__meta span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
}

.tl-layer-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.tl-layer-notes article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.tl-layer-notes h3 {
  font-size: 24px;
}

.tl-layer-notes p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.tl-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 5px 9px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(44, 143, 98, 0.12);
  color: #1d6e49;
  font-size: 12px;
  font-weight: 650;
}

.tl-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tl-success);
}

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

.tl-metric {
  padding: 24px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
}

.tl-metric strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.tl-metric span {
  display: block;
  margin-top: 10px;
  color: var(--tl-ink-soft);
  font-weight: 650;
}

.tl-question-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 26px;
  align-items: start;
}

.tl-question-list,
.tl-layer-summary,
.tl-check-list,
.tl-case-quick {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-question-list li,
.tl-layer-summary li,
.tl-check-list li,
.tl-case-quick li {
  position: relative;
  padding-left: 22px;
  color: var(--tl-ink-soft);
}

.tl-question-list li::before,
.tl-layer-summary li::before,
.tl-check-list li::before,
.tl-case-quick li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tl-primary);
  box-shadow: 0 0 0 5px rgba(3, 132, 136, 0.1);
}

.tl-question-list {
  padding: 30px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: var(--tl-surface-soft);
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.06);
}

.tl-question-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 44px;
  border: 1px solid transparent;
  border-radius: var(--tl-radius);
  cursor: pointer;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tl-question-list li::before {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.tl-question-list li:hover,
.tl-question-list li:focus-visible {
  border-color: rgba(3, 132, 136, 0.2);
  background: rgba(3, 132, 136, 0.07);
  color: var(--tl-primary-dark);
  outline: none;
}

.tl-question-list li.is-active {
  transform: translateX(6px);
  border-color: rgba(3, 132, 136, 0.28);
  background: #fff;
  color: var(--tl-ink);
  box-shadow: 0 14px 34px rgba(12, 34, 35, 0.09);
}

.tl-question-list li.is-active::before {
  background: var(--tl-accent);
  box-shadow: 0 0 0 6px rgba(143, 207, 208, 0.18);
}

.tl-question-answer {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 30px;
  border: 1px solid rgba(3, 132, 136, 0.16);
  border-radius: var(--tl-radius);
  background:
    linear-gradient(135deg, rgba(3, 132, 136, 0.08), rgba(255, 255, 255, 0) 58%),
    #fff;
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.06);
}

.tl-actions--compact {
  margin-top: 22px;
}

.tl-layer-summary {
  margin-top: 28px;
}

.tl-layer-summary--buttons {
  max-width: 420px;
  perspective: 900px;
}

.tl-layer-summary--buttons li {
  min-width: 0;
  padding-left: 0;
}

.tl-layer-summary--buttons li::before {
  content: none;
  display: none;
}

.tl-layer-summary__button {
  appearance: none;
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  outline: none;
}

.tl-layer-summary__inner {
  position: relative;
  display: block;
  min-height: 54px;
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: transform 480ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.tl-layer-summary__button:hover .tl-layer-summary__inner,
.tl-layer-summary__button:focus-visible .tl-layer-summary__inner {
  transform: rotateX(180deg);
}

.tl-layer-summary__button.is-active .tl-layer-summary__face {
  border-color: rgba(255, 255, 255, 0.82);
}

.tl-layer-summary__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(3, 132, 136, 0.42);
  border-radius: inherit;
  background:
    radial-gradient(circle at 86% 18%, rgba(143, 207, 208, 0.36), transparent 32%),
    linear-gradient(135deg, #025f62 0%, var(--tl-primary) 56%, #8fcfd0 100%);
  color: #fff;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 16px 42px rgba(3, 103, 106, 0.18);
  backface-visibility: hidden;
}

.tl-layer-summary__face--back {
  transform: rotateX(180deg);
}

.tl-check-list,
.tl-case-quick {
  margin-top: 18px;
}

.tl-status-line {
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(44, 143, 98, 0.24);
  border-radius: var(--tl-radius);
  background: rgba(44, 143, 98, 0.1);
  color: #1d6e49;
  font-weight: 650;
}

.tl-spaced-grid {
  margin-top: 22px;
}

.tl-problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tl-problem,
.tl-position-card {
  min-width: 0;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.06);
}

.tl-problem {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.tl-problem span {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(3, 132, 136, 0.1);
  color: var(--tl-primary-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.tl-problem h3 {
  font-size: clamp(21px, 2vw, 26px);
}

.tl-problem p,
.tl-position-card p {
  color: var(--tl-ink-soft);
}

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

.tl-position-card {
  padding: 26px;
}

.tl-position-card h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.tl-quote {
  position: relative;
  padding: 30px;
  border-left: 4px solid var(--tl-primary);
  background: var(--tl-surface-soft);
  border-radius: var(--tl-radius);
}

.tl-quote blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  font-family: "Cal Sans", sans-serif;
}

.tl-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--tl-muted);
  font-style: normal;
  font-weight: 650;
}

.tl-report {
  padding: 28px;
  border: 1px solid rgba(3, 132, 136, 0.22);
  border-radius: var(--tl-radius);
  background: linear-gradient(180deg, #fff 0%, #eef7f8 100%);
  box-shadow: var(--tl-shadow);
}

.tl-visual-stack {
  position: relative;
  min-height: 520px;
}

.tl-visual-stack .tl-panel {
  position: absolute;
}

.tl-visual-stack .tl-panel:nth-child(1) {
  inset: 0 7% auto 0;
}

.tl-visual-stack .tl-panel:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 58%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: var(--tl-shadow-strong);
}

.tl-floating-panel {
  position: absolute;
  right: 9%;
  top: 10%;
  width: min(320px, 72%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--tl-ink);
  box-shadow: var(--tl-shadow);
  backdrop-filter: blur(18px);
}

.tl-floating-panel strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.tl-signal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.tl-signal-grid span {
  height: 58px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(3, 132, 136, 0.92), rgba(3, 132, 136, 0.16));
  transform-origin: bottom;
  animation: tlPulse 2.8s ease-in-out infinite;
}

.tl-signal-grid span:nth-child(2n) {
  animation-delay: 220ms;
}

.tl-signal-grid span:nth-child(3n) {
  animation-delay: 460ms;
}

.tl-media-band {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: start;
}

.tl-media-band .tl-panel,
.tl-media-band .tl-card {
  min-height: 0;
}

.tl-process-report-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.tl-report-visual {
  position: relative;
  width: min(100%, 680px);
  margin: 0;
  padding: 12px;
  overflow: visible;
  border: 1px solid rgba(217, 228, 227, 0.86);
  border-radius: var(--tl-radius);
  background: #101415;
  box-shadow: 0 30px 84px rgba(12, 34, 35, 0.16);
}

.tl-report-visual::after {
  content: none;
  display: none;
}

.tl-report-visual__chrome {
  display: flex;
  gap: 7px;
  padding: 1px 0 11px;
}

.tl-report-visual__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.tl-report-visual__chrome span:first-child {
  background: var(--tl-primary);
}

.tl-report-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--tl-radius) - 2px);
}

.tl-report-visual figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tl-ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.tl-process-report-copy {
  display: grid;
  gap: 16px;
}

.tl-report--executive {
  position: relative;
  overflow: hidden;
}

.tl-report--executive::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(3, 132, 136, 0.16);
  background: rgba(3, 132, 136, 0.05);
}

.tl-process-motion-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tl-process-motion-cards span {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(3, 132, 136, 0.18);
  border-radius: var(--tl-radius);
  background: #fff;
  color: var(--tl-ink-soft);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.24;
  box-shadow: 0 12px 34px rgba(12, 34, 35, 0.06);
  animation: tlProcessCardFloat 5s ease-in-out infinite;
}

.tl-process-motion-cards span:nth-child(2) {
  animation-delay: -1.6s;
}

.tl-process-motion-cards span:nth-child(3) {
  animation-delay: -3.2s;
}

.tl-process-motion-cards strong {
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", "Geologica", sans-serif;
  font-size: 28px;
  line-height: 1;
}

@keyframes tlProcessCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.tl-marquee {
  overflow: hidden;
  border-top: 1px solid var(--tl-line);
  border-bottom: 1px solid var(--tl-line);
  background: #fff;
}

.tl-port-marquee {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  border-top: 1px solid rgba(217, 228, 227, 0.72);
  border-bottom: 1px solid rgba(217, 228, 227, 0.72);
  background: rgba(255, 255, 255, 0.86);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.tl-port-marquee__track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 14px 12px;
  will-change: transform;
  animation: tlMarquee 44s linear infinite;
}

.tl-port-marquee:hover .tl-port-marquee__track {
  animation-play-state: paused;
}

.tl-port-card {
  position: relative;
  flex: 0 0 270px;
  height: 132px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.84);
  border-radius: var(--tl-radius);
  background: #dce8e8;
  box-shadow: 0 10px 28px rgba(12, 34, 35, 0.07);
}

.tl-port-card--wide {
  flex-basis: 360px;
}

.tl-port-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.tl-port-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.tl-section--gallery {
  background: #f8fbfa;
  padding-top: 74px;
}

.tl-gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.tl-photo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-template-rows: 270px 270px;
  gap: 14px;
  isolation: isolate;
}

.tl-photo-grid figure {
  position: relative;
  isolation: isolate;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: visible;
  border-radius: var(--tl-radius);
  background: #dce8e8;
  box-shadow: 0 16px 46px rgba(12, 34, 35, 0.08);
}

.tl-photo-grid__main {
  grid-row: span 2;
}

.tl-photo-grid figure:nth-child(4) {
  grid-column: span 2;
}

.tl-photo-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 700ms ease, filter 700ms ease;
}

.tl-photo-grid figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.tl-photo-grid figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--tl-ink);
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(14px);
}

.tl-marquee__track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 18px 0;
  color: var(--tl-muted);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  will-change: transform;
  animation: tlMarquee 34s linear infinite;
}

.tl-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 38px;
}

.tl-marquee__track span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tl-primary);
}

.tl-cognitive-ticker {
  margin-top: 42px;
}

.tl-marquee--cognitive {
  border-color: rgba(143, 207, 208, 0.34);
  border-radius: var(--tl-radius);
  background:
    radial-gradient(circle at 92% 18%, rgba(143, 207, 208, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(238, 247, 248, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 20px 58px rgba(12, 34, 35, 0.08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.tl-marquee--cognitive .tl-marquee__track {
  gap: clamp(28px, 4vw, 56px);
  padding: 24px 0;
  color: var(--tl-ink);
  font-family: "Cal Sans", "Geologica", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: none;
  animation-duration: 42s;
}

.tl-marquee--cognitive .tl-marquee__track span {
  gap: clamp(28px, 4vw, 56px);
  white-space: nowrap;
}

.tl-marquee--cognitive .tl-marquee__track span::after {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--tl-primary);
  box-shadow: 0 0 0 7px rgba(143, 207, 208, 0.24);
}

.tl-cognitive-ticker__note {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--tl-ink-soft);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

.tl-page-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 16px 20px;
  margin-bottom: 26px;
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--tl-shadow);
  backdrop-filter: blur(18px);
}

.tl-page-logo img {
  width: min(360px, calc(100vw - 72px));
}

@keyframes tlPulse {
  0%,
  100% {
    transform: scaleY(0.36);
    opacity: 0.42;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes tlMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--tl-marquee-offset, -50%), 0, 0);
  }
}

.tl-report__bar {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.tl-report__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tl-line);
}

.tl-report p {
  color: var(--tl-ink);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.38;
}

.tl-report small {
  display: block;
  margin-top: 18px;
  color: var(--tl-muted);
  font-weight: 650;
  line-height: 1.45;
}

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

.tl-report-grid .tl-report p {
  font-size: 18px;
}

.tl-evidence-panel {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(3, 132, 136, 0.22);
  border-radius: var(--tl-radius);
  background: #fff;
  box-shadow: var(--tl-shadow);
}

.tl-evidence-panel h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.tl-evidence-panel p {
  margin-top: 14px;
  color: var(--tl-ink-soft);
}

.tl-evidence-conclusion {
  margin-top: 30px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(3, 132, 136, 0.18);
}

.tl-evidence-visual {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.tl-evidence-video,
.tl-evidence-strip figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.86);
  border-radius: var(--tl-radius);
  background: #071112;
  box-shadow: 0 18px 44px rgba(12, 34, 35, 0.1);
}

.tl-evidence-video {
  --tl-video-opacity: 0.92;
  aspect-ratio: 16 / 9;
}

.tl-evidence-video video,
.tl-evidence-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tl-evidence-snapshot img {
  object-fit: contain;
  background: #071112;
  image-rendering: auto;
}

.tl-evidence-video video {
  display: block;
  opacity: 0.92;
}

.tl-evidence-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 18, 0.06) 0%, rgba(7, 17, 18, 0.28) 100%),
    linear-gradient(90deg, rgba(3, 132, 136, 0.28) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(3, 132, 136, 0.2) 1px, transparent 1px) 0 0 / 42px 42px;
  pointer-events: none;
}

.tl-evidence-video span,
.tl-evidence-strip figcaption {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tl-ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.tl-evidence-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tl-evidence-strip figure {
  aspect-ratio: 1.55 / 1;
}

.tl-evidence-data-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
  color: #fff;
}

.tl-evidence-data-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.tl-evidence-data-card__head span {
  color: rgba(198, 236, 235, 0.82);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tl-evidence-data-card__head strong {
  color: var(--tl-primary-light);
  font-size: 34px;
  line-height: 1;
}

.tl-evidence-data-card__bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 7px;
  height: 52px;
}

.tl-evidence-data-card__bars i {
  display: block;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, #d8f4f2 0%, #078b90 100%);
  opacity: 0.9;
}

.tl-evidence-data-card__bars i:nth-child(1) {
  height: 58%;
}

.tl-evidence-data-card__bars i:nth-child(2) {
  height: 86%;
}

.tl-evidence-data-card__bars i:nth-child(3) {
  height: 48%;
}

.tl-evidence-data-card__bars i:nth-child(4) {
  height: 72%;
}

.tl-evidence-data-card__bars i:nth-child(5) {
  height: 38%;
}

.tl-evidence-data-card p {
  max-width: 13rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.tl-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.tl-step-list article,
.tl-case-card {
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.06);
}

.tl-step-list article {
  padding: 28px;
}

.tl-step-list--flip article {
  --tl-step-offset: 0px;
  min-height: 318px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  outline: none;
}

.tl-step-list--flip {
  align-items: start;
  padding-bottom: 0;
}

.tl-step-flip-card__inner {
  position: relative;
  min-height: inherit;
  border-radius: var(--tl-radius);
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.tl-step-flip-card:hover .tl-step-flip-card__inner,
.tl-step-flip-card:focus-visible .tl-step-flip-card__inner {
  transform: rotateY(180deg);
}

.tl-step-flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(143, 207, 208, 0.42);
  border-radius: inherit;
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 208, 0.36), transparent 34%),
    linear-gradient(135deg, #026f73 0%, var(--tl-primary) 58%, #83cacc 100%);
  box-shadow: 0 22px 62px rgba(3, 103, 106, 0.16);
  backface-visibility: hidden;
}

.tl-step-flip-card__face--front {
  justify-content: flex-start;
  padding-top: 38px;
}

.tl-step-list--flip article:nth-child(2) .tl-step-flip-card__face--front {
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.tl-step-list--flip article:nth-child(3) .tl-step-flip-card__face--front {
  justify-content: flex-end;
  padding-top: 28px;
  padding-bottom: 38px;
}

.tl-step-list--flip .tl-step-flip-card__face--front h3 {
  color: #fff;
}

.tl-step-flip-card__face--back {
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 208, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.92)),
    #fff;
  color: var(--tl-ink);
  transform: rotateY(180deg);
}

.tl-step-list--flip .tl-step-flip-card__face--back p {
  margin: 0;
  color: var(--tl-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
}

.tl-step-list span,
.tl-step-flip-card__number {
  display: none;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(3, 132, 136, 0.1);
  color: var(--tl-primary-dark);
  font-size: 12px;
  font-weight: 650;
}

.tl-step-list p {
  margin-top: 12px;
  color: var(--tl-ink-soft);
}

.tl-case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  overflow: hidden;
}

.tl-case-card figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #dce8e8;
}

.tl-case-card img {
  width: 100%;
  height: calc(100% + 18px);
  min-height: 438px;
  object-fit: cover;
  transform: translateY(-18px);
}

.tl-case-card > div {
  padding: 34px 34px 34px 0;
  align-self: center;
}

.tl-case-card--featured {
  box-shadow: 0 28px 92px rgba(12, 34, 35, 0.1);
}

.tl-case-study {
  background:
    radial-gradient(circle at 6% 4%, rgba(3, 132, 136, 0.09), transparent 34%),
    linear-gradient(180deg, #f7fbfb 0%, #fff 100%);
}

.tl-case-study__layout {
  display: grid;
  width: min(100% - 32px, 1320px);
  grid-template-columns: minmax(520px, 580px) minmax(0, 1fr);
  gap: clamp(40px, 4vw, 72px);
  align-items: start;
}

.tl-case-study__sidebar {
  position: relative;
  padding: 30px;
  border: 3px solid rgba(143, 207, 208, 0.82);
  border-radius: var(--tl-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 253, 253, 0.9)),
    #fff;
  box-shadow: 0 26px 78px rgba(12, 34, 35, 0.09);
}

.tl-case-study__logo {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 8px 14px 28px;
  border-bottom: 1px solid rgba(3, 132, 136, 0.22);
}

.tl-case-study__logo img {
  width: min(270px, 88%);
  height: auto;
}

.tl-case-study__facts {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.tl-case-study__facts div {
  display: grid;
  grid-template-columns: minmax(108px, auto) 1fr;
  gap: 14px;
  align-items: baseline;
}

.tl-case-study__facts dt,
.tl-case-study__facts dd {
  margin: 0;
}

.tl-case-study__facts dt {
  color: var(--tl-ink-soft);
  font-size: 15px;
  font-weight: 650;
}

.tl-case-study__facts dd {
  color: var(--tl-ink);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.35;
}

.tl-case-study__numbers {
  padding: 28px 0;
  border-top: 1px solid rgba(3, 132, 136, 0.22);
  border-bottom: 1px solid rgba(3, 132, 136, 0.22);
}

.tl-case-study__mini-title {
  margin: 0 0 22px;
  color: var(--tl-primary-dark);
  font-size: 25px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
}

.tl-case-study__stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tl-case-study__stat {
  container-type: inline-size;
  display: grid;
  min-height: 154px;
  align-content: center;
  justify-items: center;
  padding: 22px 12px;
  border: 1px solid rgba(143, 207, 208, 0.36);
  border-radius: var(--tl-radius);
  background:
    radial-gradient(circle at 70% 12%, rgba(143, 207, 208, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 252, 0.92)),
    #fff;
  box-shadow: 0 18px 42px rgba(12, 34, 35, 0.06);
  text-align: center;
}

.tl-case-study__stat:last-child {
  grid-column: 1 / -1;
}

.tl-case-study__stat strong {
  color: var(--tl-primary-dark);
  font-family: "Cal Sans", "Geologica", sans-serif;
  max-width: 100%;
  font-size: clamp(42px, 27cqw, 60px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
  white-space: nowrap;
}

.tl-case-study__stat:last-child strong {
  font-size: clamp(58px, 18cqw, 84px);
}

.tl-case-study__stat strong > span {
  font: inherit;
}

.tl-case-study__stat > span:last-child {
  margin-top: 14px;
  color: var(--tl-ink);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.2;
}

.tl-case-study__sidebar-figure {
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: var(--tl-radius);
  background: #dce8e8;
}

.tl-case-study__sidebar-figure img {
  width: 100%;
  height: clamp(220px, 22vw, 320px);
  object-fit: cover;
}

.tl-case-study__main {
  min-width: 0;
}

@media (max-width: 1080px) {
  .tl-case-study__layout {
    grid-template-columns: 1fr;
  }

  .tl-case-study__sidebar {
    width: min(100%, 640px);
  }
}

.tl-case-study__head {
  max-width: 860px;
}

.tl-case-study__head .tl-eyebrow {
  margin-bottom: 8px;
}

.tl-case-study__head h2 {
  color: var(--tl-primary-dark);
  font-size: clamp(34px, 4vw, 58px);
}

.tl-case-study__head .tl-lead {
  max-width: 760px;
  margin-top: 18px;
}

.tl-case-timeline {
  position: relative;
  display: grid;
  gap: 30px;
  margin-top: 34px;
}

.tl-case-timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 31px;
  width: 0;
  border-left: 3px dotted rgba(3, 132, 136, 0.58);
}

.tl-case-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.tl-case-timeline__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #a5dddc;
  color: #0a4e52;
  font-size: 18px;
  font-weight: 820;
  box-shadow: 0 0 0 10px rgba(165, 221, 220, 0.24);
}

.tl-case-timeline h3 {
  margin-top: 2px;
  font-size: 22px;
  line-height: 1.18;
}

.tl-case-timeline p {
  max-width: 760px;
  margin-top: 8px;
  color: var(--tl-ink-soft);
}

.tl-case-study__visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.72fr);
  gap: 16px;
  margin-top: 48px;
}

.tl-case-study__visuals figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 207, 208, 0.86);
  border-radius: var(--tl-radius);
  background: #dce8e8;
  box-shadow: 0 24px 78px rgba(12, 34, 35, 0.1);
}

.tl-case-study__visuals img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 32vw, 520px);
  object-fit: cover;
}

.tl-case-detail {
  background:
    radial-gradient(circle at 8% 8%, rgba(3, 132, 136, 0.12), transparent 32%),
    linear-gradient(180deg, #f5fbfb 0%, #fff 100%);
}

.tl-case-visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: 16px;
  margin-top: 34px;
}

.tl-case-visual-band figure {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.9);
  border-radius: var(--tl-radius);
  background: #dce8e8;
  box-shadow: 0 20px 68px rgba(12, 34, 35, 0.1);
}

.tl-case-visual-band figure:first-child {
  min-height: 390px;
}

.tl-case-visual-band figure:last-child {
  min-height: 390px;
}

.tl-case-visual-band img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
}

.tl-case-layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tl-case-layer-grid article {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(3, 132, 136, 0.16);
  border-radius: var(--tl-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 249, 0.9)),
    linear-gradient(135deg, rgba(3, 132, 136, 0.12), rgba(143, 207, 208, 0.07));
  box-shadow: 0 18px 54px rgba(12, 34, 35, 0.07);
}

.tl-case-layer-grid article::after {
  content: none;
  display: none;
}

.tl-case-layer-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 68px;
  place-items: center;
  border-radius: 10px;
  background: rgba(3, 132, 136, 0.1);
  color: var(--tl-primary-dark);
  font-size: 13px;
  font-weight: 650;
}

.tl-case-layer-grid p {
  margin-top: 14px;
  color: var(--tl-ink-soft);
}

.tl-case-layer-flips {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  perspective: 1200px;
}

.tl-case-layer-flip {
  appearance: none;
  display: block;
  width: 100%;
  min-height: 86px;
  padding: 0;
  border: 0;
  border-radius: 17px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.tl-case-layer-flip__inner {
  position: relative;
  display: block;
  min-height: inherit;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.tl-case-layer-flip:hover .tl-case-layer-flip__inner,
.tl-case-layer-flip:focus .tl-case-layer-flip__inner,
.tl-case-layer-flip.is-flipped .tl-case-layer-flip__inner {
  transform: rotateX(180deg);
}

.tl-case-layer-flip__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border: 1px solid rgba(3, 132, 136, 0.44);
  border-radius: inherit;
  background:
    radial-gradient(circle at 90% 16%, rgba(143, 207, 208, 0.42), transparent 34%),
    linear-gradient(135deg, #025f62 0%, var(--tl-primary) 56%, #8fcfd0 100%);
  box-shadow: 0 18px 48px rgba(3, 103, 106, 0.18);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.tl-case-layer-flip:focus-visible .tl-case-layer-flip__face {
  border-color: rgba(143, 207, 208, 0.9);
  box-shadow:
    0 18px 48px rgba(3, 103, 106, 0.18),
    0 0 0 4px rgba(143, 207, 208, 0.2);
}

.tl-case-layer-flip__face--front {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.08;
}

.tl-case-layer-flip__face--back {
  transform: rotateX(180deg);
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 208, 0.26), transparent 34%),
    linear-gradient(135deg, #081315 0%, #025f62 100%);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 700;
  line-height: 1.35;
}

.tl-proof-strip--case {
  max-width: none;
  margin-top: 0;
  border-color: rgba(3, 132, 136, 0.18);
  background: rgba(255, 255, 255, 0.48);
  color: var(--tl-ink);
  box-shadow: 0 22px 80px rgba(12, 34, 35, 0.1);
}

.tl-proof-strip--case div {
  background: rgba(255, 255, 255, 0.72);
}

.tl-proof-strip--case strong {
  color: var(--tl-primary-dark);
}

.tl-proof-strip--case span {
  color: var(--tl-ink-soft);
}

.tl-case-more-card {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.tl-single-panel {
  margin-top: 22px;
}

.tl-prose {
  max-width: 820px;
}

.tl-prose > * + * {
  margin-top: 18px;
}

.tl-prose h1,
.tl-prose h2,
.tl-prose h3 {
  margin-top: 40px;
}

.tl-prose ul {
  padding-left: 1.2em;
}

.tl-form {
  padding: 28px;
}

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

.tl-form-field--full {
  grid-column: 1 / -1;
}

.tl-form label {
  display: grid;
  gap: 7px;
  color: var(--tl-ink);
  font-size: 14px;
  font-weight: 650;
}

.tl-form input,
.tl-form select,
.tl-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  color: var(--tl-ink);
  font: 400 16px/1.35 "Geologica", sans-serif;
}

.tl-form textarea {
  min-height: 118px;
  resize: vertical;
}

.tl-form input:focus,
.tl-form select:focus,
.tl-form textarea:focus {
  outline: 3px solid rgba(3, 132, 136, 0.18);
  border-color: var(--tl-primary);
}

.tl-form__notice {
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: var(--tl-radius);
  background: var(--tl-surface-blue);
  color: var(--tl-ink);
}

.tl-form__notice[hidden] {
  display: none;
}

.tl-form__notice--error {
  background: #fff3f2;
  color: #8b2d24;
}

.tl-form__legal {
  color: var(--tl-muted);
  font-size: 13px;
}

.tl-form__honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tl-turnstile {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.tl-download-link {
  display: inline-flex;
  margin-top: 16px;
}

.tl-download-link[hidden] {
  display: none;
}

.tl-form button:disabled {
  opacity: 0.68;
  cursor: progress;
  transform: none;
}

.tl-section--download {
  background:
    radial-gradient(circle at 12% 20%, rgba(3, 132, 136, 0.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f5fbfb 100%);
}

.tl-download-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(143, 207, 208, 0.24);
  border-radius: var(--tl-radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 208, 0.22), transparent 32%),
    linear-gradient(135deg, #071112 0%, #0c1719 58%, #025f62 100%);
  box-shadow: 0 34px 110px rgba(12, 34, 35, 0.16);
}

.tl-download-feature::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 250px;
  height: 250px;
  border: 24px solid rgba(143, 207, 208, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.tl-download-feature__copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.tl-download-feature .tl-eyebrow {
  color: #8fcfd0;
}

.tl-download-feature h2 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.tl-download-feature__copy p:not(.tl-eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  font-weight: 560;
  line-height: 1.48;
}

.tl-download-feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 9px 12px;
  border: 1px solid rgba(143, 207, 208, 0.28);
  border-radius: var(--tl-radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.tl-download-feature__badge span,
.tl-download-form__button span {
  display: inline-grid;
  min-width: 38px;
  min-height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.tl-download-form {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(143, 207, 208, 0.28);
  border-radius: var(--tl-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 252, 0.94)),
    #fff;
  box-shadow: 0 24px 68px rgba(3, 25, 28, 0.2);
}

.tl-download-feature__action {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(143, 207, 208, 0.28);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 68px rgba(3, 25, 28, 0.18);
}

.tl-download-feature__action p {
  margin: 0 0 20px;
  color: var(--tl-ink-soft);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.tl-download-feature__action .tl-button {
  width: 100%;
}

.tl-download-form .tl-form-grid {
  gap: 14px;
}

.tl-download-form__trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tl-download-form__button {
  width: 100%;
  gap: 10px;
  margin-top: 18px;
  font-size: 15px;
}

.tl-download-form .tl-download-link {
  width: 100%;
}

.tl-section--download-product {
  background: linear-gradient(180deg, #fff 0%, #f2fafa 100%);
}

.tl-download-feature--compact {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.7fr);
  gap: clamp(22px, 3vw, 38px);
  padding: clamp(24px, 3.5vw, 40px);
  border-color: rgba(3, 132, 136, 0.28);
  background:
    radial-gradient(circle at 92% 10%, rgba(143, 207, 208, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(238, 250, 250, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 74px rgba(12, 34, 35, 0.1);
}

.tl-download-feature--compact::before {
  width: 170px;
  height: 170px;
  border-width: 18px;
  border-color: rgba(3, 132, 136, 0.08);
}

.tl-download-feature--compact .tl-eyebrow {
  color: var(--tl-primary-dark);
}

.tl-download-feature--compact h2 {
  max-width: 560px;
  color: var(--tl-ink);
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.02;
}

.tl-download-feature--compact .tl-download-feature__copy p:not(.tl-eyebrow) {
  max-width: 520px;
  color: var(--tl-ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.tl-download-feature--compact .tl-download-feature__badge {
  border-color: rgba(3, 132, 136, 0.22);
  background: rgba(3, 132, 136, 0.08);
  color: var(--tl-primary-dark);
}

.tl-download-feature--compact .tl-download-feature__badge span {
  background: var(--tl-primary);
}

.tl-download-feature--compact .tl-download-form {
  box-shadow: 0 18px 52px rgba(12, 34, 35, 0.1);
}

.tl-download-feature--compact .tl-download-feature__action {
  box-shadow: 0 18px 52px rgba(12, 34, 35, 0.1);
}

.tl-section--faq {
  background:
    linear-gradient(90deg, rgba(3, 132, 136, 0.04) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(0deg, rgba(3, 132, 136, 0.035) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--tl-surface-soft);
}

.tl-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.tl-faq-aside {
  position: sticky;
  top: calc(var(--tl-header-height) + 24px);
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--tl-radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(3, 132, 136, 0.34), transparent 34%),
    #071112;
  color: #fff;
  box-shadow: 0 28px 78px rgba(12, 34, 35, 0.18);
}

.tl-faq-aside .tl-eyebrow {
  color: #9be1e2;
}

.tl-faq-aside p:not(.tl-eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.tl-faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tl-faq-tags a,
.tl-faq-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 9px;
  border: 1px solid rgba(155, 225, 226, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.tl-faq-tags a:hover,
.tl-faq-tags a:focus-visible {
  border-color: rgba(155, 225, 226, 0.52);
  background: rgba(155, 225, 226, 0.16);
  color: #fff;
  outline: none;
}

.tl-faq {
  display: grid;
  gap: 26px;
}

.tl-faq-group {
  scroll-margin-top: calc(var(--tl-header-height) + 24px);
}

.tl-faq-group h2 {
  margin-bottom: 12px;
  color: var(--tl-primary-dark);
  font-size: clamp(24px, 2.1vw, 32px);
}

.tl-faq-group details + details {
  margin-top: 14px;
}

.tl-faq details {
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(12, 34, 35, 0.045);
}

.tl-faq summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 650;
}

.tl-faq details div {
  padding: 0 24px 24px;
  color: var(--tl-ink-soft);
}

.tl-404 {
  position: relative;
  min-height: calc(100vh - var(--tl-header-height));
  display: grid;
  align-items: center;
  padding: clamp(72px, 8vw, 112px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 132, 136, 0.055) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(3, 132, 136, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 72% 42%, rgba(3, 132, 136, 0.12), transparent 36%),
    #fff;
}

.tl-404::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, #071314, var(--tl-primary), var(--tl-accent));
}

.tl-404__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.tl-404 h1 {
  max-width: 780px;
  margin: 16px 0 12px;
  font-size: clamp(54px, 7.5vw, 108px);
  line-height: 0.94;
  text-wrap: balance;
}

.tl-404__copy > p:not(.tl-eyebrow) {
  max-width: 680px;
  color: var(--tl-ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 650;
  line-height: 1.5;
}

.tl-404 .tl-actions {
  margin-top: 30px;
}

.tl-404__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 227, 0.18);
  border-radius: var(--tl-radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(3, 132, 136, 0.3), transparent 28%),
    linear-gradient(145deg, #061112 0%, #102223 54%, #0b2d2f 100%);
  color: #fff;
  box-shadow: var(--tl-shadow-strong);
}

.tl-404__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 38px 38px;
  mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.tl-404__visual::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 110px;
  height: 110px;
  border-right: 10px solid rgba(143, 207, 208, 0.54);
  border-bottom: 10px solid rgba(143, 207, 208, 0.54);
}

.tl-404__mark {
  position: absolute;
  top: 18px;
  right: -4px;
  z-index: 2;
  width: 180px;
  height: 180px;
  background: var(--tl-mark-stack);
  opacity: 0.72;
  transform: scale(0.78);
  transform-origin: top right;
}

.tl-404__visual strong {
  position: absolute;
  left: 30px;
  bottom: 92px;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Cal Sans", "Geologica", sans-serif;
  font-size: clamp(112px, 12vw, 176px);
  line-height: 0.75;
}

.tl-404__routes {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tl-404__routes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tl-radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 650;
}

.tl-404__routes span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--tl-primary);
}

.tl-404__routes span:nth-child(2)::before {
  background: var(--tl-mark-aqua);
}

.tl-404__routes span:nth-child(3)::before {
  background: var(--tl-accent);
}

.tl-404__routes span:nth-child(4)::before {
  background: #fff;
}

.tl-footer {
  background:
    radial-gradient(circle at 18% 8%, rgba(3, 132, 136, 0.22), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(111, 203, 200, 0.09), transparent 26%),
    linear-gradient(180deg, #071112 0%, #090e0f 100%);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(129, 224, 221, 0.1);
}

.tl-footer__inner {
  width: min(100% - 32px, var(--tl-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(140px, 0.58fr) minmax(210px, 0.76fr) minmax(220px, 0.82fr);
  gap: clamp(32px, 4.6vw, 68px);
  align-items: start;
  padding: 76px 0 58px;
}

.tl-footer h2 {
  margin-bottom: 18px;
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 650;
  text-transform: uppercase;
}

.tl-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.tl-footer a:hover {
  color: #9fe9e6;
}

.tl-footer__brand {
  max-width: 372px;
  text-align: center;
}

.tl-footer__brand h2 {
  margin-bottom: 24px;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.1;
  text-transform: none;
}

.tl-footer__brand-stack {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.tl-footer__terminal-logo {
  display: block;
  width: min(238px, 100%);
  height: auto;
  filter: brightness(0) invert(1) saturate(0);
  opacity: 0.98;
}

.tl-footer__brand-stack span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 600;
}

.tl-footer__brand-stack strong {
  color: #bdf2f0;
  font-size: 15px;
  font-weight: 750;
}

.tl-footer__brand-link,
.tl-footer__logo-link {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.tl-footer__brand-link {
  color: #bdf2f0;
}

.tl-footer__text-link {
  color: inherit;
  font-weight: inherit;
}

.tl-footer__720-logo {
  width: 126px;
  height: auto;
  margin-top: 2px;
}

.tl-footer__brand p {
  max-width: 334px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.58;
}

.tl-footer__links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-footer__links a {
  display: inline-block;
  font-weight: 650;
  line-height: 1.35;
}

.tl-footer__links a:hover {
  transform: translateX(4px);
}

.tl-footer address {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 650;
  line-height: 1.62;
}

.tl-footer address a {
  display: inline-block;
}

.tl-footer__bottom {
  width: min(100% - 32px, var(--tl-container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.tl-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tl-cookie-consent {
  position: fixed;
  z-index: 1000;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  width: min(100% - 24px, 620px);
  padding: 18px;
  border: 1px solid rgba(143, 207, 208, 0.46);
  border-radius: var(--tl-radius);
  background:
    radial-gradient(circle at 94% 10%, rgba(143, 207, 208, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 248, 0.96));
  box-shadow: 0 22px 70px rgba(12, 34, 35, 0.16);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.tl-cookie-consent[hidden] {
  display: none;
}

.tl-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tl-cookie-consent__copy {
  min-width: 0;
}

.tl-cookie-consent__copy strong {
  display: block;
  color: var(--tl-primary-dark);
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.tl-cookie-consent__copy p {
  max-width: 430px;
  margin-top: 5px;
  color: var(--tl-ink-soft);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.tl-cookie-consent__copy a {
  display: inline-block;
  margin-top: 8px;
  color: var(--tl-primary-dark);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.tl-cookie-consent__copy a:hover {
  text-decoration: underline;
}

.tl-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tl-cookie-consent__button {
  appearance: none;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--tl-primary);
  border-radius: var(--tl-radius);
  background: var(--tl-primary);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tl-cookie-consent__button:hover {
  transform: translateY(-1px);
  background: var(--tl-primary-dark);
  border-color: var(--tl-primary-dark);
}

.tl-cookie-consent__button--ghost {
  background: transparent;
  color: var(--tl-primary-dark);
}

.tl-cookie-consent__button--ghost:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .tl-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

[data-tl-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-tl-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.elementor-editor-active [data-tl-reveal],
body.elementor-editor-preview [data-tl-reveal],
body.elementor-editor-active .tl-step-list--flip [data-tl-reveal],
body.elementor-editor-preview .tl-step-list--flip [data-tl-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.tl-step-list--flip [data-tl-reveal] {
  transform: translateY(calc(24px + var(--tl-step-offset, 0px)));
}

.tl-step-list--flip [data-tl-reveal].is-visible {
  transform: translateY(var(--tl-step-offset, 0px));
}

[data-tl-reveal].is-visible.tl-position-card:hover,
[data-tl-reveal].is-visible.tl-position-card:focus-visible,
.tl-limits-grid [data-tl-reveal].is-visible.tl-card:hover,
.tl-limits-grid [data-tl-reveal].is-visible.tl-card:focus-visible {
  transform: translateY(-6px);
}

@media (max-width: 960px) {
  :root {
    --tl-header-height: 92px;
    --tl-header-height-scrolled: 68px;
    --tl-header-logo-width: min(230px, calc(100vw - 116px));
    --tl-header-logo-width-scrolled: min(176px, calc(100vw - 116px));
  }

  .tl-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex: 0 0 44px;
  }

  .tl-nav-toggle::before {
    content: "Menu";
    color: var(--tl-ink);
    font-size: 12px;
    font-weight: 650;
    line-height: 1;
  }

  .tl-nav-toggle span:not(.screen-reader-text) {
    display: none;
  }

  .tl-nav {
    position: fixed;
    inset: var(--tl-header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 32px 30px;
    background: #fff;
    border-bottom: 1px solid var(--tl-line);
    box-shadow: var(--tl-shadow);
  }

  .tl-header.is-scrolled .tl-nav {
    inset: var(--tl-header-height-scrolled) 0 auto 0;
  }

  .tl-nav.is-open {
    display: flex;
  }

  .tl-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .tl-menu a {
    font-size: 18px;
  }

  .tl-nav__cta {
    width: 100%;
  }

  .tl-section {
    padding: 72px 0;
  }

  .tl-hero--case {
    min-height: 440px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(238, 247, 248, 0.84) 100%),
      url("../media/csp-aerea-terminal.jpg") right bottom / 82vw auto no-repeat,
      linear-gradient(135deg, #ffffff 0%, #eef7f8 100%);
  }

  .tl-hero--clean {
    padding: 64px 0 24px;
  }

  .tl-hero-center {
    max-width: 760px;
  }

  .tl-product-stage {
    margin-top: 82px;
    padding-bottom: 96px;
  }

  .tl-stage-photo {
    height: 520px;
  }

  .tl-corner-angle-mark--home {
    top: 72px;
    right: 24px;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .tl-stage-product {
    width: min(620px, 78%);
    height: 240px;
  }

  .tl-proof-row {
    top: 14px;
    right: 14px;
    max-width: 450px;
  }

  .tl-proof-row div {
    width: 132px;
    padding: 11px 12px;
  }

  .tl-proof-row--teaser a {
    width: 176px;
    padding: 11px 12px;
  }

  .tl-proof-row strong {
    font-size: 26px;
  }

  .tl-product-preview {
    margin: 12px auto 0;
  }

  .tl-product-preview__chip {
    right: 14px;
    bottom: 52px;
  }

  .tl-hero--split {
    padding: 62px 0 28px;
  }

  .tl-hero__grid,
  .tl-hero-split-grid,
  .tl-404__grid,
  .tl-section-head,
  .tl-layer-intro,
  .tl-gallery-intro,
  .tl-production-spotlight,
  .tl-lens-pipeline,
  .tl-lens-photo-band,
  .tl-case-visual-band,
  .tl-case-layer-grid,
  .tl-faq-layout,
  .tl-question-grid,
  .tl-grid--2,
  .tl-grid--3,
  .tl-grid--4,
  .tl-metrics,
  .tl-media-band,
  .tl-process-report-band,
  .tl-report-grid,
  .tl-step-list,
  .tl-case-card,
  .tl-case-study__layout,
  .tl-case-study__visuals,
  .tl-download-feature,
  .tl-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .tl-problem-grid,
  .tl-position-grid,
  .tl-layer-notes,
  .tl-production-proof-strip {
    grid-template-columns: 1fr;
  }

  .tl-layer-showcase::before {
    display: none;
  }

  .tl-layer-card,
  .tl-layer-card--digital,
  .tl-layer-card--cognitive {
    min-height: 0;
    margin-top: 0;
  }

  .tl-visual-stack {
    min-height: 0;
    display: grid;
    gap: 16px;
  }

  .tl-visual-stack .tl-panel,
  .tl-visual-stack .tl-panel:nth-child(1),
  .tl-visual-stack .tl-panel:nth-child(2),
  .tl-floating-panel {
    position: relative;
    inset: auto;
    width: auto;
  }

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

  .tl-case-card > div {
    padding: 0 28px 30px;
  }

  .tl-case-study__sidebar {
    position: static;
  }

  .tl-case-card img {
    min-height: 320px;
  }

  .tl-case-visual-band figure,
  .tl-case-visual-band figure:first-child,
  .tl-case-visual-band figure:last-child {
    min-height: 280px;
  }

  .tl-case-layer-grid article {
    min-height: 0;
  }

  .tl-case-layer-flips {
    max-width: 680px;
  }

  .tl-port-card {
    flex-basis: 250px;
    height: 142px;
  }

  .tl-port-card--wide {
    flex-basis: 320px;
  }

  .tl-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px 180px;
  }

  .tl-photo-grid::before {
    left: -18px;
    top: -20px;
    opacity: 0.16;
    transform: scale(0.78);
    transform-origin: left top;
  }

  .tl-photo-grid::after {
    opacity: 0.38;
  }

  .tl-photo-grid__main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .tl-404 {
    align-items: start;
  }

  .tl-404__visual {
    min-height: 320px;
  }

  .tl-404__visual strong {
    font-size: 120px;
  }

  .tl-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --tl-header-height: 96px;
    --tl-header-height-scrolled: 76px;
    --tl-header-logo-width: min(198px, calc(100vw - 96px));
    --tl-header-logo-width-scrolled: min(164px, calc(100vw - 96px));
  }

  body {
    font-size: 16px;
  }

  h1 {
    max-width: 330px;
    font-size: 32px;
    line-height: 1.08;
    text-wrap: auto;
  }

  h2 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.08;
    text-wrap: auto;
  }

  h1,
  h2,
  h3,
  p {
    overflow-wrap: break-word;
  }

  .tl-header__inner,
  .tl-container,
  .tl-footer__inner,
  .tl-footer__bottom {
    width: 100%;
    min-width: 0;
    max-width: var(--tl-container);
    padding-right: 12px;
    padding-left: 12px;
  }

  .tl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .tl-brand {
    min-width: 0;
  }

  .tl-hero-split-grid,
  .tl-hero-copy,
  .tl-hero-showcase {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .tl-hero--case {
    min-height: 390px;
    align-items: start;
    padding-top: 76px;
    padding-bottom: 84px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 54%, rgba(238, 247, 248, 0.92) 100%),
      url("../media/csp-aerea-terminal.jpg") center bottom / 118vw auto no-repeat,
      linear-gradient(135deg, #ffffff 0%, #eef7f8 100%);
  }

  .tl-hero--case::before {
    opacity: 0.36;
    mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
  }

  .tl-hero--case .tl-lead {
    font-size: 18px;
  }

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

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

  .tl-card,
  .tl-form,
  .tl-panel__body,
  .tl-report,
  .tl-question-list,
  .tl-question-answer,
  .tl-step-list article {
    min-width: 0;
    max-width: 100%;
  }

  .tl-question-list,
  .tl-question-answer {
    width: 100%;
  }

  .tl-card,
  .tl-form,
  .tl-panel__body,
  .tl-report,
  .tl-question-list,
  .tl-step-list article {
    padding: 22px;
  }

  .tl-step-list--flip article {
    min-height: 264px;
    padding: 0;
  }

  .tl-step-list--flip {
    padding-bottom: 0;
  }

  .tl-step-list--flip article:nth-child(2),
  .tl-step-list--flip article:nth-child(3) {
    --tl-step-offset: 0px;
  }

  .tl-step-flip-card__face {
    padding: 22px;
  }

  .tl-step-flip-card__face--front {
    padding-top: 28px;
  }

  .tl-case-layer-flip {
    min-height: 132px;
  }

  .tl-case-layer-flip__face {
    padding: 18px;
  }

  .tl-download-feature {
    padding: 24px;
  }

  .tl-download-feature h2 {
    font-size: 32px;
  }

  .tl-download-feature__copy p:not(.tl-eyebrow) {
    font-size: 16px;
  }

  .tl-cookie-consent {
    left: 10px;
    right: 12px;
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    padding: 10px 12px;
    max-height: min(186px, calc(100vh - 24px));
    overflow-y: auto;
  }

  .tl-cookie-consent__copy strong {
    font-size: 12px;
  }

  .tl-cookie-consent__copy p {
    margin-top: 4px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .tl-cookie-consent__copy a {
    margin-top: 4px;
    font-size: 11.5px;
  }

  .tl-cookie-consent__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tl-cookie-consent__button {
    min-height: 34px;
    padding: 0 10px;
  }

  .tl-download-form__button {
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.18;
  }

  .tl-evidence-panel {
    min-width: 0;
    padding: 22px;
  }

  .tl-evidence-visual {
    margin-top: 22px;
  }

  .tl-company-image img {
    min-height: 320px;
  }

  .tl-lens-photo-band {
    width: 100%;
    max-width: 100%;
  }

  .tl-lens-photo-card {
    min-height: 240px;
  }

  .tl-lens-photo-copy {
    padding: 24px;
  }

  .tl-lens-photo-copy p:not(.tl-eyebrow) {
    font-size: 15px;
  }

  .tl-section-head,
  .tl-layer-intro {
    min-width: 0;
  }

  .tl-section-head h2,
  .tl-layer-intro h2 {
    width: min(310px, calc(100vw - 48px));
    max-width: min(310px, calc(100vw - 48px));
  }

  .tl-layer-card {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .tl-layer-card h3,
  .tl-layer-card p:not(.tl-layer-card__kicker),
  .tl-layer-card__meta,
  .tl-layer-card__list {
    max-width: min(270px, calc(100vw - 84px));
  }

  .tl-layer-card h3 {
    font-size: 27px;
  }

  .tl-layer-card p:not(.tl-layer-card__kicker) {
    font-size: 14px;
    line-height: 1.44;
  }

  .tl-layer-card {
    padding: 24px;
  }

  .tl-layer-showcase--home .tl-layer-card {
    min-height: 340px;
    gap: 20px;
    padding: 24px;
  }

  .tl-layer-showcase--home .tl-layer-card__icon {
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }

  .tl-layer-showcase--home .tl-layer-card__icon::after {
    width: 46px;
    height: 46px;
  }

  .tl-layer-showcase--home .tl-layer-card h3 {
    font-size: 32px;
    line-height: 1.04;
  }

  .tl-layer-showcase--home .tl-layer-card p:not(.tl-layer-card__kicker) {
    max-width: min(270px, calc(100vw - 84px));
  }

  .tl-layer-card__number {
    font-size: 32px;
  }

  .tl-home-layer-card__details li {
    max-width: min(270px, calc(100vw - 84px));
    font-size: 13px;
  }

  .tl-csp-lockup {
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }

  .tl-csp-lockup--video {
    top: 16px;
    left: 16px;
    width: 184px;
    min-height: 156px;
    padding: 16px;
  }

  .tl-csp-lockup img {
    width: 104px;
    max-width: 46%;
  }

  .tl-csp-lockup--video img {
    width: 138px;
    max-width: 100%;
  }

  .tl-csp-lockup--video span {
    max-width: 150px;
    font-size: 12px;
  }

  .tl-video-metric-card__panel {
    top: 190px;
    right: 16px;
    width: min(330px, calc(100% - 32px));
  }

  .tl-production-proof-strip,
  .tl-process-motion-cards {
    grid-template-columns: 1fr;
  }

  .tl-report-visual {
    width: 100%;
    padding: 10px;
  }

  .tl-report-visual figcaption {
    position: static;
    display: inline-flex;
    margin-top: 10px;
  }

  .tl-layer-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .tl-layer-card__icon svg {
    width: 36px;
    height: 36px;
  }

  .tl-screen-stack {
    width: min(100%, 340px);
    max-width: 100%;
    min-height: 330px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
  }

  .tl-screen-stack__screen--one {
    top: 112px;
    right: 8px;
    width: calc(100% - 44px);
    height: 136px;
  }

  .tl-screen-stack__screen--two {
    left: 0;
    top: 74px;
    width: 56%;
    height: 104px;
  }

  .tl-screen-stack__screen--three {
    right: 8px;
    top: 44px;
    width: 50%;
    height: 92px;
  }

  .tl-screen-stack__screen--four {
    left: 14px;
    bottom: 40px;
    width: 58%;
    height: 92px;
  }

  .tl-screen-stack__chip {
    right: 12px;
    bottom: 12px;
    width: min(220px, calc(100% - 24px));
  }

  .tl-hero--clean {
    padding-top: 44px;
  }

  .tl-hero-center {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-right: auto;
    margin-left: auto;
  }

  .tl-hero-center h1 {
    width: calc(100vw - 64px);
    max-width: 320px;
    font-size: 34px;
    line-height: 1.06;
  }

  .tl-hero--split {
    padding-top: 42px;
  }

  .tl-brand__logo,
  .tl-brand .custom-logo {
    width: var(--tl-header-logo-width);
    max-width: var(--tl-header-logo-width);
  }

  .tl-nav-toggle {
    display: inline-flex;
  }

  .tl-nav {
    position: fixed;
    inset: var(--tl-header-height) 0 auto 0;
    display: none;
    width: auto;
    margin-top: 0;
    padding: 22px 18px 24px;
    overflow-x: hidden;
    gap: 18px;
    background: #fff;
    border-bottom: 1px solid var(--tl-line);
    box-shadow: var(--tl-shadow);
  }

  .tl-header.is-scrolled .tl-nav {
    inset: var(--tl-header-height-scrolled) 0 auto 0;
  }

  .tl-nav.is-open {
    display: flex;
  }

  .tl-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 14px;
  }

  .tl-menu a {
    display: inline-flex;
    white-space: normal;
    font-size: 16px;
    line-height: 1.2;
  }

  .tl-nav__cta {
    display: inline-flex;
    width: 100%;
  }

  .tl-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tl-actions .tl-button {
    width: 100%;
  }

  .tl-404 {
    padding: 54px 0 64px;
  }

  .tl-404 h1 {
    max-width: 330px;
    font-size: 38px;
    line-height: 1.04;
  }

  .tl-404__copy > p:not(.tl-eyebrow) {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.48;
  }

  .tl-404__visual {
    min-height: 250px;
  }

  .tl-404__visual::after {
    right: 20px;
    bottom: 20px;
    width: 74px;
    height: 74px;
    border-width: 8px;
  }

  .tl-404__mark {
    top: 8px;
    right: 8px;
    transform: scale(0.42);
  }

  .tl-404__visual strong {
    left: 20px;
    bottom: 82px;
    font-size: 88px;
  }

  .tl-404__routes {
    right: 18px;
    bottom: 18px;
    left: 18px;
    gap: 7px;
  }

  .tl-404__routes span {
    padding: 7px 8px;
    font-size: 11px;
  }

  .tl-lead {
    width: calc(100vw - 64px);
    max-width: 300px;
    font-size: 17px;
    line-height: 1.48;
  }

  .tl-hero-center .tl-lead {
    width: calc(100vw - 64px);
    max-width: 300px;
  }

  .tl-objection-line {
    width: calc(100vw - 64px);
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    line-height: 1.42;
    overflow-wrap: break-word;
  }

  .tl-product-stage {
    margin-top: 58px;
    padding-bottom: 0;
  }

  .tl-stage-photo {
    --tl-embrace-stroke: 7px;
    --tl-embrace-gap: 13px;
    --tl-embrace-arm: 92px;
    height: 350px;
  }

  .tl-corner-angle-mark {
    display: none;
  }

  .tl-panel--elevated:has(> img),
  .tl-media-band .tl-panel--elevated:has(> img),
  .tl-case-visual-band figure:first-child,
  .tl-product-preview {
    --tl-embrace-stroke: 5px;
    --tl-embrace-gap: 9px;
    --tl-embrace-arm: 66px;
  }

  .tl-stage-photo::before,
  .tl-product-preview::before,
  .tl-panel--elevated:has(> img)::before,
  .tl-media-band .tl-panel--elevated:has(> img)::before,
  .tl-case-visual-band figure:first-child::before,
  .tl-stage-photo::after,
  .tl-product-preview::after,
  .tl-panel--elevated:has(> img)::after,
  .tl-media-band .tl-panel--elevated:has(> img)::after,
  .tl-case-visual-band figure:first-child::after {
    display: none;
  }

  .tl-product-preview {
    width: 100%;
    padding: 8px;
  }

  .tl-product-preview > .tl-video-placeholder {
    inset: 28px 8px 8px;
  }

  .tl-product-preview img {
    aspect-ratio: 4 / 3;
    object-position: 62% 50%;
  }

  .tl-product-preview__chip {
    position: static;
    width: auto;
    margin: 10px 0 0;
    box-shadow: 0 14px 34px rgba(12, 34, 35, 0.08);
  }

  .tl-product-preview__rail {
    position: static;
    margin-top: 10px;
  }

  .tl-product-preview__rail span {
    box-shadow: none;
    border: 1px solid var(--tl-line);
  }

  .tl-production-spotlight {
    gap: 22px;
  }

  .tl-video-metric-card {
    min-height: 460px;
  }

  .tl-video-metric-card__media img,
  .tl-video-metric-card__media video {
    min-height: 460px;
  }

  .tl-video-metric-card__panel {
    --tl-metric-panel-y: 0px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 16px;
  }

  .tl-video-metric-card__panel strong {
    font-size: 32px;
  }

  .tl-case-study__sidebar {
    padding: 18px;
  }

  .tl-case-study__facts div,
  .tl-case-timeline article {
    grid-template-columns: 1fr;
  }

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

  .tl-case-study__stat:last-child {
    grid-column: auto;
  }

  .tl-case-study__stat strong,
  .tl-case-study__stat:last-child strong {
    font-size: clamp(42px, 14vw, 58px);
  }

  .tl-case-study__sidebar-figure img {
    height: 230px;
  }

  .tl-case-timeline {
    gap: 22px;
  }

  .tl-case-timeline::before {
    display: none;
  }

  .tl-case-timeline__icon {
    width: 46px;
    height: 46px;
    font-size: 14px;
    box-shadow: 0 0 0 7px rgba(165, 221, 220, 0.2);
  }

  .tl-case-study__visuals img {
    min-height: 270px;
  }

  .tl-mini-chart {
    height: 42px;
    gap: 7px;
    margin-top: 16px;
  }

  .tl-production-copy {
    padding: 22px;
  }

  .tl-production-facts span {
    display: block;
  }

  .tl-production-facts strong {
    display: block;
    margin-bottom: 4px;
  }

  .tl-screen-stack {
    width: min(100%, 340px);
    max-width: 100%;
    min-height: 330px;
    margin: 20px auto 0;
    overflow: hidden;
  }

  .tl-screen-stack__screen--one {
    top: 112px;
    right: 8px;
    width: calc(100% - 44px);
    height: 136px;
  }

  .tl-screen-stack__screen--two {
    left: 0;
    top: 74px;
    width: 56%;
    height: 104px;
  }

  .tl-screen-stack__screen--three {
    right: 8px;
    top: 44px;
    width: 50%;
    height: 92px;
  }

  .tl-screen-stack__screen--four {
    left: 14px;
    bottom: 40px;
    width: 58%;
    height: 92px;
  }

  .tl-screen-stack__chip {
    display: none;
  }

  .tl-hero--lens .tl-screen-stack {
    width: min(100%, 320px);
    min-height: 300px;
    margin-right: 0;
    margin-left: 0;
  }

  .tl-hero--lens .tl-screen-stack__screen--one {
    left: 28px;
    right: auto;
    width: calc(100% - 38px);
    height: 128px;
  }

  .tl-hero--lens .tl-screen-stack__screen--two {
    width: 54%;
    height: 98px;
  }

  .tl-hero--lens .tl-screen-stack__screen--three {
    right: 4px;
    width: 46%;
    height: 86px;
  }

  .tl-hero--lens .tl-screen-stack__screen--four {
    left: 10px;
    width: 54%;
    height: 86px;
  }

  .tl-hero-marquee {
    margin-top: 22px;
  }

  .tl-hero-marquee__track {
    gap: 24px;
    padding: 13px 0;
    font-size: 12px;
    animation-duration: 26s;
  }

  .tl-hero-marquee__track span::after {
    width: 6px;
    height: 6px;
    margin-left: 24px;
    box-shadow: 0 0 0 4px rgba(3, 132, 136, 0.1);
  }

  .tl-faq-aside {
    padding: 22px;
  }

  .tl-lens-pipeline article {
    min-width: 0;
    min-height: 220px;
    padding: 0;
    overflow: visible;
  }

  .tl-lens-flip-card__face {
    padding: 22px;
  }

  .tl-lens-pipeline {
    width: min(calc(100vw - 48px), var(--tl-container));
    max-width: calc(100vw - 48px);
  }

  .tl-lens-pipeline h3,
  .tl-lens-pipeline p {
    overflow-wrap: break-word;
  }

  .tl-lens-pipeline h3 {
    max-width: min(260px, 100%);
  }

  .tl-lens-pipeline h3 {
    font-size: 28px;
    line-height: 1.06;
  }

  .tl-lens-pipeline p {
    max-width: min(260px, 100%);
    font-size: 17px;
    line-height: 1.38;
  }

  .tl-lens-photo-card {
    min-height: 320px;
  }

  .tl-faq-aside {
    position: relative;
    top: auto;
  }

  .tl-layer-card__media {
    height: 156px;
  }

  .tl-stage-product {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 150px;
    margin-top: 12px;
    transform: none;
  }

  .tl-stage-product figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    white-space: normal;
    line-height: 1.18;
  }

  .tl-proof-row {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: none;
    margin-top: 12px;
  }

  .tl-proof-row div {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
  }

  .tl-proof-row strong {
    flex: 0 0 auto;
    font-size: 24px;
  }

  .tl-proof-row span {
    margin-top: 0;
    font-size: 12px;
  }

  .tl-port-marquee {
    margin-top: 30px;
  }

  .tl-port-marquee__track {
    gap: 10px;
    padding: 12px;
    animation-duration: 36s;
  }

  .tl-port-card,
  .tl-port-card--wide {
    flex-basis: 224px;
    height: 146px;
  }

  .tl-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tl-photo-grid::after {
    display: none;
  }

  .tl-photo-grid figure,
  .tl-photo-grid__main,
  .tl-photo-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-tl-reveal] {
    opacity: 1;
    transform: none;
  }

  .tl-signal-grid span,
  .tl-hero-marquee__track,
  .tl-marquee__track,
  .tl-port-marquee__track,
  .tl-production-testimonial,
  .tl-production-proof-strip span,
  .tl-process-motion-cards span {
    animation: none;
  }
}
