:root {
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --text: #0E0E12;
  --muted: #6B6B73;
  --coral: #FF5C8D;
  --coral-deep: #E03A6F;
  --mint: #B8E8D4;
  --lavender: #D9D2FF;
  --butter: #FFE8B8;
  --coral-soft: #FFB6A3;
  --stroke: rgba(14, 14, 18, 0.06);
  --radius: 28px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0E0E12;
    --surface: #17171C;
    --text: #F5F5F2;
    --muted: #9A9AA3;
    --stroke: rgba(255, 255, 255, 0.08);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "SF Pro Rounded", "SF Pro Display", "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  line-height: 1.5;
}

a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-deep); }

.shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 28px 120px;
  position: relative;
}

.blobs {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blobs::before, .blobs::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.blobs::before { background: var(--coral-soft); top: -180px; left: -180px; }
.blobs::after { background: var(--lavender); bottom: -200px; right: -160px; }
@media (prefers-color-scheme: dark) {
  .blobs::before, .blobs::after { opacity: 0.18; }
}

.icon-tile {
  width: 96px; height: 96px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(255, 92, 141, 0.28), 0 8px 18px rgba(0,0,0,0.08);
  background: white;
  position: relative;
  z-index: 1;
}
.icon-tile img { width: 100%; height: 100%; display: block; }

h1, h2, h3 { letter-spacing: -1.5px; line-height: 1.05; }
h1 { font-size: 64px; font-weight: 900; margin-top: 28px; }
h2 { font-size: 28px; font-weight: 800; margin-top: 56px; }
h3 { font-size: 18px; font-weight: 800; margin-top: 24px; letter-spacing: -0.5px; }

.lead {
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
  margin-top: 18px;
  max-width: 540px;
  line-height: 1.35;
}

p { margin-top: 14px; font-size: 16px; color: var(--text); }
ul { margin-top: 14px; padding-left: 22px; }
li { font-size: 16px; margin-top: 6px; }

.features {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.feature .dot {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feature:nth-child(2) .dot { background: var(--lavender); }
.feature:nth-child(3) .dot { background: var(--butter); }
.feature:nth-child(4) .dot { background: var(--coral-soft); }
.feature:nth-child(5) .dot { background: var(--mint); }
.feature .text { font-weight: 700; letter-spacing: -0.3px; }

.cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--coral), var(--coral-deep));
  color: white;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 92, 141, 0.38);
  transition: transform 0.12s ease;
}
.cta:hover { transform: translateY(-1px); color: white; }
.cta.ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--stroke);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.cta.ghost:hover { color: var(--text); }

footer {
  margin-top: 96px;
  font-size: 13px;
  color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 14px;
}

.muted { color: var(--muted); font-size: 14px; }
.tag {
  display: inline-block;
  background: var(--butter);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Privacy / FAQ pages — long-form prose */
.prose h2 { font-size: 22px; margin-top: 40px; }
.prose h3 { font-size: 16px; margin-top: 22px; letter-spacing: -0.2px; }
.prose p, .prose li { font-size: 16px; line-height: 1.6; }
.prose ul { margin-top: 10px; }
.prose .meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
