:root {
  --bg: #160A2B;
  --panel: #241141;
  --panel-2: #1A0D32;
  --line: #3A1F63;
  --text: #E8D7F5;
  --text-2: #B89FCC;
  --prose: #D4C3E0;
  --accent: #8238B3;
  --accent-2: #D7AC28;
  --on-accent: #FFFFFF;
  --radius: 8px;
}

body {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(130, 56, 179, 0.12), transparent 70%), 
              linear-gradient(180deg, var(--bg) 0%, #0F0520 100%);
  background-attachment: fixed;
}

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

.hero-title {
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.card:hover, .feature:hover, .tile:hover {
  box-shadow: 0 0 24px rgba(130, 56, 179, 0.45), 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
}

.btn {
  border-radius: calc(var(--radius) * 1.5);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #6B2A9E 100%);
  border-bottom: 2px solid var(--accent-2);
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
}

.btn-primary:hover {
  box-shadow: 0 0 24px rgba(130, 56, 179, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(130, 56, 179, 0.15);
  border-color: var(--accent-2);
  box-shadow: 0 0 20px rgba(130, 56, 179, 0.3);
}

.hero {
  background: radial-gradient(ellipse 100% 60% at 50% 40%, rgba(130, 56, 179, 0.18), transparent),
              var(--panel-2);
  border-bottom: 1px solid var(--line);
}

.badge {
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent-2);
  border-radius: calc(var(--radius) * 2);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.feature .icon {
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(130, 56, 179, 0.4));
}

.tab {
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
  font-weight: 600;
}

.tab.active {
  border-bottom-color: var(--accent-2);
  color: var(--accent);
}

.tab:hover {
  color: var(--accent);
}

.tile {
  position: relative;
  overflow: hidden;
}

.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(130, 56, 179, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tile:hover::before {
  opacity: 1;
}

.offer {
  background: linear-gradient(135deg, var(--panel) 0%, #2A1450 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 0 32px rgba(130, 56, 179, 0.35);
}

.offer-badge {
  background: var(--accent-2);
  color: var(--bg);
  font-weight: 700;
}

.offer-amount {
  color: var(--accent-2);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(215, 172, 40, 0.3);
}

.chip {
  background: var(--panel);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}

.chip:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(130, 56, 179, 0.3);
}

.access {
  background: var(--panel);
  border-left: 3px solid var(--accent-2);
}

.faq-q {
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.faq-item[open] .faq-q {
  color: var(--accent);
}

.table {
  border: 1px solid var(--line);
}

.table thead {
  background: var(--panel);
  border-bottom: 2px solid var(--accent);
}

.table tbody tr:hover {
  background: rgba(130, 56, 179, 0.08);
}