@layer custom { :root {
    --primary: 204 72% 43%;
    --primary-foreground: 0 0% 100%;
    --trust-gradient-from: 204 72% 43%;
    --background: 0 0% 94%;
    --foreground: 0 0% 5%;
    --font-sans: Inter, sans-family;
  }

[data-tc-faq-item] {
  position: relative;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 60%, #1e293b 100%);
  color: #e2e8f0;
  box-shadow:
    0 16px 40px -24px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  overflow: hidden;
}
[data-tc-faq-item]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(59, 130, 246, 0.22),
    transparent 50%
  );
  pointer-events: none;
}
[data-tc-faq-question] {
  padding: 14px 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e2e8f0;
}
[data-tc-faq-answer] {
  padding: 0 16px 16px 16px;
  color: #cbd5e1;
}
[data-tc-modal="document"] {
  border: 1px solid hsl(var(--primary));
}
[data-tc-modal="request-access"] {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}
[data-tc-modal="nda"] {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: #e2e8f0;
}
[data-tc-modal="alert"] {
  border: 1px solid hsl(var(--destructive));
} }