@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 700;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --tlive-navy: #071621;
  --tlive-navy-soft: #102633;
  --tlive-paper: #fbfaf6;
  --tlive-off-white: #f2f0e9;
  --tlive-graphite: #545454;
  --tlive-cyan: #049fc7;
  --tlive-green: #5eb443;
  --tlive-orange: #ff8f10;
  --tlive-magenta: #f60c74;
  --tlive-line: rgba(7, 22, 33, 0.16);
  --tlive-content: min(1240px, calc(100vw - 3rem));
  --tlive-header: 82px;
  --tlive-ease: cubic-bezier(.22, 1, .36, 1);
  --wp--preset--font-size--lead: clamp(1.15rem, 1.03rem + .5vw, 1.5rem);
  --wp--preset--font-size--h3: clamp(1.5rem, 1.25rem + 1vw, 2.2rem);
  --wp--preset--font-size--h2: clamp(2.2rem, 1.55rem + 2.6vw, 4.4rem);
}

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

body {
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.wp-site-blocks > * {
  margin-block-start: 0 !important;
}

body.admin-bar .tlive-header {
  top: 32px;
}

::selection {
  color: #fff;
  background: var(--tlive-cyan);
}

a,
button,
input,
select,
textarea {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--tlive-orange);
  outline-offset: 3px;
}

.tlive-skip-link {
  position: fixed;
  z-index: 99999;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  color: #fff;
  background: var(--tlive-cyan);
  transform: translateY(-180%);
}

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

.tlive-shell {
  width: var(--tlive-content);
  margin-inline: auto;
}

.tlive-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--tlive-header);
  color: #fff;
  background: rgba(7, 22, 33, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.tlive-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--tlive-content);
  height: 100%;
  margin-inline: auto;
}

.tlive-brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  color: #fff;
  text-decoration: none;
}

.tlive-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.tlive-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 590;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.tlive-nav a {
  position: relative;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.tlive-nav a:not(.tlive-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 2px;
  background: var(--tlive-cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--tlive-ease);
}

.tlive-nav a:hover,
.tlive-nav a[aria-current="page"] {
  color: #fff;
}

.tlive-nav a:hover::after,
.tlive-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tlive-nav__cta,
.tlive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  color: var(--tlive-navy) !important;
  background: var(--tlive-cyan);
  border: 1px solid var(--tlive-cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .075em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.tlive-nav__cta:hover,
.tlive-button:hover {
  color: var(--tlive-navy) !important;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.tlive-button--ghost {
  color: #fff !important;
  background: transparent;
  border-color: rgba(255, 255, 255, .46);
}

.tlive-button--dark {
  color: #fff !important;
  background: var(--tlive-navy);
  border-color: var(--tlive-navy);
}

.tlive-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
}

.tlive-menu-toggle span,
.tlive-menu-toggle::before,
.tlive-menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.tlive-menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.tlive-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.tlive-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.tlive-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--tlive-header));
  overflow: hidden;
  color: #fff;
  background: var(--tlive-navy);
  isolation: isolate;
}

.tlive-hero__media,
.tlive-hero__media::before,
.tlive-hero__media::after {
  position: absolute;
  inset: 0;
}

.tlive-hero__media {
  z-index: -3;
  overflow: hidden;
}

.tlive-hero__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tlive-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlive-hero__media::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 22, 33, .98) 0%, rgba(7, 22, 33, .82) 34%, rgba(7, 22, 33, .28) 67%, rgba(7, 22, 33, .12) 100%),
    linear-gradient(0deg, rgba(7, 22, 33, .54), transparent 50%);
  content: "";
}

.tlive-hero__media::after {
  z-index: 2;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0,0,0,.25), transparent 64%);
}

.tlive-hero__inner {
  display: grid;
  align-content: center;
  width: var(--tlive-content);
  margin-inline: auto;
  padding: clamp(4rem, 9vh, 7rem) 0 6rem;
}

.tlive-hero__copy {
  max-width: 760px;
}

.tlive-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1.5rem;
  color: var(--tlive-cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tlive-eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: skewX(-28deg);
}

.tlive-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.3rem, 7.2vw, 8.1rem);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: .88;
}

.tlive-hero__claim {
  display: block;
  margin-top: .22em;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
  font-weight: 380;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.tlive-hero__lead {
  max-width: 590px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.tlive-hero__kicker {
  margin: 1.1rem 0 0;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: .85rem;
  font-weight: 620;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tlive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.2rem;
}

.tlive-hero__control {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1240px) / 2));
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 42px;
  padding: .65rem .8rem;
  color: rgba(255,255,255,.82);
  background: rgba(7,22,33,.62);
  border: 1px solid rgba(255,255,255,.26);
  font: 600 .68rem/1 "Space Grotesk", sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.tlive-hero__control[hidden] {
  display: none;
}

.tlive-spectrum {
  height: 7px;
  background: url("../img/diagonal-spectrum.svg") center / 100% 100% no-repeat;
}

.tlive-section {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.tlive-section--compact {
  padding: clamp(3.75rem, 6vw, 6rem) 0;
}

.tlive-section--compact .tlive-section__head {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.tlive-section--compact .tlive-section__head h2 {
  font-size: clamp(2rem, 3.4vw, 3.65rem);
}

.tlive-section--dark {
  color: #fff;
  background: var(--tlive-navy);
}

.tlive-section--soft {
  background: var(--tlive-off-white);
}

.tlive-section--cyan {
  color: var(--tlive-navy);
  background: var(--tlive-cyan);
}

.tlive-section__head {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.tlive-section__head h2,
.tlive-page-hero h1 {
  margin: 0;
  font-size: var(--wp--preset--font-size--h2);
}

.tlive-section__head p {
  max-width: 680px;
  margin: .2rem 0 0;
  color: rgba(7,22,33,.68);
  font-size: var(--wp--preset--font-size--lead);
}

.tlive-section--dark .tlive-section__head p {
  color: rgba(255,255,255,.68);
}

.tlive-index-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--tlive-line);
  list-style: none;
}

.tlive-index-list__item {
  display: grid;
  grid-template-columns: 70px minmax(220px, .9fr) minmax(260px, 1.4fr) auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 126px;
  color: inherit;
  border-bottom: 1px solid var(--tlive-line);
  text-decoration: none;
}

.tlive-section--compact .tlive-index-list__item {
  min-height: 102px;
}

.tlive-index-list__number {
  color: var(--tlive-cyan);
  font: 600 .72rem/1 "Space Grotesk", sans-serif;
  letter-spacing: .14em;
}

.tlive-index-list__title {
  font: 520 clamp(1.35rem, 2vw, 2rem)/1.05 "Space Grotesk", sans-serif;
  letter-spacing: -.03em;
}

.tlive-index-list__text {
  color: rgba(7,22,33,.62);
  line-height: 1.55;
}

.tlive-index-list__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--tlive-line);
  font-size: 1.2rem;
}

.tlive-index-list__item:hover .tlive-index-list__arrow {
  color: #fff;
  background: var(--tlive-cyan);
  border-color: var(--tlive-cyan);
  transform: translateX(4px);
}

.tlive-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.tlive-split__media {
  position: relative;
  display: grid;
  grid-template-rows: minmax(520px, 1fr) auto;
  min-height: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
}

.tlive-split__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: var(--tlive-navy-soft);
}

.tlive-axis-credit {
  position: static;
  max-width: none;
  padding: .55rem 0 0;
  color: rgba(255,255,255,.38);
  background: transparent;
  font: 500 .56rem/1.35 "Inter", sans-serif;
  letter-spacing: .015em;
}

.tlive-split__media::after {
  position: absolute;
  right: 1.5rem;
  bottom: 2.4rem;
  width: 180px;
  height: 5px;
  background: url("../img/diagonal-spectrum.svg") center / 100% 100%;
  content: "";
}

.tlive-split__copy h2 {
  margin: 0 0 1.5rem;
  font-size: var(--wp--preset--font-size--h2);
}

.tlive-split__copy p {
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
}

.tlive-source-note {
  margin-top: 1.4rem;
  font-size: .86rem !important;
}

.tlive-source-note a {
  color: rgba(255,255,255,.82);
  text-decoration-color: var(--tlive-cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: .35em;
}

.tlive-source-note a:hover {
  color: #fff;
}

.tlive-proof-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 3rem;
}

.tlive-proof-line > div {
  min-width: 0;
  min-height: 220px;
  padding: 1.35rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.16);
}

.tlive-proof-line > div:last-child {
  border-right: 1px solid rgba(255,255,255,.16);
}

.tlive-proof-line .tlive-scribble-icon {
  width: 54px;
  margin-bottom: 1.5rem;
}

.tlive-proof-line strong {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font: 540 1.15rem/1.2 "Space Grotesk", sans-serif;
}

.tlive-proof-line span {
  display: block;
  margin-top: .5rem;
  color: rgba(255,255,255,.56);
  font-size: .9rem;
}

.tlive-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--tlive-line);
  border-left: 1px solid var(--tlive-line);
}

.tlive-sector {
  position: relative;
  min-height: 290px;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: inherit;
  border-right: 1px solid var(--tlive-line);
  border-bottom: 1px solid var(--tlive-line);
  text-decoration: none;
  overflow: hidden;
}

.tlive-sector::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--tlive-cyan);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--tlive-ease);
}

.tlive-sector:hover::before {
  transform: scaleY(1);
}

.tlive-sector__index {
  color: var(--tlive-cyan);
  font: 650 .72rem/1 "Space Grotesk", sans-serif;
  letter-spacing: .14em;
}

.tlive-sector h3 {
  max-width: 420px;
  margin: 4.5rem 0 1rem;
  font-size: var(--wp--preset--font-size--h3);
}

.tlive-sector p {
  max-width: 480px;
  margin: 0;
  color: rgba(7,22,33,.62);
}

.tlive-sector .tlive-scribble-icon {
  position: absolute;
  top: clamp(1.35rem, 2.5vw, 2rem);
  right: clamp(1.35rem, 2.5vw, 2rem);
  width: 58px;
}

.tlive-sector:hover .tlive-scribble-icon {
  transform: rotate(-3deg) scale(1.06);
}

.tlive-section--compact .tlive-sector {
  min-height: 245px;
}

.tlive-section--compact .tlive-sector h3 {
  margin-top: 3.6rem;
}

.tlive-sector--wide {
  grid-column: 1 / -1;
  min-height: 245px;
}

.tlive-section--compact .tlive-sector--wide {
  min-height: 205px;
}

.tlive-sector--wide h3 {
  max-width: 760px;
}

.tlive-section--portrait {
  padding: 0;
  color: #fff;
  background: #0b1b27;
}

.tlive-founder {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  min-height: 0;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.tlive-founder__media {
  align-self: center;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #15191d;
}

.tlive-founder__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(.88) contrast(1.03);
  transition: transform .8s var(--tlive-ease), filter .4s ease;
}

.tlive-founder__media:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.012);
}

.tlive-founder__copy {
  max-width: 650px;
  padding: 0;
}

.tlive-founder__copy h2 {
  margin: 0 0 1.6rem;
  color: #fff;
  font-size: var(--wp--preset--font-size--h2);
}

.tlive-founder__copy p {
  max-width: 610px;
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
}

.tlive-text-link {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  margin-top: 1.2rem;
  color: inherit;
  font: 650 .78rem/1.3 "Space Grotesk", sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.tlive-text-link span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--tlive-cyan);
}

.tlive-text-link:hover span {
  transform: translateX(4px);
}

.tlive-founder--company {
  min-height: 0;
}

.tlive-scribble-icon {
  display: block;
  width: 62px;
  color: var(--tlive-cyan);
  transition: transform .35s var(--tlive-ease), color .2s ease;
}

.tlive-scribble-icon svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tlive-scribble-icon__echo {
  opacity: .36;
  transform: translate(1px, -1px);
}

.tlive-process {
  counter-reset: process;
  border-top: 1px solid rgba(255,255,255,.18);
}

.tlive-process__step {
  display: grid;
  grid-template-columns: 80px minmax(230px, .75fr) minmax(300px, 1.25fr);
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  counter-increment: process;
}

.tlive-process__step::before {
  color: var(--tlive-cyan);
  content: "0" counter(process);
  font: 650 .75rem/1.4 "Space Grotesk", sans-serif;
  letter-spacing: .14em;
}

.tlive-process__step h3 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
}

.tlive-process__step p {
  margin: 0;
  color: rgba(255,255,255,.62);
}

.tlive-section--process {
  color: var(--tlive-navy);
  background: #e8eef1;
}

.tlive-section--process .tlive-section__head p,
.tlive-section--process .tlive-process__step p {
  color: rgba(7,22,33,.66);
}

.tlive-process--grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(7,22,33,.16);
  border-left: 1px solid rgba(7,22,33,.16);
}

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

.tlive-process--grid .tlive-process__step {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 315px;
  padding: 1.5rem;
  border-right: 1px solid rgba(7,22,33,.16);
  border-bottom: 1px solid rgba(7,22,33,.16);
}

.tlive-process--grid .tlive-process__step::before {
  color: var(--tlive-cyan);
}

.tlive-process--grid .tlive-scribble-icon {
  width: 58px;
  margin: 2.2rem 0 1.5rem;
}

.tlive-process--grid .tlive-process__step h3 {
  margin: 0 0 .8rem;
  color: var(--tlive-navy);
  font-size: 1.25rem;
}

.tlive-process--grid .tlive-process__step:hover .tlive-scribble-icon {
  transform: translateY(-4px) rotate(-3deg);
}

.tlive-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 3rem;
  align-items: end;
  padding: clamp(3rem, 7vw, 6.5rem);
  color: var(--tlive-navy);
  background: var(--tlive-cyan);
  overflow: hidden;
}

.tlive-section--cta {
  padding: 0;
  background: var(--tlive-cyan);
}

.tlive-section--cta .tlive-shell {
  width: 100%;
}

.tlive-section--cta .tlive-cta {
  width: var(--tlive-content);
  margin-inline: auto;
  padding: clamp(3.25rem, 6vw, 5.25rem) 0;
  background: transparent;
}

.tlive-section--cta .tlive-cta h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 3.7vw, 3.9rem);
}

.tlive-cta::after {
  position: absolute;
  top: -50px;
  right: 8%;
  width: 6px;
  height: 190px;
  background: rgba(255,255,255,.5);
  box-shadow: 25px 0 0 rgba(94,180,67,.82), 50px 0 0 rgba(255,143,16,.82), 75px 0 0 rgba(246,12,116,.82);
  content: "";
  transform: rotate(29deg);
}

.tlive-cta h2 {
  max-width: 860px;
  margin: 0;
  font-size: var(--wp--preset--font-size--h2);
}

.tlive-cta p {
  max-width: 650px;
  margin: 1.4rem 0 0;
}

.tlive-page-hero {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(4.5rem, 8vw, 8rem);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7,22,33,.98), rgba(7,22,33,.74)),
    url("../img/hero-rack.webp") center / cover;
  overflow: hidden;
}

.tlive-page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34vw, 420px);
  height: 8px;
  background: url("../img/diagonal-spectrum.svg") center / 100% 100%;
  content: "";
}

.tlive-page-hero__inner {
  width: var(--tlive-content);
  margin-inline: auto;
}

.tlive-page-hero h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.7rem);
}

.tlive-page-hero p {
  max-width: 720px;
  margin: 2rem 0 0;
  color: rgba(255,255,255,.72);
  font-size: var(--wp--preset--font-size--lead);
}

.tlive-solution-media {
  position: relative;
  z-index: 2;
  width: var(--tlive-content);
  margin: -4rem auto 0;
}

.tlive-solution-media figure {
  margin: 0;
}

.tlive-solution-media__frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--tlive-navy-soft);
}

.tlive-solution-media__frame::after {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 180px;
  height: 5px;
  background: url("../img/diagonal-spectrum.svg") center / 100% 100%;
  content: "";
}

.tlive-solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--tlive-ease);
}

.tlive-solution-media:hover img {
  transform: scale(1.018);
}

.tlive-solution-media figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  color: rgba(7,22,33,.62);
  border-bottom: 1px solid var(--tlive-line);
  font: 650 .72rem/1.4 "Space Grotesk", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tlive-solution-media figcaption > span:nth-child(2) {
  text-align: right;
}

.tlive-solution-media figcaption small {
  grid-column: 1 / -1;
  margin-top: -.75rem;
  color: rgba(7,22,33,.48);
  font: 500 .64rem/1.45 "Inter", sans-serif;
  letter-spacing: .01em;
  text-transform: none;
}

.tlive-prose {
  width: min(900px, calc(100vw - 3rem));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.tlive-prose h2 {
  margin-top: 2.7em;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.tlive-prose h3 {
  margin-top: 2.2em;
  font-size: 1.45rem;
}

.tlive-prose p,
.tlive-prose li {
  color: rgba(7,22,33,.72);
}

.tlive-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0;
  border-top: 1px solid var(--tlive-line);
  border-left: 1px solid var(--tlive-line);
}

.tlive-facts > div {
  min-height: 170px;
  padding: 1.5rem;
  border-right: 1px solid var(--tlive-line);
  border-bottom: 1px solid var(--tlive-line);
}

.tlive-facts strong {
  display: block;
  margin-bottom: .7rem;
  color: var(--tlive-navy);
  font: 540 1.15rem/1.25 "Space Grotesk", sans-serif;
}

.tlive-facts span {
  color: rgba(7,22,33,.62);
  font-size: .94rem;
}

.tlive-faq {
  margin-top: 4rem;
  border-top: 1px solid var(--tlive-line);
}

.tlive-faq details {
  border-bottom: 1px solid var(--tlive-line);
}

.tlive-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font: 540 1.08rem/1.3 "Space Grotesk", sans-serif;
  list-style: none;
}

.tlive-faq summary::after {
  color: var(--tlive-cyan);
  content: "+";
  font-size: 1.5rem;
}

.tlive-faq details[open] summary::after {
  content: "−";
}

.tlive-faq details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 1.5rem;
}

.tlive-form-wrap {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 7vw, 8rem);
  width: var(--tlive-content);
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.tlive-form-intro h2 {
  margin: 0 0 1.4rem;
  font-size: var(--wp--preset--font-size--h2);
}

.tlive-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.tlive-field {
  display: grid;
  gap: .45rem;
}

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

.tlive-field label,
.tlive-form legend {
  color: var(--tlive-navy);
  font: 620 .76rem/1.4 "Space Grotesk", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tlive-field input,
.tlive-field select,
.tlive-field textarea {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  padding: .85rem 1rem;
  color: var(--tlive-navy);
  background: transparent;
  border: 1px solid rgba(7,22,33,.28);
  border-radius: 0;
  font: inherit;
}

.tlive-field textarea {
  min-height: 170px;
  resize: vertical;
}

.tlive-field input:focus,
.tlive-field select:focus,
.tlive-field textarea:focus {
  border-color: var(--tlive-cyan);
}

.tlive-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .75rem;
  align-items: start;
  grid-column: 1 / -1;
  color: rgba(7,22,33,.68);
  font-size: .88rem;
}

.tlive-check input {
  width: 20px;
  height: 20px;
  margin: .15rem 0 0;
  accent-color: var(--tlive-cyan);
}

.tlive-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tlive-form-status {
  grid-column: 1 / -1;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--tlive-cyan);
  background: rgba(4,159,199,.1);
}

.tlive-form-status--error {
  border-left-color: #ed3237;
  background: rgba(237,50,55,.1);
}

.tlive-breadcrumbs {
  color: rgba(7,22,33,.62);
  background: var(--tlive-paper);
  border-bottom: 1px solid var(--tlive-line);
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tlive-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  width: var(--tlive-content);
  margin: 0 auto;
  padding: .8rem 0;
  list-style: none;
}

.tlive-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.tlive-breadcrumbs li:not(:last-child)::after {
  color: var(--tlive-cyan);
  content: "/";
}

.tlive-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.tlive-breadcrumbs a:hover {
  color: var(--tlive-navy);
}

.tlive-partners {
  position: relative;
  overflow: hidden;
  color: var(--tlive-navy);
  background: var(--tlive-off-white);
  border-top: 1px solid var(--tlive-line);
}

.tlive-partners::before {
  position: absolute;
  top: -22rem;
  right: -17rem;
  width: 34rem;
  height: 34rem;
  background: rgba(4,159,199,.08);
  content: "";
  transform: rotate(45deg);
}

.tlive-partners__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  width: var(--tlive-content);
  margin-inline: auto;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.tlive-partners__copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 520;
  letter-spacing: -.045em;
  line-height: .98;
}

.tlive-partners__copy > p:not(.tlive-eyebrow) {
  max-width: 510px;
  margin: 1.5rem 0 0;
  color: rgba(7,22,33,.68);
  line-height: 1.7;
}

.tlive-partners__brand {
  display: block;
  width: min(250px, 72%);
  height: auto;
  margin-top: 2.1rem;
}

.tlive-partners__marks {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1px;
  background: rgba(7,22,33,.14);
  border: 1px solid rgba(7,22,33,.14);
}

.tlive-partner-mark {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  min-height: 250px;
  margin: 0;
  padding: clamp(1.25rem, 2vw, 2rem);
  background: #fff;
}

.tlive-partner-mark img {
  align-self: center;
  justify-self: center;
  display: block;
  width: 100%;
  max-height: 155px;
  object-fit: contain;
}

.tlive-partner-mark--axis img {
  max-width: 125px;
  max-height: 115px;
}

.tlive-partner-mark--ajax img {
  max-width: 210px;
}

.tlive-partner-mark figcaption {
  align-self: end;
  margin-top: 1.3rem;
  padding-top: 1rem;
  color: rgba(7,22,33,.58);
  border-top: 1px solid rgba(7,22,33,.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: .66rem;
  font-weight: 640;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tlive-footer {
  color: rgba(255,255,255,.68);
  background: #041019;
}

.tlive-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 4rem;
  width: var(--tlive-content);
  margin-inline: auto;
  padding: 5rem 0 3rem;
}

.tlive-footer__brand img {
  width: 190px;
}

.tlive-footer__brand p {
  max-width: 390px;
  margin-top: 1.5rem;
}

.tlive-footer h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tlive-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlive-footer li + li {
  margin-top: .6rem;
}

.tlive-footer a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.tlive-footer a:hover {
  color: var(--tlive-cyan);
}

.tlive-consent-link {
  padding: 0;
  color: rgba(255,255,255,.72);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.tlive-consent-link:hover {
  color: var(--tlive-cyan);
}

.tlive-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: var(--tlive-content);
  margin-inline: auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .78rem;
}

.tlive-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--tlive-ease), transform .75s var(--tlive-ease);
}

.tlive-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-linked signal path: decorative, layout-neutral and page-specific. */
.tlive-signal-page .entry-content {
  position: relative;
}

.tlive-signal-page {
  overflow-x: clip;
}

.tlive-signal-page .entry-content > section > .tlive-shell,
.tlive-signal-page .entry-content > .tlive-page-hero > .tlive-page-hero__inner,
.tlive-signal-page .entry-content > .tlive-hero > .tlive-hero__inner,
.tlive-signal-page .entry-content > .tlive-solution-media,
.tlive-signal-page .entry-content > .tlive-prose {
  position: relative;
  z-index: 4;
}

.tlive-signal-layer {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.tlive-signal-path--base {
  fill: none;
  stroke: rgba(12, 166, 207, .055);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tlive-signal-path--active {
  fill: none;
  stroke: rgba(12, 166, 207, .24);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tlive-signal-path--flow {
  fill: none;
  stroke: #16b9df;
  stroke-width: 2.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(12, 166, 207, .56));
  vector-effect: non-scaling-stroke;
}

.tlive-signal-branch {
  fill: none;
  stroke: rgba(12, 166, 207, .16);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tlive-signal-branch--green { stroke: rgba(94, 180, 67, .5); }
.tlive-signal-branch--orange { stroke: rgba(255, 143, 16, .52); }
.tlive-signal-branch--magenta { stroke: rgba(246, 12, 116, .48); }
.tlive-signal-branch--process { stroke: rgba(12, 166, 207, .35); stroke-width: 1.2; }

.tlive-signal-node__inner {
  opacity: .22;
  transform: scale(.82);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .24s ease, transform .3s var(--tlive-ease);
}

.tlive-signal-node.is-active .tlive-signal-node__inner {
  opacity: 1;
  transform: scale(1);
}

.tlive-signal-node__ring {
  fill: #eef2f3;
  stroke: rgba(12, 166, 207, .62);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.tlive-signal-node--dark .tlive-signal-node__ring {
  fill: #071621;
  stroke: rgba(255, 255, 255, .58);
}

.tlive-signal-node--cyan .tlive-signal-node__ring {
  fill: #071621;
  stroke: rgba(255, 255, 255, .82);
}

.tlive-signal-node__icon {
  fill: none;
  stroke: #0ca6cf;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tlive-signal-node--cyan .tlive-signal-node__icon {
  stroke: #fff;
}

.tlive-signal-pulse circle {
  filter: drop-shadow(0 0 5px rgba(12, 166, 207, .64));
}

.tlive-signal-layer--edge .tlive-signal-node__inner {
  transform: scale(.68);
}

.tlive-signal-layer--edge .tlive-signal-node.is-active .tlive-signal-node__inner {
  transform: scale(.78);
}

.tlive-signal-layer--edge .tlive-signal-pulse circle:not(:first-child) {
  display: none;
}

@media (max-width: 820px) {
  .tlive-signal-layer {
    z-index: 3;
  }

  .tlive-signal-path--base {
    stroke-width: .9;
  }

  .tlive-signal-path--active {
    stroke-width: 1.05;
  }

  .tlive-signal-path--flow {
    stroke-width: 2.15;
  }

  .tlive-signal-layer--edge .tlive-signal-node__inner {
    transform: scale(.64);
  }

  .tlive-signal-layer--edge .tlive-signal-node.is-active .tlive-signal-node__inner {
    transform: scale(.74);
  }
}

.tlive-hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: tlive-enter .85s var(--tlive-ease) forwards;
}

.tlive-hero__copy > :nth-child(2) { animation-delay: .1s; }
.tlive-hero__copy > :nth-child(3) { animation-delay: .2s; }
.tlive-hero__copy > :nth-child(4) { animation-delay: .3s; }
.tlive-hero__copy > :nth-child(5) { animation-delay: .4s; }

@keyframes tlive-enter {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  :root { --tlive-content: min(100% - 2rem, 960px); }
  .tlive-menu-toggle { display: block; }
  .tlive-nav {
    position: fixed;
    inset: var(--tlive-header) 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(7,22,33,.98);
    border-bottom: 1px solid rgba(255,255,255,.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }
  .tlive-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .tlive-nav a { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .tlive-nav__cta { margin-top: .75rem; }
  .tlive-process--grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --tlive-header: 72px; }
  body.admin-bar .tlive-header { top: 46px; }
  .tlive-brand { width: 165px; }
  .tlive-hero { min-height: calc(100svh - var(--tlive-header)); }
  .tlive-hero__inner { align-content: end; padding-bottom: 5.5rem; }
  .tlive-hero__media::before { background: linear-gradient(0deg, rgba(7,22,33,.98) 0%, rgba(7,22,33,.74) 58%, rgba(7,22,33,.3) 100%); }
  .tlive-hero__media { animation: none; }
  .tlive-hero__poster { object-position: 62% center; }
  .tlive-hero__video { display: none; }
  .tlive-hero__control { display: none; }
  .tlive-section__head,
  .tlive-split,
  .tlive-founder,
  .tlive-form-wrap,
  .tlive-cta { grid-template-columns: 1fr; }
  .tlive-index-list__item { grid-template-columns: 44px 1fr auto; padding: 1.4rem 0; }
  .tlive-index-list__text { grid-column: 2 / -1; }
  .tlive-split__media { grid-template-rows: minmax(410px, 1fr) auto; order: 2; }
  .tlive-founder { width: var(--tlive-content); min-height: 0; gap: 2.5rem; }
  .tlive-founder__media { width: min(100%, 390px); min-height: 0; margin-inline: auto; }
  .tlive-founder__copy { width: 100%; margin-inline: auto; }
  .tlive-proof-line { grid-template-columns: 1fr; }
  .tlive-proof-line > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .tlive-proof-line > div:last-child { border-bottom: 0; }
  .tlive-process__step { grid-template-columns: 50px 1fr; }
  .tlive-process__step p { grid-column: 2; }
  .tlive-partners__inner { grid-template-columns: 1fr; }
  .tlive-footer__inner { grid-template-columns: 1fr 1fr; }
  .tlive-footer__brand { grid-column: 1 / -1; }
  .tlive-process--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  :root { --tlive-content: calc(100% - 2rem); }
  .tlive-hero h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .tlive-sector-grid,
  .tlive-facts,
  .tlive-form { grid-template-columns: 1fr; }
  .tlive-sector--wide { grid-column: auto; }
  .tlive-field--full { grid-column: auto; }
  .tlive-check { grid-column: auto; }
  .tlive-sector { min-height: 240px; }
  .tlive-sector h3 { margin-top: 3rem; }
  .tlive-cta { padding: 2rem; }
  .tlive-section--cta .tlive-cta { padding: 3rem 0; }
  .tlive-process--grid { grid-template-columns: 1fr; }
  .tlive-process--grid .tlive-process__step { min-height: 0; }
  .tlive-partners__marks { grid-template-columns: 1fr; }
  .tlive-partner-mark { min-height: 220px; }
  .tlive-footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .tlive-footer__brand { grid-column: auto; }
  .tlive-footer__bottom { flex-direction: column; }
  .tlive-solution-media { margin-top: -1.5rem; }
  .tlive-solution-media figcaption { grid-template-columns: 1fr; gap: .35rem; }
  .tlive-solution-media figcaption > span:nth-child(2) { text-align: left; }
  .tlive-solution-media figcaption small { grid-column: auto; margin-top: .25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .tlive-reveal { opacity: 1; transform: none; }
  .tlive-hero__video { display: none; }
  .tlive-signal-node__inner { opacity: .8; transform: scale(.92); transition: none; }
  .tlive-signal-layer--edge .tlive-signal-node__inner { transform: scale(.72); }
  .tlive-signal-path--flow { display: none; }
  .tlive-signal-pulse { display: none; }
}
