:root {
  --bg: #0A0F1F;
  --panel: #131A2E;
  --panel-2: #1A2341;
  --line: #233052;
  --text: #E2E8F0;
  --text-2: #94A3B8;
  --prose: #CBD5E1;
  --accent: #4F7DFF;
  --accent-2: #22D3EE;
  --on-accent: #FFFFFF;
  --radius: 14px;
}

body {
  background: var(--bg);
  color: var(--prose);
}

.hero {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 125, 255, 0.15), transparent 70%);
}

.section {
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  color: var(--accent-2);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent);
}

.site-header {
  background: rgba(19, 26, 46, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.card, .feature, .faq-item, .tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px -22px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.card:hover, .feature:hover, .faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px -20px rgba(79, 125, 255, 0.4), 0 0 0 1px var(--accent);
  transform: translateY(-2px);
}

.btn, button {
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px -6px rgba(79, 125, 255, 0.5);
}

.btn:hover, button:hover {
  background: var(--accent);
  box-shadow: 0 6px 20px -4px rgba(79, 125, 255, 0.7), 0 0 24px rgba(79, 125, 255, 0.3);
  transform: translateY(-1px);
}

.badge {
  background: rgba(79, 125, 255, 0.15);
  color: var(--accent-2);
  border: 1px solid var(--accent);
  border-radius: calc(var(--radius) * 0.6);
  font-weight: 600;
}

.icon {
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(79, 125, 255, 0.4));
}

.tab {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.tab:hover, .tab.active {
  background: var(--panel-2);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(79, 125, 255, 0.25);
}

input, textarea, select {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.25s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 125, 255, 0.15);
}

table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

th {
  background: var(--panel-2);
  color: var(--text);
  font-weight: 600;
}

td {
  border-top: 1px solid var(--line);
}

tr:hover {
  background: rgba(79, 125, 255, 0.05);
}

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card, .feature {
  animation: fadeIn 0.6s ease backwards;
}