:root {
  --bg: #070b16;
  --bg-soft: #0d1426;
  --card: #101a33;
  --text: #eaf0ff;
  --muted: #9eb0d9;
  --brand: #3f82ff;
  --brand-2: #4fe0ff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(1000px 600px at 20% -5%, #1a2f60 0%, transparent 60%),
    radial-gradient(800px 500px at 90% 20%, #0f4b64 0%, transparent 60%), var(--bg);
  color: var(--text);
}

body {
  padding: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.bg-orb {
  position: fixed;
  filter: blur(90px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: #2b77ff;
  top: -90px;
  right: 8%;
}

.orb-2 {
  width: 240px;
  height: 240px;
  background: #1ac8d5;
  bottom: 8%;
  left: -80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 11, 24, 0.7);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 14px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.navlinks {
  display: flex;
  gap: 1rem;
}

.navlinks a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

main {
  padding-top: 2rem;
}

.hero {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(10, 18, 38, 0.95), rgba(10, 22, 46, 0.78));
  box-shadow: var(--shadow);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #9ec3ff;
  font-weight: 800;
  font-size: 0.77rem;
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  max-width: 900px;
}

.hero-copy {
  max-width: 760px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.anon-badge {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 224, 255, 0.45);
  background: rgba(79, 224, 255, 0.12);
  color: #c8f8ff;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}

.btn-outline {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.hero-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.stat-card h3 {
  font-size: 1.6rem;
}

.stat-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section {
  margin-top: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-soft);
  padding: 2rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section h2 {
  font-size: clamp(1.45rem, 3.6vw, 2.3rem);
}

.legal-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.legal-section h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-section ul {
  margin-top: 0.3rem;
  padding-left: 1rem;
}

.legal-section a {
  color: #9ec3ff;
}

.cards {
  display: grid;
  gap: 1rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.feature-card h3 {
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--muted);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.3rem;
}

.split p {
  color: var(--muted);
  line-height: 1.7;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
}

.pricing {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  background: rgba(14, 27, 53, 0.78);
  max-width: 560px;
  width: 100%;
}

.price-card .badge {
  display: inline-block;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  background: rgba(63, 130, 255, 0.2);
  color: #bad2ff;
  font-weight: 800;
  font-size: 0.75rem;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin: 0.3rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.full {
  width: 100%;
}

.download {
  text-align: center;
}

.download p {
  color: var(--muted);
}

.store-row {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  min-width: 220px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.footer {
  margin: 1.5rem 0 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 0.8rem;
}

@media (max-width: 1024px) {
  .three-up,
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .navlinks {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0.85rem;
  }

  .hero,
  .section {
    padding: 1.2rem;
  }

  .topbar {
    padding: 0.65rem 0.75rem;
  }
}
