:root {
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --bg: #0F172A;
  --surface: #1E293B;
  --text: #F8FAFC;
  --text-dim: #94A3B8;
  --success: #10B981;
  --glass: rgba(30, 41, 59, 0.7);
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Premium Background --- */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #0f172a 100%);
}

.orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
}

/* --- Typography --- */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* --- Hero Section --- */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

.logo-container {
  width: 120px;
  height: 120px;
  background: var(--surface);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* --- Legal Content --- */
.legal-content {
  padding: 4rem 0;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 4rem;
}

/* --- Footer --- */
footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
}

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

/* --- Animations --- */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-in {
  animation: fadeInScale 0.8s ease forwards;
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .glass-card { padding: 1.5rem; }
}
