:root {
  --navy: #23234e;
  --navy-deep: #0e0e2a;
  --lavender: #8b7cf6;
  --peach: #fc8a6e;
  --muted: #56546b;
  --card: rgba(255, 255, 255, 0.66);
  --stroke: rgba(255, 255, 255, 0.85);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: linear-gradient(135deg, #f1edff 0%, #f6e6f2 55%, #ffd9cd 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(139, 124, 246, 0.12);
}
.nav-inner {
  max-width: 1040px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand span { font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lavender); }
@media (max-width: 620px) { .nav-links { gap: 16px; font-size: 0.88rem; } }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 96px 24px 72px; position: relative; overflow: hidden; }
.hero-icon { width: 108px; height: 108px; border-radius: 26px; box-shadow: 0 24px 60px rgba(35, 35, 78, 0.22); margin-bottom: 34px; }
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--lavender), var(--peach));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  max-width: 560px; margin: 22px auto 0; font-size: 1.15rem; color: var(--muted);
}
.cta-row { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 1rem; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 14px 34px rgba(35, 35, 78, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(35, 35, 78, 0.34); }
.btn-ghost {
  color: var(--navy); border: 1.5px solid rgba(35, 35, 78, 0.22);
  background: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { border-color: var(--lavender); color: var(--lavender); }
.hero-note { margin-top: 18px; font-size: 0.85rem; color: var(--muted); opacity: 0.8; }

/* floating sparkles */
.spark { position: absolute; opacity: 0.5; animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* ---------- Feature grid ---------- */
.features { padding: 30px 0 80px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--stroke); border-radius: 24px;
  padding: 30px 26px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(35, 35, 78, 0.08);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
.card .ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(139,124,246,0.16), rgba(252,138,110,0.16));
  margin-bottom: 18px; font-size: 1.4rem;
}
.card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Privacy banner ---------- */
.privacy-band {
  margin: 20px 0 90px;
  background: var(--navy-deep);
  border-radius: 30px; padding: 56px 48px; color: #fff;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  box-shadow: 0 30px 70px rgba(14, 14, 42, 0.35);
}
.privacy-band .txt { flex: 1 1 380px; }
.privacy-band h2 { font-family: "Fraunces", Georgia, serif; font-size: 2rem; font-weight: 600; margin-bottom: 14px; }
.privacy-band h2 em { font-style: italic; color: #ffb49e; }
.privacy-band p { color: rgba(255, 255, 255, 0.75); max-width: 520px; }
.privacy-band ul { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.privacy-band li { display: flex; gap: 10px; align-items: baseline; color: rgba(255,255,255,0.9); font-size: 0.98rem; }
.privacy-band li::before { content: "✦"; color: var(--peach); font-size: 0.8rem; }
.privacy-band .btn { background: #fff; color: var(--navy-deep); }

/* ---------- Legal pages ---------- */
.doc-hero { text-align: center; padding: 70px 24px 34px; }
.doc-hero h1 { font-family: "Fraunces", Georgia, serif; font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 600; }
.doc-hero .date {
  display: inline-block; margin-top: 14px; font-size: 0.85rem; font-weight: 600;
  color: var(--lavender); background: rgba(139, 124, 246, 0.12);
  padding: 6px 16px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase;
}
.doc {
  max-width: 760px; margin: 0 auto 90px;
  background: var(--card); border: 1px solid var(--stroke); border-radius: 28px;
  padding: 52px clamp(24px, 6vw, 64px);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(35, 35, 78, 0.1);
}
.doc h2 {
  font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; font-weight: 600;
  margin: 40px 0 12px; padding-top: 8px;
}
.doc h2:first-of-type { margin-top: 0; }
.doc h2::after {
  content: ""; display: block; width: 44px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--lavender), var(--peach)); margin-top: 8px;
}
.doc p, .doc li { color: #3c3a52; font-size: 1rem; }
.doc p + p { margin-top: 12px; }
.doc ul { margin: 12px 0 12px 22px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--navy); }
.doc a { color: var(--lavender); }
.callout {
  margin: 22px 0; padding: 18px 22px; border-radius: 16px;
  background: rgba(252, 138, 110, 0.12); border: 1px solid rgba(252, 138, 110, 0.3);
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */
details {
  background: var(--card); border: 1px solid var(--stroke); border-radius: 18px;
  padding: 20px 24px; margin-bottom: 14px;
}
details summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details summary::after { content: "+"; font-size: 1.3rem; color: var(--lavender); transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 12px; color: var(--muted); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(139, 124, 246, 0.15);
  background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(12px);
  padding: 44px 24px 54px; text-align: center;
}
.foot-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 500; }
.foot-links a:hover { color: var(--lavender); }
.disclaimer {
  max-width: 640px; margin: 0 auto 14px; font-size: 0.8rem; color: var(--muted); opacity: 0.75;
}
.copyright { font-size: 0.82rem; color: var(--muted); opacity: 0.6; }
