.trust-chain-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.tc-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem 1rem 0;
}

.tc-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.tc-hero .gradient-text {
  background: linear-gradient(135deg, #34d399 0%, #2dd4bf 45%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tc-lead {
  max-width: 44rem;
  margin: 0 auto 1.35rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.tc-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.tc-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.tc-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.tc-stat {
  text-align: center;
  min-width: 7rem;
}

.tc-stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #34d399;
}

.tc-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.tc-section {
  margin-bottom: 2.75rem;
}

.tc-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  margin-bottom: 0.75rem;
}

.tc-section-intro {
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

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

.tc-compare-card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tc-compare-card--good {
  border-color: color-mix(in srgb, #34d399 35%, var(--border));
  background: color-mix(in srgb, #34d399 6%, var(--surface));
}

.tc-compare-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.tc-compare-card p,
.tc-compare-card li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tc-compare-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.tc-chain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.tc-chain-card {
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid #34d399;
}

.tc-chain-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.tc-chain-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.tc-chain-hops {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  color: var(--muted);
}

.tc-chain-hops span:not(.tc-hop-arrow) {
  padding: 0.15rem 0.45rem;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: 4px;
}

.tc-hop-arrow {
  color: #34d399;
  font-weight: 600;
}

.tc-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tc-step {
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, #34d399 18%, transparent);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.tc-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.tc-step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.tc-live {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, #34d399 22%, var(--border));
  border-radius: var(--radius);
}

.tc-live-header {
  text-align: center;
  margin-bottom: 1rem;
}

.tc-live-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #34d399;
  background: color-mix(in srgb, #34d399 12%, transparent);
  border: 1px solid color-mix(in srgb, #34d399 28%, transparent);
  border-radius: 999px;
}

.tc-cta {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, #34d399 8%, var(--surface)) 0%,
    var(--surface) 100%
  );
  border: 1px solid color-mix(in srgb, #34d399 25%, var(--border));
  border-radius: var(--radius);
}

.tc-cta h2 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.tc-cta p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.tc-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .tc-compare,
  .tc-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trust-chain-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
