:root {
  color-scheme: light;
  --bg: #fff7fb;
  --bg-strong: #ffe6f2;
  --ink: #2d1724;
  --muted: #6f5263;
  --line: #f1bfd5;
  --pink: #e72f86;
  --pink-dark: #b71565;
  --lavender: #c8a7ff;
  --cream: #fffdf8;
  --shadow: 0 20px 60px rgba(183, 21, 101, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, var(--bg), #fff 64%, var(--cream));
  color: var(--ink);
}

a {
  color: var(--pink-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(231, 47, 134, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 48px;
  min-height: 62vh;
  padding: 34px 0 54px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--pink-dark);
  font-size: 0.88rem;
  font-weight: 750;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
}

.button:hover {
  background: var(--pink-dark);
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--cream);
}

.phone-card {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  border: 1px solid rgba(241, 191, 213, 0.8);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.phone-card img {
  display: block;
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  border-radius: 24px;
}

.bubble {
  width: fit-content;
  max-width: 100%;
  margin: 10px 0;
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--bg-strong);
  color: var(--ink);
  line-height: 1.35;
}

.bubble.user {
  margin-left: auto;
  background: var(--pink);
  color: white;
}

.section {
  padding: 44px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.tile h2,
.tile h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.legal {
  max-width: 820px;
  padding: 34px 0 70px;
}

.legal h1 {
  font-size: clamp(2.3rem, 7vw, 4.8rem);
}

.legal .updated {
  margin: 18px 0 28px;
  color: var(--muted);
}

.legal h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.legal h3 {
  margin: 24px 0 8px;
  font-size: 1.05rem;
}

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

.legal ul {
  padding-left: 22px;
}

.callout {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .phone-card {
    margin: 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer .shell {
    flex-direction: column;
  }
}
