:root {
  --bg-dark: #0f1115;
  --bg-card: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.1);
  --accent: #5EEAD4;
  --accent-hover: #0D9488;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --glow: 0 0 40px rgba(94, 234, 212, 0.1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 1rem; }
p { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 1.5rem; max-width: 600px; }

/* Layout Strings */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(94,234,212,0.15) 0%, rgba(15,17,21,0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Glass Components */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--glow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: left;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(94, 234, 212, 0.3);
}

/* Legal Documents Layout */
.legal-content {
  padding: 6rem 0;
}

.legal-content h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  color: var(--text-primary);
}

.legal-content p, .legal-content ul, .legal-content li {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 800px;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Header & Footer */
header {
  padding: 2rem 0;
  position: absolute;
  top: 0; left: 0; right: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #10B981 100%);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

footer {
  padding: 4rem 0 2rem;
  text-align: center;
  margin-top: auto;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Utilities */
.text-accent {
  background: linear-gradient(135deg, #5EEAD4 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(94, 234, 212, 0.1);
  color: var(--accent);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(94, 234, 212, 0.2);
}
