/* LegalPrizm Static Website Styles */
/* Base styles matching Tailwind design */

/* CSS Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-800: #1e40af;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-800: #166534;

  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;

  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;

  --yellow-50: #fefce8;
  --yellow-400: #facc15;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;

  --amber-50: #fffbeb;
  --amber-400: #fbbf24;

  --red-100: #fee2e2;
  --red-500: #ef4444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--indigo-600);
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-nav { display: flex; }
}

.navbar-nav a {
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-nav a:hover {
  color: var(--gray-900);
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .navbar-actions { display: flex; }
}

.navbar-mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .navbar-mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  color: var(--gray-700);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--indigo-600);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--indigo-700);
}

.btn-secondary {
  background-color: #fff;
  color: var(--indigo-600);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background-color: var(--gray-50);
}

.btn-white {
  background-color: #fff;
  color: var(--indigo-600);
}

.btn-white:hover {
  background-color: var(--gray-100);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  padding: 2rem 0;
  background: linear-gradient(to bottom, var(--indigo-50), #fff);
}

@media (min-width: 768px) {
  .hero { padding: 2rem 0; }
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.5rem; }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

.section-gray {
  background-color: var(--gray-50);
}

.section-indigo {
  background-color: var(--indigo-600);
  color: #fff;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Cards */
.card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card-icon-blue { background-color: var(--blue-100); color: var(--blue-600); }
.card-icon-green { background-color: var(--green-100); color: var(--green-600); }
.card-icon-purple { background-color: var(--purple-100); color: var(--purple-600); }
.card-icon-orange { background-color: var(--orange-100); color: var(--orange-600); }
.card-icon-indigo { background-color: var(--indigo-100); color: var(--indigo-600); }

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Feature Cards */
.feature-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

/* Pricing */
.pricing-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.pricing-card-featured {
  border: 2px solid var(--indigo-600);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--indigo-600);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
}

.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.pricing-features svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-500);
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); }
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  max-width: 20rem;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-copyright a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  background-color: var(--gray-50);
  padding: 2rem 0;
}

.legal-container {
  max-width: 56rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.legal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-section p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .legal-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.legal-nav-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.legal-nav a {
  display: block;
  color: var(--indigo-600);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.legal-nav a:hover {
  color: var(--indigo-500);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Contact Form */
.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.form-message-success {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}

.form-message-error {
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 1rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

th {
  background-color: var(--gray-50);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.badge-blue { background-color: var(--blue-100); color: var(--blue-800); }
.badge-green { background-color: var(--green-100); color: var(--green-800); }
.badge-purple { background-color: var(--purple-100); color: var(--purple-600); }
.badge-orange { background-color: var(--orange-100); color: var(--orange-600); }
.badge-indigo { background-color: var(--indigo-100); color: var(--indigo-600); }

/* Alert Boxes */
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.alert-warning {
  background-color: var(--yellow-50);
  border-left: 4px solid var(--yellow-400);
}

.alert-info {
  background-color: var(--blue-50);
  border-left: 4px solid var(--blue-400);
}

.alert-amber {
  background-color: var(--amber-50);
  border-left: 4px solid var(--amber-400);
}

.alert-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Info Box */
.info-box {
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* Stats */
.stats-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--indigo-600);
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.team-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background-color: var(--gray-200);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.team-role {
  font-size: 0.875rem;
  color: var(--indigo-600);
}

/* Article Cards */
.article-card {
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.article-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-content {
  padding: 1.5rem;
}

.article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-title a:hover {
  color: var(--indigo-600);
}

.article-excerpt {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.article-link {
  color: var(--indigo-600);
  font-weight: 600;
  font-size: 0.875rem;
}

.article-link:hover {
  color: var(--indigo-700);
}

.article-icon {
  font-size: 1.875rem;
}

/* Featured Article */
.featured-article {
  background: linear-gradient(to right, var(--indigo-50), var(--blue-50));
  border-radius: 1rem;
  overflow: hidden;
}

.featured-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

.featured-content {
  padding: 2rem;
}

@media (min-width: 1024px) {
  .featured-content { padding: 3rem; }
}

.featured-image {
  min-height: 16rem;
  background: linear-gradient(to bottom right, var(--indigo-400), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* Newsletter */
.newsletter-box {
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  border-radius: 1rem;
  padding: 3rem;
  color: #fff;
  text-align: center;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
  color: var(--gray-900);
}

.newsletter-input::placeholder {
  color: var(--gray-500);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

/* Security Page */
.security-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.security-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

/* Code Block */
.code-block {
  background-color: var(--gray-900);
  color: var(--green-400);
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-family: monospace;
  font-size: 0.875rem;
}

/* Access Matrix Table */
.access-matrix {
  margin-top: 1.5rem;
}

.access-matrix th,
.access-matrix td {
  text-align: center;
  padding: 0.5rem;
}

.access-matrix td:first-child {
  text-align: left;
  font-weight: 500;
}

.check-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-500);
}

.partial-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--yellow-500);
}

.x-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-300);
}

/* Categories Grid */
.category-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.2s;
}

.category-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.category-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-indigo-600 { color: var(--indigo-600); }
.text-indigo-200 { color: var(--indigo-200); }
.text-white { color: #fff; }

.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-indigo-50 { background-color: var(--indigo-50); }
.bg-indigo-600 { background-color: var(--indigo-600); }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* API Documentation Styles */
.code-block {
  background-color: var(--gray-900);
  color: #e5e7eb;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-block code {
  color: #a5f3fc;
}

/* API Method Badges */
.method-get,
.method-post,
.method-put,
.method-delete {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-get {
  background-color: var(--green-100);
  color: var(--green-800);
}

.method-post {
  background-color: var(--blue-100);
  color: var(--blue-800);
}

.method-put {
  background-color: var(--yellow-100);
  color: var(--yellow-800);
}

.method-delete {
  background-color: #fee2e2;
  color: #991b1b;
}

/* Badge Variants */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: var(--gray-100);
  color: var(--gray-700);
}

.badge-success {
  background-color: var(--green-100);
  color: var(--green-800);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--indigo-500);
  border-radius: 50%;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
}

.cta-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-card .btn-primary {
  background-color: #fff;
  color: var(--indigo-600);
}

.cta-card .btn-primary:hover {
  background-color: var(--gray-100);
}

.cta-card .btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-card .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Legal Table Enhancement for API docs */
.legal-table code {
  background-color: var(--gray-100);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.8125rem;
  color: var(--gray-800);
}

/* Transition */
.transition {
  transition: all 0.2s ease-in-out;
}

/* Space Y */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
