:root {
  --bg: #1a2332;
  --ink: #f0f3f7;
  --muted: #9aabbd;
  --accent: #6ec6a0;
  --line: rgba(240, 243, 247, 0.12);
  --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

.splash {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 32rem;
  margin: 0 auto;
}

.brand-mark {
  display: block;
  border-radius: 20%;
  margin: 0 auto 1rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.18);
}

.brand-name {
  font-weight: 750;
}

.badge {
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2.2rem, 8vw, 3rem);
  letter-spacing: -0.02em;
}

.tagline {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 600;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1rem;
}

.pills {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pills li {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 0 0 1rem;
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cta-primary {
  color: #1a2332;
  background: var(--accent);
  border: 1px solid transparent;
}

.cta-primary:hover {
  filter: brightness(1.06);
}

.cta-secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.cta-secondary:hover {
  border-color: var(--accent);
}

.cta-note {
  margin: 0 0 2rem;
  max-width: 26rem;
  color: var(--muted);
  font-size: 0.82rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  width: 100%;
}

.footer-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-link:hover {
  color: var(--accent);
}

.pricing .lede {
  max-width: 36rem;
}

.price-grid {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 1.5rem;
}

@media (min-width: 720px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.price-card {
  padding: 1.25rem 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
}

.price-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.price-now {
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.price-card .price {
  margin: 0.35rem 0 0.75rem;
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.price-card .price span,
.price-alt {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.price-alt {
  margin: -0.4rem 0 0.85rem;
}

.price-card ul {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card li {
  margin: 0.35rem 0;
}

.price-card .cta {
  width: 100%;
  margin: 0 0 0.5rem;
  min-width: 0;
}

.price-card-pro {
  border-color: rgba(110, 198, 160, 0.45);
}

/* Privacy page */
.legal {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  text-align: left;
}

.legal h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal h2 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--accent);
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal .back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.legal .back:hover {
  text-decoration: underline;
}
