*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--selection-bg);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20, 184, 166, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(34, 211, 238, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(251, 191, 36, 0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-300);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.text-xs { font-size: 12px; line-height: 16px; }
.text-sm { font-size: 14px; line-height: 20px; }
.text-base { font-size: 16px; line-height: 24px; }
.text-lg { font-size: 18px; line-height: 28px; }
.text-xl { font-size: 20px; line-height: 28px; }
.text-2xl { font-size: 24px; line-height: 32px; }
.text-3xl { font-size: 30px; line-height: 36px; }
.text-4xl { font-size: 36px; line-height: 40px; }
.text-5xl { font-size: 48px; line-height: 52px; }
.text-6xl { font-size: 60px; line-height: 64px; }

.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--primary-400); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary-300), var(--primary-400), var(--secondary-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: var(--text-inverse);
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
  color: var(--text-inverse);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 18px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 14px;
}

.btn-glow {
  animation: tc-pulse-glow 3s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary-400);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.card {
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-5);
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary-400);
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-teal {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15), transparent 70%);
}

.orb-cyan {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
}

.orb-amber {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08), transparent 70%);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tag-teal {
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary-400);
}

.tag-amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--secondary-400);
}

.input-field {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    inset 4px 4px 8px var(--neu-shadow-dark),
    inset -4px -4px 8px var(--neu-shadow-light);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow:
    inset 4px 4px 8px var(--neu-shadow-dark),
    inset -4px -4px 8px var(--neu-shadow-light),
    0 0 0 3px rgba(34, 211, 238, 0.1);
}

.input-field::placeholder {
  color: var(--text-muted);
}

.wp-block-image img,
.wp-block-cover img {
  border-radius: var(--radius-lg);
}

.tc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.tc-navbar.is-scrolled {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(calc(var(--glass-blur) * 1.5));
  -webkit-backdrop-filter: blur(calc(var(--glass-blur) * 1.5));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px var(--neu-shadow-dark);
  padding: var(--space-3) 0;
}

.tc-navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.tc-navbar-logo:hover {
  color: var(--text-primary);
}

.tc-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.tc-nav-links li a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.tc-nav-links li a:hover,
.tc-nav-links li.current-menu-item a {
  color: var(--text-primary);
  background: var(--border-subtle);
}

.tc-navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tc-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
}

.tc-theme-toggle:hover {
  color: var(--text-primary);
  background: var(--border-subtle);
}

[data-theme="dark"] .tc-theme-icon-light { display: none; }
[data-theme="dark"] .tc-theme-icon-dark { display: block; }
[data-theme="light"] .tc-theme-icon-dark { display: none; }
[data-theme="light"] .tc-theme-icon-light { display: block; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.nav-mobile-overlay.is-open .nav-mobile-panel {
  transform: translateX(0);
}

.nav-mobile-header {
  margin-bottom: var(--space-8);
}

.nav-mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-8);
}

.nav-mobile-links li a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.nav-mobile-links li a:hover {
  background: var(--border-subtle);
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.tc-footer {
  position: relative;
  z-index: 1;
  padding: var(--space-16) 0 var(--space-8);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.footer-logo:hover {
  color: var(--text-primary);
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--border-subtle);
  color: var(--text-secondary);
  font-size: 18px;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  color: var(--primary-400);
  background: rgba(20, 184, 166, 0.1);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col li a {
  color: var(--text-secondary);
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col li a:hover {
  color: var(--text-primary);
}

.newsletter-input-wrap {
  display: flex;
  gap: var(--space-2);
}

.newsletter-input-wrap .input-field {
  flex: 1;
  min-width: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

.tc-pagination {
  display: flex;
  justify-content: center;
}

.tc-pagination .nav-links {
  display: flex;
  gap: var(--space-2);
}

.tc-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.2s ease;
}

.tc-pagination .page-numbers.current,
.tc-pagination .page-numbers:hover {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  border-color: transparent;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: center;
}

.hiw-step {
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
}

.hiw-number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.hiw-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--space-5);
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary-400);
}

.hiw-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.hiw-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-table {
  display: flex;
  gap: var(--space-6);
  align-items: stretch;
  justify-content: center;
}

.pricing-card {
  flex: 1;
  max-width: 380px;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-featured {
  transform: scale(1.04);
  z-index: 2;
}

.pricing-popular-badge {
  position: absolute;
  top: calc(var(--space-4) * -1);
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: var(--text-inverse);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  font-weight: 400;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.pricing-desc {
  margin-bottom: var(--space-6);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--primary-400);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.testimonial-card {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--secondary-400);
  font-size: 16px;
}

.testimonial-card blockquote p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-toggle:hover {
  color: var(--primary-400);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-content {
  max-height: 300px;
}

.faq-content p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card-thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-raised);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.03);
}

.blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--text-muted);
}

.blog-card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.blog-card-cat {
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary-400);
  font-size: 12px;
  font-weight: 600;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-2);
}

.blog-card-title a {
  color: var(--text-primary);
}

.blog-card-title a:hover {
  color: var(--primary-400);
}

.blog-card-excerpt {
  line-height: 1.6;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
}

select.input-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.tc-prose {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.tc-prose h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.tc-prose h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.tc-prose p {
  margin-bottom: var(--space-5);
}

.tc-prose a {
  color: var(--primary-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tc-prose ul,
.tc-prose ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tc-prose li {
  list-style: disc;
}

.tc-prose ol li {
  list-style: decimal;
}

.tc-prose code {
  background: var(--bg-raised);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
}

.tc-prose pre {
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  overflow-x: auto;
  margin-bottom: var(--space-5);
}

.tc-prose pre code {
  background: none;
  padding: 0;
  font-size: 14px;
}

.tc-prose blockquote {
  border-left: 3px solid var(--primary-400);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--text-muted);
}

.tc-prose img {
  border-radius: var(--radius-lg);
  margin: var(--space-6) 0;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 15px;
  color: var(--text-secondary);
}

.feature-checklist li i {
  margin-top: 3px;
  flex-shrink: 0;
}

.comparison-table table th,
.comparison-table table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
}

.comparison-table table th {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: var(--bg-raised);
}

.comparison-table table td {
  color: var(--text-secondary);
}

.comp-feature-col {
  text-align: left;
  width: 30%;
}

.comp-plan-col {
  width: 23.3%;
}

.docs-nav-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.docs-nav-link:hover,
.docs-nav-link.active {
  color: var(--primary-400);
  background: rgba(20, 184, 166, 0.06);
}

.docs-code {
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
