/* Global */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #05050a;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Aurora Canvas */
.background {
  position: fixed;
  inset: 0;
  z-index: -1;
}

#aurora {
  width: 100%;
  height: 100%;
  display: block;
}

/* Navigation */
.nav {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 14px;
  height: 14px;
  background: #b45cff;
  border-radius: 50%;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
}

.nav-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.nav-btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.nav-btn.solid {
  background: #7a5cff;
  border: none;
  color: white;
}

/* Hero */
.hero {
  margin-top: 160px;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
  font-size: 18px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.primary-cta, .secondary-cta {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.primary-cta {
  background: #7a5cff;
  border: none;
  color: white;
}

.secondary-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.hero-note {
  margin-top: 20px;
  opacity: 0.6;
  font-size: 14px;
}

/* Pills */
.pill-row {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  font-size: 14px;
}

/* Cards */
.grid {
  margin: 100px auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 0 20px;
}

.card {
  background: rgba(255,255,255,0.06);
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.card h2 {
  margin-top: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  margin-top: 80px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  opacity: 0.5;
  font-size: 14px;
}

/* Privacy Section */
.privacy-section {
  max-width: 800px;
  margin: 120px auto;
  padding: 0 20px;
  text-align: center;
}

.privacy-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.privacy-section p {
  opacity: 0.85;
  font-size: 18px;
  margin-bottom: 30px;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 600px;
  text-align: left;
}

.privacy-list li {
  background: rgba(255,255,255,0.06);
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  backdrop-filter: blur(8px);
}

.privacy-note {
  opacity: 0.6;
  font-size: 14px;
  margin-top: 20px;
}
