:root {
  --primary-gradient: linear-gradient(135deg, #2563eb, #9333ea);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --bg-dark: #0f172a;
}

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

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

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.glass-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.app-name {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

main {
  margin-top: 100px;
  padding: 0 5%;
}

.hero {
  min-height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 4rem 2rem;
}

.hero-content {
  flex: 1;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #2563eb;
  -webkit-text-fill-color: #2563eb;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {
  background: var(--primary-gradient);
  color: white;
}

.secondary-btn {
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 300px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.3));
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.feature-card {
  padding: 3rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card .icon {
  font-size: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.separator {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 4rem 0;
}

.legal-content {
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.last-updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 1rem 0 3rem;
}

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

.legal-section h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #2563eb;
}

.legal-section ul {
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

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

.legal-section a {
  color: #2563eb;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 3rem;
  border-radius: 20px 20px 0 0;
}

footer p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 6rem;
  }
  .gradient-text {
    font-size: 2.5rem;
  }
  .cta-buttons {
    justify-content: center;
  }
  .legal-content {
    padding: 2rem;
  }
}
