:root {
  --bg: #f6f5f1;
  --paper: #fbfaf7;
  --ink: #0e1b1f;
  --ink-2: #33474d;
  --muted: #6b7a7f;
  --rule: #d9d3c4;
  --rule-soft: #e7e2d3;
  --brand: #1f4a54;
  --brand-ink: #0a1f24;
  --accent: #1f4a54;
  --accent-ink: #ffffff;
  --ok: #17825a;
  --warn: #b45309;
  --bad: #b42318;
  --font-sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --font-display: "Geist", ui-sans-serif, sans-serif;
  --font-display-accent: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.grid-bg {
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
}

.grid-bg-fine {
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px);
  background-size: 24px 24px;
}

.rise {
  animation: rise 0.7s cubic-bezier(.2, .7, .2, 1) both;
}

.pulse-dot {
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.marquee-track {
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.wire {
  animation: dash 14s linear infinite;
}

.tc-home-wire {
  stroke-dasharray: 4 6;
  stroke-dashoffset: 0;
  animation: tc-home-wire-dash 1.6s linear infinite;
  vector-effect: non-scaling-stroke;
}

.tc-home-wire-arrow {
  animation: tc-home-wire-arrow-pulse 1.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.blink {
  display: inline-block;
  width: 0.5em;
  height: 1em;
  margin-left: 0.15em;
  background: currentColor;
  vertical-align: -2px;
  animation: blink 1.1s steps(1) infinite;
}

.tc-home-page {
  min-height: 100vh;
}

.tc-public-page {
  background: var(--bg);
  color: var(--ink);
}

.tc-public-page .page-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--rule-soft);
  border-radius: 0;
  background: var(--bg);
  color: var(--ink);
  box-shadow: none;
}

.tc-public-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .9;
  pointer-events: none;
}

.tc-public-page .page-hero::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 42%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--ink) 42%, transparent);
  pointer-events: none;
}

.tc-public-page .page-hero > * {
  position: relative;
  z-index: 1;
}

.tc-public-page .page-hero h1,
.tc-public-page .page-hero h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

.tc-public-page .page-hero h1 em,
.tc-public-page .page-hero h2 em {
  font-family: var(--font-display-accent);
  font-style: italic;
  font-weight: 400;
}

.tc-public-page .page-hero p {
  color: var(--ink-2);
  text-wrap: pretty;
}

.tc-public-page .page-hero .eyebrow {
  color: var(--muted);
}

.tc-public-page .page-hero .hero-panel,
.tc-public-page .page-hero .hero-panel--compact,
.tc-public-page .page-hero .page-hero__aside {
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.tc-public-page .page-hero .hero-panel__label,
.tc-public-page .page-hero .hero-stat span,
.tc-public-page .page-hero .page-hero__aside span {
  color: var(--muted);
}

.tc-public-page .page-hero .hero-stat + .hero-stat {
  border-top-color: var(--rule);
}

.tc-public-page .page-hero .btn-quiet {
  border-color: var(--rule);
  background: transparent;
  color: var(--ink);
}

.tc-public-page .page-hero .btn-quiet:hover {
  background: color-mix(in srgb, var(--ink) 5%, transparent);
}

.tc-public-page .page-hero--tight {
  padding-top: 64px;
  padding-bottom: 56px;
}

.tc-public-page .page-content > section:not(.page-hero):not(.tc-price-hero):not(.tc-price-section):not(.tc-price-compare):not(.tc-price-enterprise):not(.tc-price-faq) {
  background: transparent;
}

.tc-home-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--rule-soft);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
}

.tc-home-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.tc-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-decoration: none;
}

.tc-home-brand__image {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tc-home-brand__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tc-home-brand__domain {
  color: var(--muted);
}

.tc-home-nav__links {
  display: flex;
  gap: 22px;
  margin-left: 32px;
}

.tc-home-nav__links a,
.tc-home-nav__login {
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
}

.tc-home-nav__links a.is-active {
  color: var(--ink);
  position: relative;
}

.tc-home-nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
}

.tc-home-nav__login {
  font-size: 13px;
}

.tc-home-nav__spacer {
  flex: 1;
}

.tc-home-nav .language-switch__form {
  flex: none;
  margin: 0;
}

.tc-home-nav .language-select {
  min-width: 64px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 84%, white);
  color: var(--ink-2);
}

.tc-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

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

.tc-home-button--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.tc-home-button--ghost {
  background: transparent;
  border-color: var(--rule);
  color: var(--ink);
}

.tc-home-button--sm {
  padding: 6px 12px;
  font-size: 13px;
}

.tc-home-button--md {
  padding: 10px 18px;
  font-size: 14px;
}

.tc-home-button--lg {
  padding: 14px 22px;
  font-size: 15px;
}

.tc-home-button--full {
  width: 100%;
}

.tc-home-button--disabled {
  cursor: not-allowed;
  pointer-events: none;
  background: color-mix(in srgb, var(--paper) 84%, white);
  border-color: var(--rule);
  color: var(--muted);
}

.tc-home-button--disabled:hover {
  transform: none;
}

.tc-home-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.tc-home-chip--ok {
  border-color: color-mix(in srgb, var(--ok) 25%, transparent);
  background: color-mix(in srgb, var(--ok) 10%, transparent);
  color: var(--ok);
}

.tc-home-chip--brand {
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
}

.tc-home-chip--warn {
  border-color: color-mix(in srgb, var(--warn) 28%, transparent);
  background: color-mix(in srgb, var(--warn) 10%, transparent);
  color: var(--warn);
}

.tc-home-chip--bad {
  border-color: color-mix(in srgb, var(--bad) 28%, transparent);
  background: color-mix(in srgb, var(--bad) 10%, transparent);
  color: var(--bad);
}

.tc-home-corners span {
  position: absolute;
  width: 10px;
  height: 10px;
}

.tc-home-corners__tl {
  top: 10px;
  left: 10px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.tc-home-corners__tr {
  top: 10px;
  right: 10px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.tc-home-corners__bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.tc-home-corners__br {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.tc-home-hero-grid,
.tc-home-section-head,
.tc-home-dashboard-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.tc-home-flow-grid {
  display: grid;
  grid-template-columns:
    minmax(212px, 1.05fr)
    minmax(44px, 56px)
    minmax(154px, .72fr)
    minmax(44px, 56px)
    minmax(212px, 1fr)
    minmax(44px, 56px)
    minmax(212px, 1fr);
  align-items: stretch;
  gap: 10px;
}

.tc-home-flow-wrap {
  margin-top: 64px;
  max-width: 100%;
}

.tc-home-flow-grid--animated {
  align-items: stretch;
}

.tc-home-flow-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--paper);
  padding: 18px 20px 20px;
  animation: tc-home-flow-float 6.5s ease-in-out infinite;
}

.tc-home-flow-card--routing {
  animation-delay: .35s;
}

.tc-home-flow-card--execution {
  animation-delay: .7s;
}

.tc-home-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 12%, transparent), transparent);
  opacity: 0;
  transform: translateX(-100%);
  animation: tc-home-flow-scan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.tc-home-flow-card--routing::before {
  animation-delay: .7s;
}

.tc-home-flow-card--execution::before {
  animation-delay: 1.4s;
}

.tc-home-flow-chip .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ok);
}

.tc-home-flow-title {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tc-home-flow-lines {
  display: grid;
  row-gap: 6px;
  border-top: 1px dashed var(--rule);
  padding-top: 12px;
}

.tc-home-flow-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px;
  overflow: hidden;
  border-radius: 2px;
  padding: 2px 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.tc-home-flow-row span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tc-home-flow-row strong {
  min-width: 0;
  color: var(--ink);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.tc-home-flow-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  opacity: 0;
  transform: translateX(-100%);
  animation: tc-home-flow-row-pulse 5.8s ease-in-out infinite;
  pointer-events: none;
}

.tc-home-flow-row > * {
  position: relative;
  z-index: 1;
}

.tc-home-flow-row:nth-child(2)::after {
  animation-delay: .55s;
}

.tc-home-flow-row:nth-child(3)::after {
  animation-delay: 1.1s;
}

.tc-home-flow-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  isolation: isolate;
}

.tc-home-flow-connector svg {
  display: block;
  width: 100%;
  min-width: 40px;
  height: 30px;
}

.tc-home-flow-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
  transform: translateY(-50%);
  animation: tc-home-flow-tracer 2.1s linear infinite;
}

.tc-home-flow-connector--reverse::after {
  animation-name: tc-home-flow-tracer-reverse;
}

.tc-home-flow-relay-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.tc-home-relay-node {
  position: relative;
  width: min(166px, 100%);
  min-width: 154px;
  padding: 16px 12px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--accent) 60%, transparent);
  animation: tc-home-relay-breathe 2.6s ease-in-out infinite;
}

.tc-home-relay-node::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 2px;
  opacity: .8;
  animation: tc-home-relay-border 2.6s ease-in-out infinite;
  pointer-events: none;
}

.tc-home-section-head {
  padding-top: 96px;
  padding-bottom: 32px;
}

.tc-home-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-home-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-home-dashboard-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tc-home-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tc-home-flow-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.tc-home-flow-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.tc-home-flow-legend b {
  display: inline-grid;
  flex: none;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
}

.tc-home-marquee {
  overflow: hidden;
  max-width: 100vw;
  border-bottom: 1px solid var(--rule-soft);
  background: var(--paper);
  padding: 18px 0;
  contain: paint;
}

.tc-home-marquee__track {
  display: flex;
  align-items: baseline;
  gap: 44px;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
}

.tc-home-marquee__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tc-home-marquee__item span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.tc-home-marquee__item small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.tc-home-marquee__item i {
  margin-left: 12px;
  color: var(--rule);
  font-style: normal;
}

.tc-home-brokers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-home-usecases-grid,
.tc-home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-home-faq-list {
  border: 1px solid var(--rule);
  border-bottom: none;
  background: var(--paper);
}

.tc-home-faq-item {
  border-bottom: 1px solid var(--rule);
}

.tc-home-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.tc-home-faq-item summary::-webkit-details-marker {
  display: none;
}

.tc-home-faq-item[open] .tc-home-faq-item__plus {
  transform: rotate(45deg);
}

.tc-home-faq-item__plus {
  display: grid;
  flex: none;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.tc-home-pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  background: var(--paper);
}

.tc-home-pricing-toggle button {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
}

.tc-home-pricing-toggle button.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}

.tc-home-footer {
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.tc-home-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 32px 28px;
}

.tc-home-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.tc-home-footer ul {
  display: grid;
  row-gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tc-home-footer a {
  display: inline-flex;
  align-items: center;
  min-width: 32px;
  min-height: 32px;
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
}

.tc-price-page {
  background: var(--bg);
}

.tc-price-hero,
.tc-price-section,
.tc-price-compare,
.tc-price-faq {
  border-bottom: 1px solid var(--rule-soft);
}

.tc-price-hero {
  position: relative;
  overflow: hidden;
}

.tc-price-hero__grid-bg,
.tc-price-enterprise__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.tc-price-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1.3fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
  padding: 76px 32px 54px;
}

.tc-price-hero__copy h1,
.tc-price-compare h2,
.tc-price-enterprise__copy h2,
.tc-price-faq h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}

.tc-price-hero__copy h1 em {
  font-family: var(--font-display-accent);
  font-style: italic;
  font-weight: 400;
}

.tc-price-hero__copy p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.tc-price-hero__panel {
  border: 1px dashed var(--rule);
  border-radius: 4px;
  background: var(--paper);
  padding: 18px 20px;
}

.tc-price-hero__panel ul {
  display: grid;
  row-gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.tc-price-section__inner {
  padding: 36px 32px 38px;
}

.tc-price-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-price-plan {
  position: relative;
  padding: 28px 26px 26px;
  border-right: 1px solid var(--rule);
}

.tc-price-plan:last-child {
  border-right: none;
}

.tc-price-plan--featured {
  background: var(--brand-ink);
  color: #eef3f1;
}

.tc-price-plan__badge {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.tc-price-plan__tag {
  min-height: 28px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tc-price-plan--featured .tc-price-plan__tag {
  color: #7da59c;
}

.tc-price-plan__name {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.tc-price-plan__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.tc-price-plan__price {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.tc-price-plan__term,
.tc-price-plan__note {
  color: var(--muted);
}

.tc-price-plan--featured .tc-price-plan__term,
.tc-price-plan--featured .tc-price-plan__note {
  color: #bcd3cd;
}

.tc-price-plan__term {
  font-size: 14px;
}

.tc-price-plan__note {
  margin: 4px 0 22px;
  font-size: 12px;
}

.tc-price-plan__button {
  width: 100%;
}

.tc-price-plan__features {
  display: grid;
  row-gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tc-price-plan__features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.tc-price-plan__features li::before {
  content: "✓";
  flex: none;
  color: var(--accent);
  font-weight: 600;
}

.tc-price-compare {
  padding: 46px 0 52px;
}

.tc-price-compare h2,
.tc-price-faq h2 {
  margin-bottom: 22px;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.tc-price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.tc-price-table th,
.tc-price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--rule-soft);
  text-align: left;
  vertical-align: top;
}

.tc-price-table thead th {
  background: color-mix(in srgb, var(--bg) 60%, var(--paper));
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.tc-price-table thead th:first-child,
.tc-price-table tbody th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tc-price-table tbody th {
  width: 40%;
  color: var(--ink);
}

.tc-price-table tbody td {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
}

.tc-price-table tbody tr:last-child th,
.tc-price-table tbody tr:last-child td {
  border-bottom: none;
}

.tc-price-enterprise {
  position: relative;
  overflow: hidden;
  background: var(--brand-ink);
  color: #eef3f1;
}

.tc-price-enterprise__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 32px;
}

.tc-price-enterprise__eyebrow {
  color: #7da59c;
}

.tc-price-enterprise__copy p {
  max-width: 500px;
  margin: 14px 0 20px;
  color: #bcd3cd;
  font-size: 17px;
}

.tc-price-enterprise__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tc-price-enterprise__metric {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
}

.tc-price-enterprise__metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fbfaf7;
}

.tc-price-enterprise__metric span {
  display: block;
  margin-top: 4px;
  color: #7da59c;
  font-size: 13px;
}

.tc-price-faq {
  padding: 64px 0;
}

.tc-price-faq__answer {
  max-width: 760px;
  padding: 0 24px 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.tc-status-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule-soft);
}

.tc-status-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .9;
}

.tc-status-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 48px;
  align-items: end;
  padding: 78px 32px 56px;
}

.tc-status-hero__copy h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}

.tc-status-hero__copy h1 em {
  font-family: var(--font-display-accent);
  font-style: italic;
  font-weight: 400;
}

.tc-status-hero__copy p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  text-wrap: pretty;
}

.tc-status-global {
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  padding: 22px;
}

.tc-status-global__top,
.tc-status-global__meta,
.tc-status-section-head,
.tc-status-group__head,
.tc-status-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tc-status-global strong {
  display: block;
  margin: 12px 0 4px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.tc-status-global > span {
  display: block;
  color: var(--ink-2);
  font-size: 14px;
}

.tc-status-global__meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  align-items: flex-start;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.tc-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--muted);
}

.tc-status-global.is-healthy .tc-status-dot,
.tc-status-chip.is-healthy::before {
  background: var(--ok);
}

.tc-status-global.is-degraded .tc-status-dot,
.tc-status-global.is-unknown .tc-status-dot,
.tc-status-chip.is-degraded::before,
.tc-status-chip.is-unknown::before {
  background: var(--warn);
}

.tc-status-global.is-unhealthy .tc-status-dot,
.tc-status-chip.is-unhealthy::before {
  background: var(--bad);
}

.tc-status-global.is-disabled .tc-status-dot,
.tc-status-chip.is-disabled::before {
  background: var(--muted);
}

.tc-status-section {
  border-bottom: 1px solid var(--rule-soft);
  padding: 36px 0;
}

.tc-status-section--services {
  padding-top: 48px;
  padding-bottom: 52px;
}

.tc-status-warning {
  margin-top: 18px;
  border: 1px solid color-mix(in srgb, var(--warn) 28%, transparent);
  border-radius: 4px;
  background: color-mix(in srgb, var(--warn) 9%, var(--paper));
  padding: 14px 16px;
  color: var(--warn);
  font-size: 14px;
}

.tc-status-kpis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-status-kpi {
  min-width: 0;
  padding: 20px 18px;
  border-right: 1px solid var(--rule);
}

.tc-status-kpi:last-child {
  border-right: none;
}

.tc-status-kpi strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.tc-status-kpi > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 12px;
}

.tc-status-section-head {
  margin-bottom: 20px;
  align-items: flex-end;
}

.tc-status-section-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.tc-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  padding: 5px 10px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
}

.tc-status-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--muted);
}

.tc-status-chip.is-healthy {
  border-color: color-mix(in srgb, var(--ok) 28%, transparent);
  background: color-mix(in srgb, var(--ok) 9%, transparent);
  color: var(--ok);
}

.tc-status-chip.is-degraded,
.tc-status-chip.is-unknown {
  border-color: color-mix(in srgb, var(--warn) 28%, transparent);
  background: color-mix(in srgb, var(--warn) 9%, transparent);
  color: var(--warn);
}

.tc-status-chip.is-unhealthy {
  border-color: color-mix(in srgb, var(--bad) 28%, transparent);
  background: color-mix(in srgb, var(--bad) 9%, transparent);
  color: var(--bad);
}

.tc-status-groups {
  display: grid;
  gap: 14px;
}

.tc-status-group,
.tc-status-empty {
  border: 1px solid var(--rule);
  background: var(--paper);
}

.tc-status-group__head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
}

.tc-status-group__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.tc-status-group__head span:not(.tc-status-chip) {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.tc-status-service {
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule-soft);
}

.tc-status-service:last-child {
  border-bottom: none;
}

.tc-status-service strong {
  display: block;
  font-size: 15px;
}

.tc-status-service span {
  color: var(--muted);
  font-size: 13px;
}

.tc-status-service__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.tc-status-service__meta {
  font-family: var(--font-mono);
  font-size: 11px !important;
}

.tc-status-empty {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.tc-status-empty span {
  color: var(--ink-2);
}

.tc-contact-page .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
  gap: 40px;
  align-items: end;
  padding: 76px 32px 56px;
}

.tc-contact-hero-card,
.tc-contact-form-card,
.tc-aside-card {
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.tc-contact-hero-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.tc-contact-hero-card__rows {
  display: grid;
  gap: 10px;
}

.tc-contact-hero-card__rows div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  border-top: 1px dashed var(--rule);
  padding-top: 10px;
}

.tc-contact-hero-card__rows span {
  color: var(--ink-2);
  font-size: 13px;
}

.tc-contact-hero-card__rows strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.tc-contact-section {
  border-bottom: 1px solid var(--rule-soft);
  padding: 44px 0 72px;
}

.tc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: start;
}

.tc-contact-form-card {
  padding: 26px;
}

.tc-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tc-field-block,
.tc-field-group {
  display: grid;
  gap: 8px;
}

.tc-field-label {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tc-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: color-mix(in srgb, var(--paper) 85%, white);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.tc-input:focus {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--rule));
  background: var(--paper);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 10%, transparent);
}

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

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

.tc-topic-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  min-height: 104px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: color-mix(in srgb, var(--paper) 88%, white);
  padding: 14px;
  cursor: pointer;
  transition: border-color .16s ease, transform .16s ease, background .16s ease;
}

.tc-topic-option:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--rule));
}

.tc-topic-option:has(input:checked) {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--rule));
  background: color-mix(in srgb, var(--accent) 8%, var(--paper));
}

.tc-topic-option input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.tc-topic-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.tc-topic-desc {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.tc-privacy-label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 13px;
}

.tc-privacy-label input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.tc-privacy-label a,
.tc-aside-checklist a {
  color: var(--accent);
  font-weight: 600;
}

.tc-form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tc-form-hint {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.field-validation,
.validation-summary-errors {
  color: var(--bad);
  font-size: 12px;
}

.tc-contact-aside {
  display: grid;
  gap: 14px;
}

.tc-aside-card {
  padding: 18px;
}

.tc-aside-card--dashed {
  border-style: dashed;
}

.tc-aside-channels {
  display: grid;
  gap: 13px;
}

.tc-aside-channels > div,
.tc-aside-checklist li {
  border-top: 1px dashed var(--rule);
  padding-top: 10px;
}

.tc-aside-channel-name {
  color: var(--ink);
  font-weight: 600;
}

.tc-aside-channel-val {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
}

.tc-aside-channel-hint,
.tc-aside-hint,
.tc-aside-address {
  color: var(--ink-2);
  font-size: 13px;
}

.tc-lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-aside-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2);
  font-size: 13px;
}

@keyframes pulse-dot {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes dash {
  to { stroke-dashoffset: -400; }
}

@keyframes tc-home-wire-dash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -40; }
}

@keyframes tc-home-wire-arrow-pulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: .55; }
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333%, 0, 0); }
}

@keyframes tc-home-flow-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes tc-home-flow-scan {
  0%,
  36% { opacity: 0; transform: translateX(-100%); }
  46% { opacity: .9; }
  58% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 0; transform: translateX(100%); }
}

@keyframes tc-home-flow-row-pulse {
  0%,
  24% { opacity: 0; transform: translateX(-100%); }
  32% { opacity: 1; transform: translateX(0); }
  44% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 0; transform: translateX(100%); }
}

@keyframes tc-home-flow-tracer {
  0% { left: 8px; opacity: 0; }
  14%,
  82% { opacity: 1; }
  100% { left: calc(100% - 14px); opacity: 0; }
}

@keyframes tc-home-flow-tracer-reverse {
  0% { left: calc(100% - 14px); opacity: 0; }
  14%,
  82% { opacity: 1; }
  100% { left: 8px; opacity: 0; }
}

@keyframes tc-home-flow-tracer-vertical {
  0% { top: 8px; opacity: 0; }
  14%,
  82% { opacity: 1; }
  100% { top: calc(100% - 14px); opacity: 0; }
}

@keyframes tc-home-relay-breathe {
  0%,
  100% { transform: scale(1); box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--accent) 60%, transparent); }
  50% { transform: scale(1.025); box-shadow: 0 16px 34px -14px color-mix(in srgb, var(--accent) 76%, transparent); }
}

@keyframes tc-home-relay-border {
  0%,
  100% { opacity: .55; }
  50% { opacity: 1; }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes blink {
  50% { opacity: 0; }
}

@media (max-width: 1100px) {
  .tc-home-nav__links {
    display: none;
  }

  .tc-home-how-grid,
  .tc-home-usecases-grid,
  .tc-home-pricing-grid,
  .tc-home-dashboard-panels,
  .tc-price-plans,
  .tc-price-enterprise__grid,
  .tc-status-hero__inner,
  .tc-contact-page .page-hero,
  .tc-contact-layout,
  .tc-home-footer__grid {
    grid-template-columns: 1fr;
  }

  .tc-home-flow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tc-home-flow-connector {
    min-height: 46px;
  }

  .tc-home-flow-connector svg {
    width: min(88px, 42%);
    min-width: 72px;
    transform: rotate(90deg);
  }

  .tc-home-flow-connector::after,
  .tc-home-flow-connector--reverse::after {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation-name: tc-home-flow-tracer-vertical;
  }

  .tc-home-flow-relay-wrap {
    min-height: 84px;
  }

  .tc-home-benefits-grid,
  .tc-home-brokers-grid,
  .tc-price-enterprise__metrics,
  .tc-status-kpis,
  .tc-topic-grid {
    grid-template-columns: 1fr;
  }

  .tc-home-flow-legend,
  .tc-home-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tc-home-flow-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-home-flow-legend span {
    white-space: normal;
  }

  .tc-home-hero-grid,
  .tc-home-section-head,
  .tc-home-dashboard-grid,
  .tc-price-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tc-home-nav__links a.is-active::after {
    bottom: -10px;
  }

  .tc-status-kpi {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .tc-status-kpi:last-child {
    border-bottom: none;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 20px;
  }

  .tc-home-nav__inner {
    gap: 14px;
  }

  .tc-home-nav__login {
    display: none;
  }

  .tc-home-nav__inner > .tc-home-button {
    display: none;
  }

  .tc-home-footer__meta {
    flex-direction: column;
  }

  .tc-price-hero__grid,
  .tc-price-section__inner,
  .tc-price-enterprise__grid,
  .tc-status-hero__inner,
  .tc-contact-page .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tc-price-hero__grid {
    padding-top: 54px;
    padding-bottom: 40px;
  }

  .tc-price-plan {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .tc-price-plan:last-child {
    border-bottom: none;
  }

  .tc-price-plan__price {
    font-size: 46px;
  }

  .tc-status-section-head,
  .tc-status-group__head,
  .tc-status-service,
  .tc-status-global__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .tc-status-service__right {
    justify-content: flex-start;
  }

  .tc-contact-form-card,
  .tc-aside-card,
  .tc-contact-hero-card {
    padding: 16px;
  }

  .tc-field-row,
  .tc-contact-hero-card__rows div {
    grid-template-columns: 1fr;
  }

  .tc-form-footer {
    align-items: stretch;
  }

  .tc-form-footer .btn {
    width: 100%;
  }

  .tc-home-flow-wrap {
    margin-top: 44px;
  }

  .tc-home-flow-card {
    padding: 16px;
  }

  .tc-home-flow-title {
    font-size: 19px;
  }

  .tc-home-flow-row {
    grid-template-columns: 66px minmax(0, 1fr);
    font-size: 11px;
  }

  .tc-home-relay-node {
    width: min(214px, 100%);
  }

  .tc-home-flow-legend {
    grid-template-columns: 1fr;
  }
}
