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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #2a2d7a 0, #18142e 40%, #070816 100%);
  color: #f5f7ff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(7, 8, 22, 0.95),
    rgba(7, 8, 22, 0.7)
  );
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 19px;
}

.logo-subtitle {
  font-size: 11px;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  background: linear-gradient(
    135deg,
    rgba(93, 154, 255, 0.14),
    rgba(192, 119, 255, 0.1)
  );
  transition: background 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
}

.nav-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(93, 154, 255, 0.28),
    rgba(192, 119, 255, 0.22)
  );
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Hero */

main {
  padding: 40px 0 60px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.86;
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 205, 255, 0.08);
  border: 1px solid rgba(86, 209, 255, 0.4);
}

.badge.purple {
  background: rgba(189, 132, 255, 0.12);
  border-color: rgba(229, 179, 255, 0.5);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #23c3ff, #3e80ff);
  box-shadow: 0 14px 40px rgba(12, 166, 255, 0.55);
  color: #ffffff;
  margin-bottom: 10px;
}

.primary-cta span {
  margin-left: 6px;
  font-size: 18px;
}

/* Screenshots */

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.screenshots img {
  width: 50%;
  max-width: 270px;
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.7);
  margin: 0 auto;
}

/* Sections */

.section {
  margin-top: 60px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  opacity: 0.78;
  max-width: 650px;
  margin-bottom: 26px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: radial-gradient(circle at top left, #3f2a7c 0, #171321 62%);
  border-radius: 22px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.88;
}

.support-card {
  background: radial-gradient(circle at top left, #215b96 0, #121822 70%);
}

/* Legal pages */

.legal-main {
  padding: 40px 0 60px;
}

.legal h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 26px;
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.legal-section p,
.legal-section li {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.legal-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

/* Footer */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 24px;
  background: radial-gradient(
    circle at bottom,
    rgba(97, 69, 196, 0.6),
    rgba(4, 6, 15, 0.98)
  );
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-link-btn {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  background: transparent;
}

/* Responsive */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p,
  .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-media {
    order: -1;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}
