:root {
  --rose: #e94560;
  --rose-dark: #c0314a;
  --rose-light: #fce4ec;
  --ink: #1a1023;
  --ink-soft: #4b3a55;
  --cream: #fff7ec;
  --bg: #fffaf3;
  --line: rgba(26, 16, 35, 0.08);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rose); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.7; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.brand {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 14px rgba(233, 69, 96, 0.6);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 32px 120px;
  overflow: hidden;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 28px;
}
.accent { color: var(--rose); }
.lede {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 36px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 6px 24px rgba(233, 69, 96, 0.35);
}
.btn-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 10px 28px rgba(233, 69, 96, 0.45);
}
.btn-ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-lg { padding: 20px 40px; font-size: 18px; }

.hero-meta {
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.7;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}
.hero-blob-1 {
  width: 480px;
  height: 480px;
  background: rgba(233, 69, 96, 0.25);
  top: -120px;
  right: -100px;
}
.hero-blob-2 {
  width: 380px;
  height: 380px;
  background: rgba(255, 178, 60, 0.25);
  bottom: -150px;
  left: -100px;
}

/* ── Sections ────────────────────────────────────────── */
.section {
  padding: 80px 32px;
}
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h2 { color: white; }
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.center { text-align: center; }
h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.05;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 16, 35, 0.08);
}
.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}
.card h3 { font-size: 22px; margin-bottom: 8px; font-weight: 700; }
.card p { color: var(--ink-soft); }

.bullets {
  list-style: none;
  font-size: 20px;
  line-height: 1.8;
  max-width: 700px;
}
.bullets li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
}
.bullets li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 40px;
  line-height: 1;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.muted { color: rgba(255, 247, 236, 0.5); font-size: 14px; margin-top: 4px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--cream); opacity: 0.8; }

/* ── Legal pages ─────────────────────────────────────── */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.legal h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 24px;
  margin: 40px 0 12px;
  font-weight: 700;
}
.legal h3 {
  font-size: 18px;
  margin: 24px 0 8px;
  font-weight: 600;
}
.legal p, .legal li {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal strong { color: var(--ink); }

@media (max-width: 600px) {
  .nav { padding: 20px; }
  .nav-links { gap: 18px; font-size: 14px; }
  .hero { padding: 40px 24px 80px; }
  .section { padding: 60px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
