:root {
  --tp-bg: #050607;
  --tp-bg-2: #0a0b0d;
  --tp-panel: #101114;
  --tp-panel-2: #17181b;
  --tp-line: rgba(255, 255, 255, 0.105);
  --tp-line-soft: rgba(255, 255, 255, 0.065);
  --tp-text: #f4f3ec;
  --tp-muted: rgba(244, 243, 236, 0.62);
  --tp-dim: rgba(244, 243, 236, 0.38);
  --tp-green: #25d082;
  --tp-cyan: #34c7d8;
  --tp-amber: #ece829;
  --tp-orange: #f4a261;
  --tp-red: #f06d5f;
}

html {
  background: var(--tp-bg);
}

body {
  background: var(--tp-bg);
  color: var(--tp-text);
}

.admin-bar .tp-site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .tp-site-header {
    top: 46px;
  }
}

.tp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.tp-header-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.tp-header-logo {
  display: block;
  width: 206px;
  max-width: 58vw;
  height: auto;
}

.tp-footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.tp-footer-logo {
  display: block;
  width: 196px;
  max-width: 64vw;
  height: auto;
}

.tp-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, auto) minmax(130px, auto) minmax(170px, auto);
  gap: 46px;
  align-items: start;
  padding-block: 42px;
}

.tp-footer-trust {
  margin-top: 16px;
  color: rgba(244, 243, 236, 0.42);
  font-size: 12px;
}

.tp-footer-column {
  display: grid;
  gap: 9px;
  justify-items: start;
  color: rgba(244, 243, 236, 0.48);
  font-size: 13px;
}

.tp-footer-column p {
  margin: 0 0 4px;
  color: rgba(244, 243, 236, 0.82);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-footer-column a {
  color: rgba(244, 243, 236, 0.56);
  transition: color 160ms ease;
}

.tp-footer-column a:hover {
  color: var(--tp-text);
}

.tp-footer-column a.tp-footer-email {
  color: rgba(244, 243, 236, 0.78);
}

.tp-footer-column a.tp-footer-email:hover {
  color: var(--tp-green);
}

.tp-footer-column span {
  max-width: 210px;
  color: rgba(244, 243, 236, 0.38);
  font-size: 12px;
  line-height: 1.55;
}

.tp-container {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.tp-dark-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(99, 73, 139, 0.28), transparent 23rem),
    radial-gradient(circle at 4% 18%, rgba(37, 208, 130, 0.12), transparent 24rem),
    linear-gradient(180deg, #050607 0%, #050607 55%, #0a0b0d 100%);
}

.tp-dark-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 34rem);
}

.tp-hero-section,
.tp-section,
.tp-final-cta {
  position: relative;
}

.tp-hero-section {
  border-bottom: 1px solid var(--tp-line);
  padding: 44px 0 34px;
}

.tp-hero-copy {
  max-width: 960px;
}

.tp-eyebrow,
.tp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--tp-dim);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--tp-green);
  box-shadow: 0 0 18px rgba(37, 208, 130, 0.9);
}

.tp-hero-copy h1 {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--tp-text);
  font-size: clamp(38px, 4.4vw, 52px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
}

.tp-hero-copy > p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--tp-muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}

.tp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tp-hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 12px;
  margin-top: 24px;
}

.tp-hero-flow,
.tp-boundary-note {
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.tp-hero-flow {
  padding: 14px;
}

.tp-hero-flow > p,
.tp-boundary-note > p {
  margin: 0;
  color: var(--tp-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-hero-flow ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: hero-flow;
}

.tp-hero-flow li {
  position: relative;
  min-height: 54px;
  border: 1px solid var(--tp-line-soft);
  border-radius: 7px;
  padding: 12px 11px 11px;
  color: var(--tp-text);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.25;
  background: rgba(5, 6, 7, 0.44);
  counter-increment: hero-flow;
}

.tp-hero-flow li::before {
  content: "0" counter(hero-flow);
  display: block;
  margin-bottom: 6px;
  color: var(--tp-green);
  font-size: 10px;
  font-weight: 700;
}

.tp-hero-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(244, 243, 236, 0.28);
}

.tp-boundary-note {
  padding: 16px;
}

.tp-boundary-note strong {
  display: block;
  margin-top: 10px;
  color: var(--tp-text);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.22;
}

.tp-boundary-note span {
  display: block;
  margin-top: 9px;
  color: var(--tp-muted);
  font-size: 12px;
  line-height: 1.5;
}

.tp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.tp-button:hover {
  transform: translateY(-1px);
}

.tp-button-primary {
  border: 1px solid rgba(244, 243, 236, 0.92);
  background: var(--tp-text);
  color: #050607;
}

.tp-button-secondary {
  border: 1px solid var(--tp-line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--tp-text);
}

.tp-product-hero {
  position: relative;
  margin-top: 24px;
  padding: 1px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 50% 0%, rgba(37, 208, 130, 0.2), transparent 26rem);
  box-shadow: 0 52px 120px rgba(0, 0, 0, 0.62);
}

.tp-pulse-field {
  position: absolute;
  inset: -80px 0 auto;
  height: 380px;
  overflow: hidden;
  pointer-events: none;
}

.tp-pulse-field span {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(37, 208, 130, 0.28);
  border-radius: 999px;
  opacity: 0;
  animation: tp-dark-pulse 6s cubic-bezier(0.18, 0.84, 0.28, 1) infinite;
}

.tp-pulse-field span:nth-child(2) {
  border-color: rgba(52, 199, 216, 0.24);
  animation-delay: 1.6s;
}

.tp-pulse-field span:nth-child(3) {
  border-color: rgba(236, 232, 41, 0.16);
  animation-delay: 3.2s;
}

@keyframes tp-dark-pulse {
  0% {
    width: 160px;
    height: 160px;
    opacity: 0.78;
  }
  74% {
    width: 1050px;
    height: 1050px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.tp-app-window {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 40%, rgba(37, 208, 130, 0.11), transparent 18rem),
    linear-gradient(180deg, #101114, #08090b);
}

.tp-app-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.tp-window-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 42px;
  border-bottom: 1px solid var(--tp-line);
  padding: 0 14px;
  background: rgba(5, 6, 7, 0.64);
}

.tp-window-dots {
  display: flex;
  gap: 6px;
}

.tp-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(244, 243, 236, 0.28);
}

.tp-command-pill {
  justify-self: center;
  max-width: 420px;
  width: 100%;
  border: 1px solid var(--tp-line-soft);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--tp-dim);
  font-size: 11px;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
}

.tp-run-status {
  border: 1px solid rgba(236, 232, 41, 0.24);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--tp-amber);
  font-size: 11px;
  font-weight: 650;
  background: rgba(236, 232, 41, 0.075);
}

.tp-app-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 260px;
  min-height: 278px;
}

.tp-app-sidebar,
.tp-inspector {
  border-right: 1px solid var(--tp-line-soft);
  background: rgba(5, 6, 7, 0.52);
  padding: 18px;
}

.tp-inspector {
  border-right: 0;
  border-left: 1px solid var(--tp-line-soft);
}

.tp-sidebar-title {
  margin: 0 0 14px;
  color: var(--tp-dim);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tp-app-sidebar ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-app-sidebar li {
  border-radius: 5px;
  padding: 8px 9px;
  color: var(--tp-muted);
  font-size: 12px;
}

.tp-app-sidebar li.is-active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--tp-text);
}

.tp-flow-canvas {
  position: relative;
  min-width: 0;
  padding: 22px;
}

.tp-flow-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.tp-flow-header p {
  margin: 0;
  color: var(--tp-dim);
  font-size: 11px;
  text-transform: uppercase;
}

.tp-flow-header h2 {
  margin: 7px 0 0;
  color: var(--tp-text);
  font-size: 17px;
  font-weight: 560;
}

.tp-flow-header > span {
  height: fit-content;
  border: 1px solid rgba(37, 208, 130, 0.24);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--tp-green);
  font-size: 11px;
  background: rgba(37, 208, 130, 0.08);
}

.tp-flow-map {
  position: relative;
  height: 188px;
}

.tp-flow-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 243, 236, 0.24), transparent);
}

.line-one {
  left: 14%;
  top: 45%;
  width: 70%;
  transform: rotate(6deg);
}

.line-two {
  left: 28%;
  top: 62%;
  width: 46%;
  transform: rotate(-16deg);
}

.tp-flow-node {
  position: absolute;
  width: 150px;
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  padding: 13px 14px 14px;
  background: rgba(16, 17, 20, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.tp-flow-node span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tp-green);
  box-shadow: 0 0 0 5px rgba(37, 208, 130, 0.12);
}

.tp-flow-node small {
  display: block;
  padding-left: 19px;
  color: var(--tp-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-flow-node strong {
  display: block;
  margin-top: 10px;
  color: var(--tp-text);
  font-size: 13px;
}

.node-trigger {
  top: 24px;
  left: 2%;
}

.node-ai {
  top: 78px;
  left: 34%;
}

.node-ai span {
  background: var(--tp-cyan);
  box-shadow: 0 0 0 5px rgba(52, 199, 216, 0.13);
}

.node-condition {
  top: 28px;
  right: 2%;
}

.node-condition span {
  background: var(--tp-orange);
  box-shadow: 0 0 0 5px rgba(244, 162, 97, 0.13);
}

.node-approval {
  bottom: 0;
  left: 18%;
}

.node-approval span {
  background: var(--tp-amber);
  box-shadow: 0 0 0 5px rgba(236, 232, 41, 0.11);
}

.node-action {
  bottom: 4px;
  right: 9%;
}

.node-action span {
  background: var(--tp-red);
  box-shadow: 0 0 0 5px rgba(240, 109, 95, 0.12);
}

.tp-inspector-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--tp-line-soft);
  padding: 11px 0;
  font-size: 12px;
}

.tp-inspector-row span {
  color: var(--tp-dim);
}

.tp-inspector-row strong {
  color: var(--tp-text);
  font-weight: 560;
}

.tp-equalizer {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  align-items: end;
  gap: 3px;
  height: 42px;
  margin-top: 18px;
}

.tp-equalizer span {
  display: block;
  min-height: 5px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--tp-green), var(--tp-cyan));
  animation: tp-bar 1.8s ease-in-out infinite;
}

.tp-equalizer span:nth-child(3n) {
  animation-delay: 0.2s;
}

.tp-equalizer span:nth-child(4n) {
  animation-delay: 0.45s;
}

.tp-equalizer span:nth-child(5n) {
  animation-delay: 0.7s;
}

@keyframes tp-bar {
  0%, 100% {
    height: 32%;
  }
  50% {
    height: 100%;
  }
}

.tp-logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 28px 0 0;
  color: var(--tp-dim);
  font-size: 12px;
}

.tp-logo-strip span {
  text-align: center;
}

.tp-section {
  padding: 92px 0;
  border-bottom: 1px solid var(--tp-line);
}

.tp-hero-video {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.tp-hero-video-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: end;
  justify-content: space-between;
}

.tp-hero-video-copy > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--tp-muted);
  font-size: 14px;
  line-height: 1.55;
}

.tp-demo-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 243, 236, 0.14);
  border-radius: 8px;
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(37, 208, 130, 0.42), rgba(244, 243, 236, 0.14) 34%, rgba(43, 199, 217, 0.28)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(37, 208, 130, 0.08);
}

.tp-demo-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  background: #020303;
  object-fit: cover;
}

.tp-section-intro {
  padding-top: 80px;
}

.tp-playbooks-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 208, 130, 0.11), transparent 20rem),
    #070809;
}

.tp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.tp-intro-grid h2,
.tp-showcase-copy h2,
.tp-final-cta h1,
.tp-final-cta h2 {
  margin: 16px 0 0;
  color: var(--tp-text);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 520;
  line-height: 1.05;
}

.tp-intro-grid > p,
.tp-showcase-copy > p,
.tp-final-cta p {
  margin: 0;
  color: var(--tp-muted);
  font-size: 16px;
  line-height: 1.6;
}

.tp-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 72px;
}

.tp-principles article {
  min-height: 190px;
}

.tp-principle-visual {
  position: relative;
  width: 100%;
  max-width: 180px;
  height: 84px;
  border: 1px solid var(--tp-line-soft);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tp-principle-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, #000, transparent 92%);
}

.tp-principle-visual.is-process::after {
  content: "";
  position: absolute;
  left: 37px;
  right: 37px;
  top: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 243, 236, 0.2);
}

.tp-principle-visual span,
.tp-principle-visual strong,
.tp-principle-visual em {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.tp-principle-visual.is-process span {
  top: 33px;
  z-index: 3;
  width: 34px;
  height: 18px;
  border: 1px solid rgba(37, 208, 130, 0.74);
  background: rgba(37, 208, 130, 0.1);
}

.tp-principle-visual.is-process span:nth-child(1) {
  left: 20px;
}

.tp-principle-visual.is-process span:nth-child(2) {
  left: 73px;
  border-color: rgba(52, 199, 216, 0.62);
  background: rgba(52, 199, 216, 0.08);
}

.tp-principle-visual.is-process span:nth-child(3) {
  left: 126px;
  border-color: rgba(236, 232, 41, 0.46);
  background: rgba(236, 232, 41, 0.07);
}

.tp-principle-visual.is-control span {
  left: 22px;
  top: 33px;
  z-index: 2;
  width: 40px;
  height: 18px;
  border: 1px solid rgba(37, 208, 130, 0.6);
  background: rgba(37, 208, 130, 0.08);
}

.tp-principle-visual.is-control strong {
  left: 68px;
  top: 23px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(37, 208, 130, 0.42);
  background: rgba(5, 6, 7, 0.76);
  box-shadow: 0 0 0 6px rgba(37, 208, 130, 0.06);
}

.tp-principle-visual.is-control strong::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 9px;
  width: 11px;
  height: 17px;
  border: 2px solid rgba(37, 208, 130, 0.9);
  border-top: 0;
  border-left: 0;
  transform: rotate(42deg);
}

.tp-principle-visual.is-control em {
  right: 22px;
  top: 33px;
  z-index: 2;
  width: 40px;
  height: 18px;
  border: 1px solid rgba(244, 162, 97, 0.5);
  background: rgba(244, 162, 97, 0.075);
}

.tp-principle-visual.is-control::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 62px;
  top: 41px;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 243, 236, 0.18);
}

.tp-principle-visual.is-trace span {
  left: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 243, 236, 0.18);
}

.tp-principle-visual.is-trace span::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--tp-green);
  box-shadow: 0 0 0 5px rgba(37, 208, 130, 0.1);
}

.tp-principle-visual.is-trace span:nth-child(1) {
  top: 23px;
  width: 104px;
}

.tp-principle-visual.is-trace span:nth-child(2) {
  top: 38px;
  width: 84px;
}

.tp-principle-visual.is-trace span:nth-child(3) {
  top: 53px;
  width: 96px;
}

.tp-principle-visual.is-trace span:nth-child(4) {
  top: 68px;
  width: 66px;
}

.tp-principles h3,
.tp-case-grid h3 {
  margin: 22px 0 0;
  color: var(--tp-text);
  font-size: 15px;
  font-weight: 560;
}

.tp-principles p,
.tp-case-grid p {
  margin: 9px 0 0;
  color: var(--tp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.tp-enterprise-note {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(220px, 0.56fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  margin-top: 58px;
  border-top: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  padding: 24px 0;
}

.tp-enterprise-note p {
  margin: 0;
  color: var(--tp-green);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-enterprise-note h3 {
  margin: 0;
  color: var(--tp-text);
  font-size: 20px;
  font-weight: 560;
}

.tp-enterprise-note span {
  color: var(--tp-muted);
  font-size: 14px;
  line-height: 1.65;
}

.tp-playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--tp-line);
  background: var(--tp-line);
}

.tp-playbook-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #070809;
}

.tp-playbook-grid article p {
  margin: 0;
  color: var(--tp-green);
  font-size: 11px;
  font-weight: 650;
}

.tp-playbook-grid article h3 {
  margin: 48px 0 0;
  color: var(--tp-text);
  font-size: 21px;
  font-weight: 560;
  line-height: 1.15;
}

.tp-playbook-grid article span {
  display: block;
  margin-top: 14px;
  color: var(--tp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.tp-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 82px;
  align-items: center;
  min-height: 520px;
  padding: 44px 0 74px;
}

.tp-showcase.is-reversed {
  grid-template-columns: minmax(0, 1.22fr) minmax(240px, 0.78fr);
}

.tp-showcase.is-reversed .tp-showcase-copy {
  order: 2;
}

.tp-showcase-copy > p {
  margin-top: 18px;
}

.tp-showcase-copy > span {
  display: inline-flex;
  margin-top: 24px;
  border-top: 1px solid var(--tp-line);
  padding-top: 12px;
  color: var(--tp-dim);
  font-size: 12px;
}

.tp-screen {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 65% 18%, rgba(37, 208, 130, 0.11), transparent 18rem),
    linear-gradient(180deg, rgba(18, 20, 23, 0.96), rgba(8, 9, 11, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.tp-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.tp-inbox-panel,
.tp-kanban-panel,
.tp-policy-card,
.tp-release-board,
.tp-diff,
.tp-runtime-panel,
.tp-decision-trace,
.tp-approval-timeline,
.tp-audit-table {
  position: relative;
  z-index: 2;
}

.tp-runtime-panel {
  margin: 32px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 6, 7, 0.74);
}

.tp-runtime-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--tp-line);
  padding: 14px 16px;
}

.tp-runtime-header span,
.tp-runtime-header strong {
  color: var(--tp-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tp-runtime-header strong {
  color: var(--tp-green);
  font-weight: 650;
}

.tp-event-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 94px 86px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--tp-line-soft);
  padding: 13px 16px;
}

.tp-event-row:last-child {
  border-bottom: 0;
}

.tp-event-row time,
.tp-event-row span,
.tp-event-row strong {
  color: var(--tp-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.tp-event-row p {
  margin: 0;
  color: var(--tp-text);
  font-size: 13px;
}

.tp-event-row span {
  border: 1px solid var(--tp-line-soft);
  border-radius: 999px;
  padding: 4px 8px;
  text-align: center;
}

.tp-event-row strong {
  border-radius: 999px;
  padding: 4px 8px;
  text-align: center;
  font-weight: 650;
}

.tp-event-row strong.is-complete {
  color: var(--tp-green);
  background: rgba(37, 208, 130, 0.08);
}

.tp-event-row strong.is-waiting {
  color: var(--tp-amber);
  background: rgba(236, 232, 41, 0.08);
}

.tp-event-row strong.is-queued {
  color: var(--tp-cyan);
  background: rgba(52, 199, 216, 0.08);
}

.tp-decision-trace {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 32px;
  border: 1px solid var(--tp-line);
  background: var(--tp-line);
}

.tp-decision-trace > div {
  min-height: 188px;
  padding: 20px;
  background: rgba(5, 6, 7, 0.78);
}

.tp-decision-trace p {
  margin: 0;
  color: var(--tp-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tp-decision-trace strong {
  display: block;
  margin-top: 52px;
  color: var(--tp-text);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.3;
}

.tp-confidence {
  grid-column: 1 / -1;
  min-height: auto !important;
  padding: 18px 20px !important;
}

.tp-confidence::before {
  content: "";
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tp-confidence span {
  display: block;
  height: 8px;
  margin-top: -8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tp-green), var(--tp-cyan));
}

.tp-confidence small {
  display: block;
  margin-top: 10px;
  color: var(--tp-muted);
  font-size: 12px;
}

.tp-approval-timeline {
  margin: 36px 42px;
  border-left: 1px solid var(--tp-line);
}

.tp-approval-step {
  position: relative;
  padding: 0 0 30px 28px;
}

.tp-approval-step span {
  position: absolute;
  left: -7px;
  top: 0;
  width: 13px;
  height: 13px;
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  background: #070809;
}

.tp-approval-step.is-done span {
  background: var(--tp-green);
}

.tp-approval-step.is-active span {
  background: var(--tp-amber);
  box-shadow: 0 0 0 8px rgba(236, 232, 41, 0.08);
}

.tp-approval-step p {
  margin: 0;
  color: var(--tp-text);
  font-size: 15px;
  font-weight: 560;
}

.tp-approval-step small {
  display: block;
  margin-top: 6px;
  color: var(--tp-muted);
  font-size: 12px;
}

.tp-audit-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 32px;
  border: 1px solid var(--tp-line);
  background: var(--tp-line);
}

.tp-audit-table div {
  min-height: 128px;
  padding: 18px;
  background: rgba(5, 6, 7, 0.78);
}

.tp-audit-table span,
.tp-audit-table em {
  display: block;
  color: var(--tp-dim);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-audit-table strong {
  display: block;
  margin: 28px 0 8px;
  color: var(--tp-text);
  font-size: 16px;
  font-weight: 560;
}

.tp-audit-table em {
  color: var(--tp-green);
  text-transform: none;
  letter-spacing: 0;
}

.tp-inbox-panel {
  width: 42%;
  margin: 40px 0 0 34px;
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  background: rgba(5, 6, 7, 0.76);
  padding: 14px;
}

.tp-inbox-panel > p {
  margin: 0 0 12px;
  color: var(--tp-dim);
  font-size: 11px;
  text-transform: uppercase;
}

.tp-inbox-panel div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  border-top: 1px solid var(--tp-line-soft);
  padding: 10px 0;
  color: var(--tp-text);
  font-size: 12px;
}

.tp-inbox-panel span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tp-green);
}

.tp-inbox-panel small {
  color: var(--tp-dim);
}

.tp-kanban-panel {
  position: absolute;
  right: 34px;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 10px;
}

.tp-kanban-panel div {
  min-height: 150px;
  border: 1px solid var(--tp-line-soft);
  border-radius: 7px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.tp-kanban-panel strong,
.tp-kanban-panel span {
  display: block;
  font-size: 12px;
}

.tp-kanban-panel span {
  margin-top: 70px;
  color: var(--tp-green);
}

.tp-orbit {
  position: absolute;
  left: 42px;
  top: 48px;
  width: 270px;
  height: 220px;
}

.tp-orbit::before,
.tp-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(37, 208, 130, 0.22);
  border-radius: 999px;
}

.tp-orbit::before {
  inset: 24px 10px;
}

.tp-orbit::after {
  inset: 44px 58px;
  border-color: rgba(52, 199, 216, 0.22);
}

.tp-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--tp-green);
  box-shadow: 0 0 24px rgba(37, 208, 130, 0.8);
}

.tp-orbit span:nth-child(1) { left: 24px; top: 70px; }
.tp-orbit span:nth-child(2) { right: 48px; top: 36px; background: var(--tp-cyan); }
.tp-orbit span:nth-child(3) { right: 86px; bottom: 32px; background: var(--tp-amber); }
.tp-orbit span:nth-child(4) { left: 108px; bottom: 48px; background: var(--tp-red); }

.tp-orbit strong {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--tp-text);
  font-size: 13px;
}

.tp-policy-card {
  position: absolute;
  right: 32px;
  top: 58px;
  width: 270px;
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  background: rgba(5, 6, 7, 0.72);
  padding: 18px;
}

.tp-policy-card p,
.tp-policy-card small {
  margin: 0;
  color: var(--tp-dim);
  font-size: 12px;
}

.tp-policy-card strong {
  display: block;
  margin: 12px 0;
  color: var(--tp-text);
  font-size: 18px;
  line-height: 1.25;
}

.tp-release-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 72px 30px 0;
}

.tp-release-board div {
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.tp-release-board span {
  display: block;
  color: var(--tp-dim);
  font-size: 11px;
  text-transform: uppercase;
}

.tp-release-board strong {
  display: block;
  margin-top: 44px;
  color: var(--tp-text);
  font-size: 14px;
}

.tp-timeline-bars {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 52px;
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.8fr 1fr;
  gap: 6px;
}

.tp-timeline-bars span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tp-green), var(--tp-cyan));
}

.tp-timeline-bars span:nth-child(2) {
  background: linear-gradient(90deg, var(--tp-amber), var(--tp-orange));
}

.tp-timeline-bars span:nth-child(3) {
  background: var(--tp-red);
}

.tp-diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 330px;
}

.tp-diff div {
  padding: 52px 24px;
}

.tp-diff div + div {
  border-left: 1px solid var(--tp-line);
}

.tp-diff p {
  margin: 0;
  border-bottom: 1px solid var(--tp-line-soft);
  padding: 10px 0;
  color: rgba(240, 109, 95, 0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.tp-diff div + div p {
  color: rgba(37, 208, 130, 0.86);
}

.tp-use-cases {
  background:
    radial-gradient(circle at 86% 16%, rgba(52, 199, 216, 0.12), transparent 24rem),
    #070809;
}

.tp-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--tp-line);
  background: var(--tp-line);
}

.tp-case-grid article {
  min-height: 210px;
  background: #070809;
  padding: 24px;
}

.tp-final-cta {
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 50% 10%, rgba(236, 232, 41, 0.16), transparent 18rem),
    linear-gradient(180deg, #070809, #050607);
}

.tp-final-cta .tp-container {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.74fr);
  gap: 56px;
  align-items: start;
}

.tp-final-cta p {
  max-width: 700px;
  margin-top: 18px;
}

.tp-final-cta .tp-button {
  margin-top: 28px;
}

.tp-final-cta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.tp-final-cta li {
  border-bottom: 1px solid var(--tp-line-soft);
  padding: 16px 18px;
  color: var(--tp-muted);
  font-size: 13px;
}

.tp-final-cta li:last-child {
  border-bottom: 0;
}

.tp-home-demo-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--tp-line);
  background:
    radial-gradient(circle at 58% 10%, rgba(236, 232, 41, 0.12), transparent 18rem),
    #050607;
}

.tp-home-demo-section .tp-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.tp-home-demo-section h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--tp-text);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 540;
  line-height: 1.05;
}

.tp-home-demo-section p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--tp-muted);
  font-size: 16px;
  line-height: 1.6;
}

.tp-home-demo-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.tp-demo-fit {
  border-left: 2px solid rgba(37, 208, 130, 0.74);
  padding-left: 14px;
  color: rgba(244, 243, 236, 0.78) !important;
}

.tp-demo-form-card {
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.tp-demo-form-card.is-loading {
  cursor: progress;
}

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

.tp-demo-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.tp-demo-field-full,
.tp-demo-notice,
.tp-demo-submit {
  grid-column: 1 / -1;
}

.tp-demo-field span,
.tp-demo-field legend {
  color: var(--tp-text);
  font-size: 13px;
  font-weight: 620;
}

.tp-demo-field input[type="text"],
.tp-demo-field input[type="email"],
.tp-demo-field textarea {
  width: 100%;
  border: 1px solid rgba(244, 243, 236, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(5, 6, 7, 0.76);
  color: var(--tp-text);
  font-size: 15px;
  outline: none;
}

.tp-demo-field input[type="text"],
.tp-demo-field input[type="email"] {
  min-height: 50px;
}

.tp-demo-field textarea {
  min-height: 116px;
  resize: vertical;
}

.tp-demo-field input:focus,
.tp-demo-field textarea:focus {
  border-color: rgba(37, 208, 130, 0.72);
  box-shadow: 0 0 0 4px rgba(37, 208, 130, 0.12);
}

.tp-demo-field.is-invalid input,
.tp-demo-field.is-invalid textarea {
  border-color: rgba(240, 109, 95, 0.58);
}

.tp-demo-error {
  color: #f28a7f;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.35;
}

.tp-demo-tools,
.tp-demo-intent {
  margin: 0;
  border: 0;
  padding: 0;
}

.tp-demo-tools > div,
.tp-demo-intent > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-demo-intent > div {
  align-items: flex-start;
  flex-direction: column;
}

.tp-demo-tools label,
.tp-demo-intent label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 243, 236, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--tp-muted);
  font-size: 13px;
}

.tp-demo-tools input,
.tp-demo-intent input {
  accent-color: #25d082;
}

.tp-demo-newsletter {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border-top: 1px solid rgba(244, 243, 236, 0.1);
  padding-top: 18px;
}

.tp-demo-newsletter label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(244, 243, 236, 0.76);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.55;
}

.tp-demo-newsletter input {
  margin-top: 3px;
  accent-color: #25d082;
}

.tp-demo-newsletter small {
  margin-left: 24px;
  color: rgba(244, 243, 236, 0.44);
  font-size: 12px;
  line-height: 1.45;
}

.tp-demo-notice {
  display: grid;
  gap: 5px;
  margin-bottom: 16px;
  border: 1px solid rgba(244, 243, 236, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--tp-muted);
  font-size: 13px;
  line-height: 1.45;
}

.tp-demo-notice strong {
  color: var(--tp-text);
  font-size: 14px;
}

.tp-demo-notice.is-success {
  border-color: rgba(37, 208, 130, 0.34);
  background: rgba(37, 208, 130, 0.08);
}

.tp-demo-notice.is-error {
  border-color: rgba(240, 109, 95, 0.36);
  background: rgba(240, 109, 95, 0.08);
}

.tp-demo-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.tp-demo-submit button,
.tp-demo-submit a {
  min-height: 52px;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 740;
  text-decoration: none;
}

.tp-demo-submit button {
  border: 1px solid rgba(244, 243, 236, 0.94);
  background: var(--tp-text);
  color: #050607;
  cursor: pointer;
}

.tp-demo-submit button:disabled {
  cursor: progress;
  opacity: 0.62;
}

.tp-demo-submit a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 243, 236, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 243, 236, 0.76);
}

.tp-demo-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tp-early-access-section {
  padding: 56px 0;
  border-top: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  background: #050607;
}

.tp-early-access-section .tp-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.tp-early-access-section h2 {
  margin: 12px 0 0;
  color: var(--tp-text);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 540;
  line-height: 1.08;
}

.tp-early-access-section p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--tp-muted);
  font-size: 16px;
  line-height: 1.55;
}

.tp-legal-page {
  min-height: calc(100vh - 56px);
  background:
    radial-gradient(circle at 70% 4%, rgba(37, 208, 130, 0.1), transparent 20rem),
    radial-gradient(circle at 12% 8%, rgba(236, 232, 41, 0.08), transparent 18rem),
    #050607;
}

.tp-legal-page .tp-container {
  max-width: 940px;
}

.tp-legal-hero {
  max-width: 780px;
}

.tp-legal-hero h1 {
  margin: 14px 0 0;
  color: var(--tp-text);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.95;
}

.tp-legal-hero > p {
  margin: 22px 0 0;
  color: var(--tp-muted);
  font-size: 18px;
  line-height: 1.65;
}

.tp-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tp-legal-meta span,
.tp-legal-meta a,
.tp-legal-tabs a {
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 243, 236, 0.62);
  font-size: 13px;
}

.tp-legal-meta a,
.tp-legal-tabs a {
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.tp-legal-meta a:hover,
.tp-legal-tabs a:hover {
  border-color: rgba(244, 243, 236, 0.24);
  color: var(--tp-text);
}

.tp-legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 54px;
}

.tp-legal-tabs a.is-active {
  border-color: rgba(37, 208, 130, 0.46);
  background: rgba(37, 208, 130, 0.12);
  color: var(--tp-text);
}

.tp-legal-document {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.tp-legal-document section {
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.tp-legal-document h2 {
  margin: 0 0 14px;
  color: var(--tp-text);
  font-size: 20px;
  font-weight: 580;
}

.tp-legal-document p,
.tp-legal-document li {
  color: var(--tp-muted);
  font-size: 15px;
  line-height: 1.75;
}

.tp-legal-document p {
  margin: 0;
}

.tp-legal-document p + p {
  margin-top: 12px;
}

.tp-legal-document ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.tp-newsletter-section {
  padding: 56px 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 208, 130, 0.13), transparent 20rem),
    radial-gradient(circle at 78% 30%, rgba(52, 199, 216, 0.09), transparent 18rem),
    #050607;
}

.tp-newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.tp-newsletter-shell h2 {
  margin: 16px 0 0;
  color: var(--tp-text);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 520;
  line-height: 1.05;
}

.tp-newsletter-shell > div:first-child > p {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--tp-muted);
  font-size: 16px;
  line-height: 1.6;
}

.tp-newsletter-card,
.tp-footer-widget {
  max-width: none;
  margin-inline: 0;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.tp-footer-widget-title {
  margin: 0 0 16px;
  color: var(--tp-text);
  font-size: 24px;
  font-weight: 560;
  line-height: 1.15;
}

.tp-footer-widget p {
  color: var(--tp-muted);
}

.tp-newsletter-form {
  display: grid;
  gap: 16px;
}

.tp-newsletter-field,
.tp-newsletter-consent {
  display: grid;
  gap: 8px;
}

.tp-newsletter-field span {
  color: var(--tp-text);
  font-size: 13px;
  font-weight: 600;
}

.tp-newsletter-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(244, 243, 236, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(5, 6, 7, 0.74);
  color: var(--tp-text);
  font-size: 16px;
  outline: none;
}

.tp-newsletter-field input:focus {
  border-color: rgba(37, 208, 130, 0.7);
  box-shadow: 0 0 0 4px rgba(37, 208, 130, 0.13);
}

.tp-newsletter-field.is-invalid input {
  border-color: rgba(240, 109, 95, 0.78);
  box-shadow: 0 0 0 4px rgba(240, 109, 95, 0.12);
}

.tp-newsletter-error {
  color: #ff9b90;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.4;
}

.tp-newsletter-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  color: var(--tp-muted);
  font-size: 13px;
  line-height: 1.45;
}

.tp-newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #25d082;
}

.tp-newsletter-consent.is-invalid {
  color: #ffb2a8;
}

.tp-newsletter-consent-error {
  grid-column: 2;
}

.tp-newsletter-form button {
  min-height: 52px;
  border: 1px solid rgba(244, 243, 236, 0.94);
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--tp-text);
  color: #050607;
  font-size: 15px;
  font-weight: 720;
  cursor: pointer;
}

.tp-newsletter-form button:hover {
  background: #ffffff;
}

.tp-newsletter-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.tp-newsletter-fineprint {
  margin: -4px 0 0;
  color: var(--tp-faint);
  font-size: 12px;
  line-height: 1.45;
}

.tp-newsletter-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tp-newsletter-notice {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  border: 1px solid rgba(244, 243, 236, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--tp-muted);
  font-size: 13px;
  line-height: 1.45;
}

.tp-newsletter-notice strong {
  color: var(--tp-text);
  font-size: 14px;
}

.tp-newsletter-notice.is-success {
  border-color: rgba(37, 208, 130, 0.34);
  background: rgba(37, 208, 130, 0.08);
}

.tp-newsletter-notice.is-error {
  border-color: rgba(240, 109, 95, 0.36);
  background: rgba(240, 109, 95, 0.08);
}

.tp-final-newsletter-section {
  padding: 58px 0 68px;
  border-bottom: 1px solid var(--tp-line);
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 208, 130, 0.11), transparent 22rem),
    radial-gradient(circle at 84% 40%, rgba(43, 199, 217, 0.08), transparent 18rem),
    #050607;
}

.tp-final-newsletter-shell {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.tp-final-newsletter-copy {
  display: grid;
  justify-items: center;
}

.tp-final-newsletter-copy h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--tp-text);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 520;
  line-height: 1.05;
}

.tp-final-newsletter-copy > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--tp-muted);
  font-size: 17px;
  line-height: 1.6;
}

.tp-final-newsletter-section .tp-newsletter-card {
  width: min(100%, 820px);
  padding: 26px;
  text-align: left;
}

.tp-final-newsletter-section .tp-newsletter-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: end;
}

.tp-final-newsletter-section .tp-newsletter-field {
  min-width: 0;
}

.tp-final-newsletter-section .tp-newsletter-form button {
  min-width: 178px;
}

.tp-final-newsletter-section .tp-newsletter-notice,
.tp-final-newsletter-section .tp-newsletter-consent,
.tp-final-newsletter-section .tp-newsletter-fineprint,
.tp-final-newsletter-section .tp-newsletter-hp {
  grid-column: 1 / -1;
}

.tp-footer-widget input[type="text"],
.tp-footer-widget input[type="email"],
.tp-footer-widget input[type="tel"],
.tp-footer-widget input[type="url"],
.tp-footer-widget textarea,
.tp-footer-widget select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  padding: 10px 12px;
  background: rgba(5, 6, 7, 0.72);
  color: var(--tp-text);
}

.tp-footer-widget input[type="submit"],
.tp-footer-widget button,
.tp-footer-widget .button {
  min-height: 46px;
  border: 1px solid rgba(244, 243, 236, 0.92);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--tp-text);
  color: #050607;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.tp-status-page {
  min-height: calc(100vh - 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 208, 130, 0.14), transparent 28rem),
    radial-gradient(circle at 72% 28%, rgba(43, 199, 217, 0.10), transparent 24rem),
    #050607;
}

.tp-status-hero {
  min-height: calc(100vh - 56px);
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.tp-status-shell {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  padding: clamp(32px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 120px rgba(0, 0, 0, 0.36);
}

.tp-status-kicker {
  margin: 0 0 18px;
  color: var(--tp-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tp-status-shell h1 {
  max-width: 760px;
  margin: 0;
  color: var(--tp-text);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 540;
  line-height: 0.98;
}

.tp-status-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--tp-muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

.tp-status-callout {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  border: 1px solid rgba(37, 208, 130, 0.24);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(37, 208, 130, 0.08);
}

.tp-status-callout strong {
  color: var(--tp-text);
  font-size: 16px;
}

.tp-status-callout span {
  color: var(--tp-muted);
  font-size: 14px;
  line-height: 1.5;
}

.tp-status-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  position: relative;
}

.tp-status-step {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  position: relative;
  text-align: center;
}

.tp-status-step::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(244, 243, 236, 0.12);
}

.tp-status-step:first-child::before {
  left: 50%;
}

.tp-status-step:last-child::before {
  right: 50%;
}

.tp-status-step span {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(244, 243, 236, 0.16);
  border-radius: 999px;
  background: #101312;
  box-shadow: 0 0 0 8px #080a0a;
}

.tp-status-step span::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: rgba(244, 243, 236, 0.28);
}

.tp-status-step strong {
  color: var(--tp-muted);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.25;
}

.tp-status-step.is-done::before,
.tp-status-step.is-active::before {
  background: rgba(37, 208, 130, 0.42);
}

.tp-status-step.is-done span,
.tp-status-step.is-active span {
  border-color: rgba(37, 208, 130, 0.55);
  background: rgba(37, 208, 130, 0.08);
}

.tp-status-step.is-done span::after,
.tp-status-step.is-active span::after {
  background: #25d082;
  box-shadow: 0 0 20px rgba(37, 208, 130, 0.46);
}

.tp-status-step.is-active strong {
  color: var(--tp-text);
}

.tp-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.tp-status-primary,
.tp-status-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 720;
  text-decoration: none;
}

.tp-status-primary {
  border: 1px solid rgba(244, 243, 236, 0.94);
  background: var(--tp-text);
  color: #050607;
}

.tp-status-secondary {
  border: 1px solid var(--tp-line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--tp-text);
}

.tp-status-resend {
  display: none;
  max-width: 520px;
  margin-top: 34px;
  scroll-margin-top: 88px;
}

.tp-status-resend.is-open,
.tp-status-resend:target {
  display: block;
}

.tp-status-resend-title {
  margin: 0 0 14px;
  color: var(--tp-text);
  font-size: 18px;
  font-weight: 620;
}

.tp-status-resend .tp-newsletter-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tp-status-resend .tp-newsletter-fallback > .tp-newsletter-notice {
  display: none;
}

.tp-mobile-menu {
  display: none;
}

.tp-mobile-menu.is-open {
  display: block;
}

@media (max-width: 980px) {
  .tp-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-app-grid {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .tp-inspector {
    display: none;
  }

  .tp-showcase,
  .tp-showcase.is-reversed,
  .tp-intro-grid,
  .tp-hero-proof,
  .tp-newsletter-shell,
  .tp-final-newsletter-shell,
  .tp-final-cta .tp-container,
  .tp-home-demo-section .tp-container,
  .tp-early-access-section .tp-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tp-showcase.is-reversed .tp-showcase-copy {
    order: initial;
  }

  .tp-case-grid,
  .tp-principles,
  .tp-playbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-enterprise-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .tp-container {
    width: min(100% - 24px, 1120px);
  }

  .tp-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tp-hero-section {
    padding-top: 42px;
  }

  .tp-hero-copy h1 {
    font-size: 42px;
  }

  .tp-hero-actions {
    display: grid;
  }

  .tp-hero-flow ol {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tp-hero-flow li {
    min-height: auto;
  }

  .tp-hero-flow li:not(:last-child)::after {
    left: 20px;
    right: auto;
    top: auto;
    bottom: -7px;
    width: 1px;
    height: 6px;
  }

  .tp-button {
    min-height: 50px;
    font-size: 15px;
  }

  .tp-legal-page {
    padding-top: 56px;
  }

  .tp-legal-hero h1 {
    font-size: 40px;
  }

  .tp-legal-hero > p {
    font-size: 16px;
  }

  .tp-legal-tabs {
    display: grid;
  }

  .tp-legal-tabs a {
    text-align: center;
  }

  .tp-legal-document section {
    padding: 22px;
  }

  .tp-final-newsletter-section .tp-newsletter-form {
    grid-template-columns: 1fr;
  }

  .tp-final-newsletter-section .tp-newsletter-form button {
    width: 100%;
    min-width: 0;
  }

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

  .tp-demo-submit button,
  .tp-demo-submit a,
  .tp-home-demo-actions .tp-button,
  .tp-early-access-section .tp-button {
    justify-content: center;
    width: 100%;
  }

  .tp-home-demo-actions {
    justify-items: stretch;
  }

  .tp-product-hero {
    margin-inline: -2px;
  }

  .tp-app-window {
    min-height: 480px;
  }

  .tp-window-bar {
    grid-template-columns: auto 1fr;
  }

  .tp-run-status {
    display: none;
  }

  .tp-command-pill {
    justify-self: stretch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tp-app-grid {
    grid-template-columns: 1fr;
  }

  .tp-app-sidebar {
    display: none;
  }

  .tp-flow-canvas {
    padding: 16px;
  }

  .tp-flow-header {
    display: block;
  }

  .tp-flow-header > span {
    display: inline-flex;
    margin-top: 12px;
  }

  .tp-flow-map {
    height: 350px;
  }

  .tp-flow-node {
    width: 145px;
  }

  .node-trigger { left: 0; top: 30px; }
  .node-ai { right: 0; left: auto; top: 92px; }
  .node-condition { left: 0; right: auto; top: 170px; }
  .node-approval { left: auto; right: 0; bottom: 52px; }
  .node-action { left: 0; right: auto; bottom: 0; }

  .tp-logo-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
  }

  .tp-section {
    padding: 68px 0;
  }

  .tp-principles,
  .tp-case-grid,
  .tp-playbook-grid {
    grid-template-columns: 1fr;
  }

  .tp-playbook-grid article {
    min-height: 190px;
  }

  .tp-playbook-grid article h3 {
    margin-top: 32px;
  }

  .tp-showcase {
    min-height: unset;
    padding: 28px 0 52px;
  }

  .tp-screen {
    min-height: 410px;
  }

  .tp-runtime-panel,
  .tp-decision-trace,
  .tp-audit-table {
    margin: 18px;
  }

  .tp-event-row {
    grid-template-columns: 64px 1fr;
  }

  .tp-event-row span,
  .tp-event-row strong {
    width: fit-content;
  }

  .tp-decision-trace,
  .tp-audit-table {
    grid-template-columns: 1fr;
  }

  .tp-decision-trace > div {
    min-height: 140px;
  }

  .tp-decision-trace strong {
    margin-top: 24px;
  }

  .tp-confidence {
    grid-column: auto;
  }

  .tp-approval-timeline {
    margin: 28px 28px;
  }

  .tp-inbox-panel {
    width: auto;
    margin: 24px 18px 0;
  }

  .tp-kanban-panel {
    left: 18px;
    right: 18px;
    bottom: 22px;
    grid-template-columns: 1fr;
  }

  .tp-kanban-panel div {
    min-height: 64px;
  }

  .tp-kanban-panel span {
    margin-top: 10px;
  }

  .tp-orbit {
    left: 50%;
    top: 30px;
    transform: translateX(-50%) scale(0.82);
  }

  .tp-policy-card {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 22px;
    width: auto;
  }

  .tp-release-board {
    grid-template-columns: 1fr;
    margin: 24px 18px 0;
  }

  .tp-release-board strong {
    margin-top: 14px;
  }

  .tp-diff {
    grid-template-columns: 1fr;
  }

  .tp-diff div + div {
    border-left: 0;
    border-top: 1px solid var(--tp-line);
  }

  .tp-status-hero {
    min-height: calc(100vh - 56px);
    padding: 42px 0;
  }

  .tp-status-shell {
    padding: 28px 24px;
  }

  .tp-status-shell h1 {
    font-size: 42px;
  }

  .tp-status-lead {
    font-size: 17px;
  }

  .tp-status-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-status-step {
    grid-template-columns: 30px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .tp-status-step::before {
    top: 0;
    bottom: -18px;
    left: 15px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .tp-status-step:first-child::before {
    left: 15px;
  }

  .tp-status-step:last-child::before {
    display: none;
  }

  .tp-status-step span {
    box-shadow: 0 0 0 7px #080a0a;
  }

  .tp-status-primary,
  .tp-status-secondary {
    width: 100%;
  }
}

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