:root {
  --bg: #070707;
  --bg-2: #0c0c0c;
  --bg-3: #121212;
  --ink: #f3efe4;
  --ink-dim: #8d897c;
  --ink-faint: #4c4a42;
  --lime: #c8ff3d;
  --lime-ink: #101400;
  --line: rgba(243, 239, 228, 0.1);
  --line-strong: rgba(243, 239, 228, 0.22);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --bar: 3.6rem;
  --status: 1.85rem;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--bar) + 0.5rem);
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0;
  background: var(--bg);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--status);
}

#wpadminbar {
  background: #111;
}

::selection {
  background: var(--lime);
  color: var(--lime-ink);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.tl-ext {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(200, 255, 61, 0.45);
}

.tl-ext:hover {
  color: var(--ink);
  text-decoration-color: var(--lime);
}

.tl-ext--quiet {
  color: inherit;
  text-decoration: none;
}

.tl-ext--quiet:hover {
  color: var(--lime);
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--lime);
  color: var(--lime-ink);
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip:focus {
  top: calc(var(--bar) + 0.5rem);
  z-index: 90;
}

.progress {
  position: fixed;
  top: var(--bar);
  left: 0;
  z-index: 80;
  height: 2px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: var(--lime);
  pointer-events: none;
}

.admin-bar .progress {
  top: calc(32px + var(--bar));
}

.admin-bar .tl-bar {
  top: 32px;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
}

.kicker::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--lime);
  transform-origin: 0 50%;
  animation: kicker-scan 2.8s var(--ease) infinite;
}

@keyframes kicker-scan {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.8);
    opacity: 0.45;
  }
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.lead {
  color: var(--ink-dim);
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  letter-spacing: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tl-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
}

.tl-word__i {
  display: inline-block;
}

.tl-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--bar);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--pad);
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.tl-bar.is-scrolled {
  background: rgba(7, 7, 7, 0.92);
  border-bottom-color: var(--line);
}

.tl-bar__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.tl-bar__nav {
  display: none;
}

.tl-bar__nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-dim);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.tl-bar__nav a span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-faint);
}

.tl-bar__nav a:hover,
.tl-bar__nav a.is-active {
  color: var(--ink);
}

.tl-bar__nav a.is-active {
  border-bottom-color: var(--lime);
  color: var(--lime);
}

.tl-bar__nav a.is-active span {
  color: var(--lime);
}

.tl-bar__cta {
  display: none;
  background: var(--lime);
  color: var(--lime-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
}

.tl-lang {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  justify-self: end;
}

.tl-lang span {
  color: var(--ink-faint);
}

.tl-lang a {
  text-decoration: none;
  color: var(--ink-dim);
  padding: 0.15rem 0;
}

.tl-lang a:hover,
.tl-lang a.is-on {
  color: var(--lime);
}

.tl-bar__toggle {
  justify-self: end;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 0;
}

.tl-bar__toggle i {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.tl-bar.is-open .tl-bar__toggle i:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.tl-bar.is-open .tl-bar__toggle i:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.tl-menu {
  position: fixed;
  z-index: 69;
  top: var(--bar);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 7, 7, 0.96);
  padding: 1.5rem var(--pad) 3rem;
  display: grid;
  align-content: start;
}

.admin-bar .tl-menu {
  top: calc(32px + var(--bar));
}

.tl-menu nav {
  display: grid;
}

.tl-menu a {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.9rem 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}

.tl-menu a span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--lime);
}

.tl-menu a.is-active {
  color: var(--lime);
}

.tl-menu[hidden] {
  display: none !important;
}

.tl-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: calc(var(--bar) + 1.25rem) var(--pad) 1.75rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas,
.tl-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.tl-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}

.tl-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.42) 0%, rgba(7, 7, 7, 0.62) 45%, rgba(7, 7, 7, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.35) 0%, transparent 40%);
}

.tl-hero__top,
.tl-hero__title,
.tl-hero__bottom,
.tl-hero__float,
.tl-hero__term,
.tl-hero__cue,
.tl-term {
  position: relative;
  z-index: 1;
}

.tl-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tl-hero__mark {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tl-hero__mark a {
  color: inherit;
}

.tl-hero__mark a:hover {
  color: var(--lime);
}

.tl-hero__title {
  display: grid;
  align-content: center;
  gap: 0.08em;
  margin: 0.4rem 0;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 11vw, 7.25rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: none;
}

.tl-hero__line {
  display: flex;
  justify-content: flex-start;
}

.tl-hero__line--right {
  justify-content: flex-start;
  color: var(--ink);
}

.tl-hero__line--right .tl-letter:not(.is-accent) {
  opacity: 0.78;
}

.tl-letter-mask {
  display: inline-block;
  line-height: 0.95;
}

.tl-letter {
  display: inline-block;
}

.tl-letter.is-accent {
  color: var(--lime);
  text-shadow: 0 0 28px rgba(200, 255, 61, 0.35);
  animation: accent-glow 3.2s ease-in-out infinite;
}

@keyframes accent-glow {
  50% {
    text-shadow: 0 0 18px rgba(200, 255, 61, 0.18);
  }
}

.tl-hero__bottom {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 2.8rem;
}

.tl-hero__roles {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
}

.tl-hero__lead {
  max-width: 36rem;
}

.tl-hero__float {
  display: none;
}

.tl-hero__cue {
  position: absolute;
  right: var(--pad);
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tl-hero__cue span {
  width: 1px;
  height: 2.6rem;
  background: var(--lime);
  transform-origin: 50% 0;
  animation: cue 1.8s var(--ease) infinite;
}

@keyframes cue {
  0% {
    transform: scaleY(0.2);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

.tl-who {
  position: relative;
  padding: 18vh var(--pad) 16vh;
  overflow: hidden;
}

.tl-who__head {
  margin-bottom: 3rem;
}

.tl-who__layout {
  display: grid;
  gap: 2.5rem;
}

.tl-who__years {
  display: grid;
  align-content: start;
  color: var(--lime);
  line-height: 0.9;
}

.tl-who__years > span {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.tl-who__years small {
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tl-who__copy {
  display: grid;
  gap: 1.35rem;
  max-width: 38rem;
  justify-self: end;
}

.tl-who__p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.tl-who__end {
  display: grid;
  gap: 2.4rem;
  margin-top: 10vh;
  align-items: center;
}

.tl-who__closer {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  line-height: 1.18;
  color: var(--ink);
}

.tl-build {
  width: min(100%, 30rem);
  justify-self: start;
  display: grid;
  gap: 0.7rem;
}

.tl-build__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.3rem;
}

.tl-build__steps li {
  display: grid;
  gap: 0.12rem;
  padding: 0.4rem 0.35rem;
  border-top: 2px solid var(--line);
  color: var(--ink-faint);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.tl-build__steps li span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.tl-build__steps li b {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.02em;
}

.tl-build__steps li small {
  display: none;
}

.tl-build__steps li.is-on {
  border-top-color: var(--lime);
  color: var(--ink);
  background: rgba(200, 255, 61, 0.05);
}

.tl-build__steps li.is-done {
  border-top-color: rgba(200, 255, 61, 0.4);
  color: var(--ink-dim);
}

.tl-build__win {
  position: relative;
  background: #101010;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.tl-build__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
}

.tl-build__bar > i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #3a3a3a;
}

.tl-build__bar > i:nth-child(1) { background: #ff5f57; }
.tl-build__bar > i:nth-child(2) { background: #febc2e; }
.tl-build__bar > i:nth-child(3) { background: #28c840; }

.tl-build__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.45rem;
  min-width: 0;
  padding: 0.22rem 0.55rem;
  background: #161616;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

.tl-build__url b {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 1px solid var(--ink-faint);
  flex: none;
}

.tl-build__url span {
  white-space: nowrap;
  overflow: hidden;
}

.tl-build__page {
  position: relative;
  padding: 0.7rem 0.75rem 0.85rem;
  min-height: 13.8rem;
  background: #0c0c0c;
  overflow: hidden;
}

.tl-build__guides {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tl-build__guides i,
.tl-build__guides em {
  position: absolute;
  background: rgba(200, 255, 61, 0.1);
}

.tl-build__guides i {
  top: 0;
  bottom: 0;
  width: 1px;
}

.tl-build__guides i:nth-child(1) { left: 18%; }
.tl-build__guides i:nth-child(2) { left: 38%; }
.tl-build__guides i:nth-child(3) { left: 62%; }
.tl-build__guides i:nth-child(4) { left: 82%; }

.tl-build__guides em {
  left: 0;
  right: 0;
  height: 1px;
}

.tl-build__guides em:nth-child(5) { top: 22%; }
.tl-build__guides em:nth-child(6) { top: 48%; }
.tl-build__guides em:nth-child(7) { top: 76%; }

.tl-build__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: 0;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(200, 255, 61, 0.45);
}

.tl-build__nav,
.tl-build__hero,
.tl-build__grid,
.tl-build__foot {
  position: relative;
  z-index: 1;
}

.tl-build__nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  min-height: 1.1rem;
}

.tl-build__nav strong {
  width: 1.35rem;
  height: 0.55rem;
  background: var(--ink-faint);
}

.tl-build__nav span {
  width: 1.7rem;
  height: 0.28rem;
  background: var(--ink-faint);
}

.tl-build__hero {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.tl-build__hero em {
  display: block;
  height: 0.42rem;
  width: 58%;
  background: var(--ink-faint);
  font-style: normal;
}

.tl-build__hero em:nth-child(2) {
  width: 38%;
  height: 0.28rem;
}

.tl-build__shot {
  height: 4.4rem;
  margin-top: 0.15rem;
  background: transparent;
  border: 1px dashed var(--ink-faint);
  overflow: hidden;
  position: relative;
}

.tl-build__shot b {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 20%, rgba(200, 255, 61, 0.22) 46%, transparent 70%),
    linear-gradient(180deg, #1a1f0c 0%, #111 70%);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.tl-build__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.tl-build__grid article {
  display: grid;
  gap: 0.28rem;
  padding: 0.35rem;
  border: 1px dashed var(--ink-faint);
  background: transparent;
  min-height: 2.4rem;
}

.tl-build__grid i {
  display: block;
  height: 1.55rem;
  background: rgba(243, 239, 228, 0.06);
}

.tl-build__grid b {
  display: block;
  height: 0.22rem;
  width: 70%;
  background: var(--ink-faint);
}

.tl-build__foot {
  height: 0.22rem;
  margin-top: 0.65rem;
  background: var(--ink-faint);
}

.tl-build__page.is-empty [data-build-el] {
  opacity: 0;
}

.tl-build__page.is-wire [data-build-el] {
  opacity: 1;
}

.tl-build__page.is-wire .tl-build__nav strong,
.tl-build__page.is-wire .tl-build__nav span,
.tl-build__page.is-wire .tl-build__hero em,
.tl-build__page.is-wire .tl-build__grid i,
.tl-build__page.is-wire .tl-build__grid b,
.tl-build__page.is-wire .tl-build__shot b {
  opacity: 0;
}

.tl-build__page.is-wire .tl-build__nav,
.tl-build__page.is-wire .tl-build__hero,
.tl-build__page.is-wire .tl-build__grid article,
.tl-build__page.is-wire .tl-build__shot,
.tl-build__page.is-wire .tl-build__foot {
  outline: 1px dashed rgba(243, 239, 228, 0.28);
  outline-offset: 1px;
}

.tl-build__page.is-content .tl-build__nav strong,
.tl-build__page.is-content .tl-build__nav span,
.tl-build__page.is-content .tl-build__hero em,
.tl-build__page.is-content .tl-build__grid i,
.tl-build__page.is-content .tl-build__grid b {
  opacity: 1;
}

.tl-build__page.is-skin {
  background:
    linear-gradient(180deg, rgba(200, 255, 61, 0.05), transparent 42%),
    #0c0c0c;
}

.tl-build__page.is-skin .tl-build__nav strong {
  background: var(--lime);
}

.tl-build__page.is-skin .tl-build__hero em:first-child {
  background: var(--ink);
}

.tl-build__page.is-skin .tl-build__hero em:nth-child(2) {
  background: var(--ink-dim);
}

.tl-build__page.is-skin .tl-build__shot {
  border-style: solid;
  border-color: var(--line);
}

.tl-build__page.is-skin .tl-build__grid article {
  border-style: solid;
  border-color: var(--line);
  background: #121212;
}

.tl-build__page.is-skin .tl-build__grid i {
  background: rgba(200, 255, 61, 0.12);
}

.tl-build__page.is-skin .tl-build__foot {
  background: var(--line-strong);
}

.tl-build__page.is-live .tl-build__guides {
  opacity: 0;
}

.tl-build__term {
  margin: 0;
  padding: 0.4rem 0.7rem;
  min-height: 1.7rem;
  border-top: 1px solid var(--line);
  background: #080808;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.4;
  color: var(--lime);
  white-space: nowrap;
  overflow: hidden;
}

.tl-build__cursor {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-left: 2px solid var(--lime);
  border-top: 2px solid var(--lime);
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 0 6px rgba(200, 255, 61, 0.45));
}

.tl-build__live {
  position: absolute;
  top: 2.55rem;
  right: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-ink);
  background: var(--lime);
  padding: 0.12rem 0.35rem;
  z-index: 4;
}

.tl-build__cap {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.tl-process {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 40%, var(--bg) 100%);
}

.tl-process__pin {
  min-height: 100svh;
  padding: 12vh var(--pad) 8vh;
}

.tl-process__head {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 8vh;
  max-width: 42rem;
}

.tl-process__title {
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
}

.tl-process__title em {
  font-style: normal;
  color: var(--lime);
}

.tl-process__grid {
  display: grid;
  gap: 3rem;
}

.tl-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.tl-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  opacity: 0.28;
  transform: translateX(-8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.tl-process__step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.tl-process__step p {
  color: var(--ink-dim);
  font-size: 0.98rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), max-height 0.4s var(--ease);
}

.tl-process__n {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--lime);
  padding-top: 0.4rem;
}

.tl-process__step.is-active {
  opacity: 1;
  transform: none;
}

.tl-process__step.is-active p {
  max-height: 9rem;
  opacity: 1;
  transform: none;
}

.tl-process__stage {
  border: 1px solid var(--line);
  background: #090909;
  padding: 1.1rem 1.1rem 1.2rem;
  min-width: 0;
}

.tl-process__stage-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.85rem;
}

.tl-process__stage pre {
  margin: 0;
  overflow: auto;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  line-height: 1.7;
  color: var(--lime);
}

.tl-code-line {
  display: block;
  white-space: pre-wrap;
}

.tl-process__vitals {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1.1rem 0 0;
  padding: 0;
}

.tl-process__vitals li {
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
  display: grid;
  gap: 0.15rem;
}

.tl-process__vitals strong {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}

.tl-process__vitals span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.tl-cases__pin {
  min-height: 100svh;
  padding: 10vh var(--pad) 8vh;
}

.tl-cases__head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
  max-width: 42rem;
}

.tl-cases__title {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
}

.tl-cases__title em {
  font-style: normal;
  color: var(--ink-dim);
}

.tl-cases__stage {
  display: grid;
  gap: 1.5rem;
}

.tl-cases__nav {
  display: grid;
  gap: 0.45rem;
}

.tl-cases__hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-faint);
}

.tl-cases__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tl-cases__ticks button {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.45rem 0.7rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.tl-cases__ticks button span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--lime);
}

.tl-cases__ticks button:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

.tl-cases__ticks button.is-on {
  border-color: var(--lime);
  color: var(--ink);
  background: rgba(200, 255, 61, 0.08);
}

.tl-cases__scenes {
  position: relative;
}

.tl-cases__scene {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
}

.tl-cases__scene-main {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.tl-cases__scene h3 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
}

.tl-cases__kind {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
}

.tl-cases__split {
  display: grid;
  gap: 1rem;
}

.tl-cases__challenge {
  font-size: 1rem;
  line-height: 1.55;
}

.tl-cases__challenge::before,
.tl-cases__solution::before {
  display: block;
  margin-bottom: 0.28rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  content: attr(data-label);
}

.tl-cases__challenge::before {
  color: var(--lime);
}

.tl-cases__solution {
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.tl-cases__solution::before {
  color: var(--ink-faint);
}

.tl-cases__metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0.2rem 0 0;
  padding: 0;
}

.tl-cases__metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  letter-spacing: -0.04em;
}

.tl-cases__metrics em {
  font-style: normal;
  color: var(--lime);
}

.tl-cases__metrics span {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-dim);
  font-size: 0.78rem;
}

.tl-cases__link {
  justify-self: start;
  margin-top: 0.15rem;
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}

.tl-cases__link:hover {
  text-decoration: underline;
}

.tl-cases__name {
  color: inherit;
  text-decoration: none;
}

.tl-cases__name:hover {
  color: var(--lime);
}

.tl-cases__visual {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 1.15rem 1.2rem;
  min-height: 12rem;
  display: grid;
  place-content: center;
}

.tl-cases__scene.is-on .tl-cases__visual {
  animation: scene-visual 0.7s var(--ease);
}

@keyframes scene-visual {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tl-visual-tickets {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 20rem);
}

.tl-visual-tickets div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "id status" "id note";
  column-gap: 0.7rem;
  row-gap: 0.1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.7);
  font-family: var(--font-mono);
}

.tl-visual-tickets em {
  grid-area: id;
  font-style: normal;
  color: var(--lime);
  font-size: 0.72rem;
  align-self: center;
}

.tl-visual-tickets b {
  grid-area: status;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--ink);
}

.tl-visual-tickets small {
  grid-area: note;
  color: var(--ink-dim);
  font-size: 0.68rem;
}

.tl-visual-tickets .is-run {
  border-color: rgba(200, 255, 61, 0.45);
}

.tl-visual-tickets .is-ok b {
  color: var(--lime);
}

.tl-visual-tickets div:nth-child(2) {
  animation: ticket-pulse 2.4s var(--ease) infinite;
}

@keyframes ticket-pulse {
  50% {
    background: rgba(200, 255, 61, 0.08);
  }
}

.tl-visual-vendors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  width: min(100%, 16rem);
}

.tl-visual-vendors span {
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  background: rgba(200, 255, 61, 0.04);
  animation: pulse 2.4s var(--ease) infinite;
}

.tl-visual-lessons {
  display: grid;
  gap: 0.7rem;
  max-width: 18rem;
}

.tl-visual-lessons small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tl-visual-lessons b {
  display: block;
  height: 4px;
  margin-top: 0.3rem;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform-origin: 0 50%;
  animation: grow 2s var(--ease) infinite;
}

.tl-visual-speed {
  position: relative;
  height: 4.5rem;
  max-width: 18rem;
}

.tl-visual-speed i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--lime);
  opacity: 0.5;
  animation: dash 1.4s linear infinite;
}

.tl-visual-speed i:nth-child(1) {
  top: 30%;
}
.tl-visual-speed i:nth-child(2) {
  top: 50%;
  animation-delay: 0.2s;
  opacity: 0.8;
}
.tl-visual-speed i:nth-child(3) {
  top: 70%;
  animation-delay: 0.35s;
}

.tl-visual-speed span {
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--lime);
}

.tl-visual-magazine {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.45rem;
  width: min(100%, 16rem);
  min-height: 10rem;
}

.tl-visual-magazine div {
  display: grid;
  align-content: end;
  gap: 0.2rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: #101010;
}

.tl-visual-magazine .is-cover {
  grid-row: 1 / 3;
  background:
    linear-gradient(180deg, rgba(200, 255, 61, 0.16), transparent 55%),
    #14180a;
  border-color: rgba(200, 255, 61, 0.35);
}

.tl-visual-magazine small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tl-visual-magazine b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.tl-visual-magazine .is-cover b {
  font-size: 2.2rem;
  color: var(--lime);
}

@keyframes pulse {
  50% {
    background: rgba(200, 255, 61, 0.18);
  }
}

@keyframes grow {
  0% {
    transform: scaleX(0.2);
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.55);
  }
}

@keyframes dash {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(40%);
  }
}

.tl-proof {
  padding: 16vh 0 10vh;
  overflow: hidden;
}

.tl-proof .kicker,
.tl-proof__lead {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.tl-proof__lead {
  max-width: 34rem;
  margin: 1.2rem 0 6vh;
}

.tl-proof__stats {
  list-style: none;
  margin: 0;
  padding: 2.4rem var(--pad);
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tl-proof__stats strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lime);
}

.tl-proof__stats span {
  display: block;
  max-width: 16ch;
  color: var(--ink-dim);
  margin-top: 0.4rem;
}

.tl-proof__thread {
  display: grid;
  gap: 2rem;
  margin: 10vh var(--pad) 8vh;
  align-items: center;
}

.tl-chat {
  border: 1px solid var(--line);
  background: #0a0a0a;
  max-width: 22rem;
}

.tl-chat__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.tl-chat__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--lime);
  border: 1px solid rgba(200, 255, 61, 0.35);
  flex: none;
}

.tl-chat__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.tl-chat__dot {
  animation: chat-dot 1.2s ease-in-out infinite;
}

.tl-chat__dot:nth-child(2) {
  animation-delay: 0.15s;
}

.tl-chat__dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-dot {
  0%,
  80%,
  100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}

.tl-chat__bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tl-chat__bar small {
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.tl-chat__log {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
}

.tl-bubble {
  justify-self: start;
  max-width: 92%;
  padding: 0.65rem 0.8rem;
  background: #141414;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-dim);
  animation: bubble-in 0.6s var(--ease) both;
}

.tl-bubble:nth-child(2) {
  animation-delay: 0.25s;
}

.tl-bubble:nth-child(3) {
  animation-delay: 0.5s;
}

.tl-bubble span {
  display: block;
  margin-bottom: 0.22rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
}

.tl-bubble.is-live {
  border-color: rgba(200, 255, 61, 0.4);
  color: var(--ink);
}

.tl-typing {
  display: inline-flex;
  gap: 0.22rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.tl-typing b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  animation: chat-dot 1.1s ease-in-out infinite;
}

.tl-typing b:nth-child(2) {
  animation-delay: 0.15s;
}

.tl-typing b:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tl-proof__quote {
  margin: 0;
  max-width: 38rem;
}

.tl-proof__quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.tl-proof__quote footer {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tl-proof__marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tl-proof__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  padding: 1.15rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink-faint);
}

.tl-proof__track span:nth-child(odd) {
  color: var(--lime);
  opacity: 0.55;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tl-contact {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 12vh var(--pad) 2rem;
  overflow: hidden;
  perspective: 980px;
}

.tl-contact__glow {
  position: absolute;
  right: -12%;
  top: 18%;
  width: min(42rem, 70vw);
  height: min(42rem, 70vw);
  background: radial-gradient(circle, rgba(200, 255, 61, 0.12), transparent 64%);
  pointer-events: none;
  z-index: 0;
}

.tl-contact__copy,
.tl-contact__panel,
.tl-foot {
  position: relative;
  z-index: 1;
}

.tl-contact__copy {
  display: grid;
  gap: 1.1rem;
  max-width: 40rem;
}

.tl-contact__title {
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
  max-width: 14ch;
  line-height: 1.05;
}

.tl-contact__bullets {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--ink-dim);
}

.tl-contact__bullets li {
  padding-left: 1.15rem;
  position: relative;
}

.tl-contact__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lime);
}

.tl-whats {
  justify-self: start;
  margin-top: 0.45rem;
  background: var(--lime);
  color: var(--lime-ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.95rem 1.35rem;
}

.tl-contact__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

.tl-contact__meta a {
  color: var(--ink);
}

.tl-contact__panel {
  background: var(--bg-3);
  border: 1px solid var(--line);
  min-height: 0;
  overflow: hidden;
}

.tl-contact__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.tl-contact__chrome i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ink-faint);
}

.tl-contact__chrome i:first-child {
  background: #ff5f57;
}

.tl-contact__chrome i:nth-child(2) {
  background: #febc2e;
}

.tl-contact__chrome i:nth-child(3) {
  background: #28c840;
}

.tl-contact__chrome span {
  margin-left: 0.45rem;
  color: var(--ink-dim);
}

.tl-form {
  display: grid;
  gap: 1.15rem;
  padding: 1.25rem 1.2rem 1.4rem;
}

.tl-form__row {
  display: grid;
  gap: 1rem;
}

.tl-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tl-form input,
.tl-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.6rem 0;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  width: 100%;
  resize: vertical;
}

.tl-form input:focus,
.tl-form textarea:focus {
  border-color: var(--lime);
}

.tl-form button {
  margin-top: 0.35rem;
  justify-self: start;
  border: 0;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 700;
  padding: 0.95rem 1.35rem;
}

.tl-form-ok {
  min-height: 16rem;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  color: var(--ink-dim);
  padding: 2rem 1.2rem;
}

.tl-ok-mark {
  width: 4.2rem;
  height: 4.2rem;
  color: var(--lime);
}

.tl-ok-mark path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: draw 0.7s var(--ease) forwards 0.15s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.tl-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.tl-foot a {
  color: var(--ink-dim);
  text-decoration: none;
}

.tl-foot a:hover {
  color: var(--lime);
}

.tl-404 {
  min-height: 80svh;
  display: grid;
  align-content: center;
  gap: 1.2rem;
  padding: 20vh var(--pad);
}

.tl-404 h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
}

@media (min-width: 800px) {
  .tl-proof__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
  }
}

@media (min-width: 900px) {
  .tl-proof__thread {
    grid-template-columns: minmax(16rem, 0.85fr) 1.15fr;
    column-gap: 4.5vw;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .tl-hero__bottom {
    grid-template-columns: 1fr 1.1fr;
    align-items: end;
    gap: 4rem;
  }

  .tl-hero__float {
    display: none;
  }

  .tl-who__layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 4vw;
  }

  .tl-who__years {
    position: sticky;
    top: calc(var(--bar) + 1.5rem);
  }

  .tl-who__copy {
    padding-top: 18vh;
  }

  .tl-who__end {
    grid-template-columns: minmax(16rem, 0.95fr) minmax(18rem, 1fr);
    gap: 4vw;
    align-items: center;
  }

  .tl-who__closer {
    margin: 0;
    text-align: left;
  }

  .tl-build {
    justify-self: end;
    width: min(100%, 32rem);
  }

  .tl-build__steps li small {
    display: block;
    font-size: 0.52rem;
    letter-spacing: 0.01em;
    color: var(--ink-faint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tl-process__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4vw;
    align-items: start;
  }

  .tl-process__stage {
    position: sticky;
    top: calc(var(--bar) + 1.25rem);
  }

  .tl-process__step p {
    max-width: 42ch;
  }

  .tl-cases__pin {
    height: 100svh;
    min-height: 100svh;
    padding: calc(var(--bar) + 1.4rem) var(--pad) 1.6rem;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1.25rem;
    box-sizing: border-box;
  }

  .tl-cases__head {
    margin-bottom: 0;
    max-width: 42rem;
  }

  .tl-cases__stage {
    grid-template-columns: minmax(11.5rem, 16.5rem) 1fr;
    gap: 2.5vw;
    min-height: 0;
    align-items: stretch;
  }

  .tl-cases__ticks {
    display: grid;
    gap: 0;
    align-content: start;
  }

  .tl-cases__ticks button {
    display: grid;
    grid-template-columns: 2rem 1fr;
    width: 100%;
    text-align: left;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    padding: 0.8rem 0.85rem;
    background: transparent;
  }

  .tl-cases__ticks button.is-on {
    border-left-color: var(--lime);
    background: rgba(200, 255, 61, 0.06);
    color: var(--ink);
  }

  .tl-cases__scenes {
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }

  .tl-cases__scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(28px);
    clip-path: inset(8% 0 8% 0);
    transition: opacity 0.5s var(--ease), transform 0.55s var(--ease), visibility 0.5s, clip-path 0.55s var(--ease);
    border-top: 0;
    padding: 0;
    grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.8fr);
    gap: 2.2rem;
    align-items: stretch;
  }

  .tl-cases__scene.is-on {
    opacity: 1;
    visibility: visible;
    transform: none;
    clip-path: inset(0 0 0 0);
  }

  .tl-cases__visual {
    min-height: 0;
    height: 100%;
  }
}

@media (min-width: 720px) {
  .tl-cases__split {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1.8rem;
  }

  .tl-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}

@media (min-width: 960px) {
  .tl-contact {
    min-height: calc(100svh - var(--status));
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "copy panel"
      "foot foot";
    column-gap: 5.5vw;
    row-gap: 2.5rem;
    align-content: center;
    align-items: start;
    padding-top: calc(var(--bar) + 6vh);
  }

  .tl-contact__copy {
    grid-area: copy;
    max-width: none;
  }

  .tl-contact__panel {
    grid-area: panel;
    align-self: stretch;
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .tl-foot {
    grid-area: foot;
  }
}

@media (min-width: 1100px) {
  .tl-bar {
    grid-template-columns: auto 1fr auto auto;
  }

  .tl-bar__nav {
    display: flex;
    justify-content: center;
    gap: 1.15rem;
  }

  .tl-bar__cta {
    display: inline-flex;
  }

  .tl-bar__toggle,
  .tl-menu {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .tl-cases__scenes {
    display: grid;
    gap: 4.5rem;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .progress {
    display: none;
  }

  .tl-hero__cue span {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .tl-process__step,
  .tl-process__step p {
    opacity: 1;
    transform: none;
    max-height: none;
  }

  .tl-cases__scene {
    opacity: 1;
    visibility: visible;
    transform: none;
    position: relative;
    clip-path: none;
  }

  .tl-build [data-build-el],
  .tl-build__shot b,
  .tl-build__grid article,
  .tl-build__live,
  .tl-build__win,
  .tl-build__guides i,
  .tl-build__guides em {
    opacity: 1 !important;
    transform: none !important;
  }

  .tl-build__cursor,
  .tl-build__scan,
  .tl-build__guides {
    display: none;
  }

  .tl-build__page {
    background:
      linear-gradient(180deg, rgba(200, 255, 61, 0.05), transparent 42%),
      #0c0c0c;
  }

  .tl-proof__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .tl-visual-tickets div:nth-child(2) {
    animation: none;
  }

  .tl-hero__video {
    display: none;
  }

  .tl-boot,
  .tl-pointer,
  .tl-caret {
    display: none !important;
  }
}

.tl-boot {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #050505;
  display: grid;
  align-content: center;
  padding: var(--pad);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--lime);
}

.tl-boot.is-done {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.tl-boot__prompt {
  color: var(--ink-dim);
  margin-bottom: 0.4rem;
}

.tl-boot__prompt span {
  color: var(--lime);
}

.tl-boot__log {
  margin: 0;
  min-height: 5.5rem;
  white-space: pre-wrap;
}

.tl-pointer {
  position: fixed;
  z-index: 90;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border: 1px solid var(--lime);
  background: rgba(200, 255, 61, 0.15);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(-100px, -100px, 0);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), background 0.25s var(--ease);
}

.tl-pointer.is-hot {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  background: rgba(200, 255, 61, 0.08);
}

@media (pointer: coarse) {
  .tl-pointer {
    display: none;
  }
}

.tl-status {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  height: var(--status);
  padding: 0 var(--pad);
  background: #111;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

.tl-status__ok {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-ok 2.2s ease-in-out infinite;
}

@keyframes pulse-ok {
  50% {
    opacity: 0.35;
  }
}

.tl-status [data-status-file] {
  color: var(--lime);
}

.tl-term {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  max-width: 28rem;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(8px);
  animation: term-float 7s ease-in-out infinite;
}

@keyframes term-float {
  50% {
    transform: translateY(-8px);
  }
}

.tl-term__bar,
.tl-ide__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-dim);
}

.tl-term__bar i,
.tl-ide__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
}

.tl-term__bar i:nth-child(1) {
  background: #ff5f57;
}
.tl-term__bar i:nth-child(2) {
  background: #febc2e;
}
.tl-term__bar i:nth-child(3) {
  background: #28c840;
}

.tl-ide__bar i:nth-child(1) {
  background: #ff5f57;
}
.tl-ide__bar i:nth-child(2) {
  background: #febc2e;
}
.tl-ide__bar i:nth-child(3) {
  background: #28c840;
}

.tl-ide__bar {
  justify-content: flex-start;
}

.tl-ide__bar em {
  margin-left: auto;
  font-style: normal;
  color: var(--ink-faint);
}

.tl-term__body {
  min-height: 7.5rem;
  padding: 0.75rem 0.8rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--ink);
}

.tl-term__body .cmd {
  color: var(--lime);
}

.tl-term__body .out {
  color: var(--ink-dim);
  display: block;
  margin: 0.15rem 0 0.7rem;
}

.tl-caret {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 1px;
  background: var(--lime);
  vertical-align: -0.12em;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.tl-git {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  max-width: 22rem;
}

.tl-git li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.55rem;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-dim);
  letter-spacing: 0;
}

.tl-git span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-dim);
  line-height: 1.45;
}

.tl-git code {
  color: var(--lime);
  font-size: 0.68rem;
}

.tl-git li:last-child {
  color: var(--ink);
}

.tl-git li:last-child code {
  position: relative;
}

.tl-git li:last-child code::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-ok 2.2s ease-in-out infinite;
  vertical-align: 1px;
}

.tl-ide__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem 0.4rem;
}

.tl-ide__gutter {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  line-height: 1.7;
  color: var(--ink-faint);
  text-align: right;
  user-select: none;
}

.tl-process__stage pre {
  margin: 0;
}

.tl-process__stage-label {
  display: none;
}

.tl-hero__title .tl-letter {
  color: inherit;
}

.tl-whats,
.tl-bar__cta,
.tl-form button {
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.tl-whats:hover,
.tl-bar__cta:hover,
.tl-form button:hover {
  filter: brightness(1.08);
}

@media (min-width: 900px) {
  .tl-hero__float {
    display: none;
  }

  .tl-term {
    position: absolute;
    right: var(--pad);
    top: 26%;
    width: min(24rem, 34vw);
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tl-status__ok {
    animation: none;
  }
}

