:root {
  color-scheme: light;
  --bg: #fff7fd;
  --ink: #191124;
  --muted: #62556d;
  --card: #ffffff;
  --line: #eadff0;
  --pink: #db2777;
  --violet: #6d28d9;
  --gold: #facc15;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(250, 204, 21, 0.32), transparent 16rem),
    radial-gradient(circle at 10% 80%, rgba(109, 40, 217, 0.18), transparent 20rem),
    linear-gradient(145deg, #fff7fd, #f6edff);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--violet);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  margin: 0 auto;
  max-width: 1040px;
  padding: 28px 22px 56px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 56px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 12px;
  font-weight: 900;
}

.icon {
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(109, 40, 217, 0.22);
  color: white;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 52px;
}

.eyebrow {
  background: rgba(219, 39, 119, 0.1);
  border-radius: 999px;
  color: #9d174d;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 8px 13px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0 0 20px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 680px;
}

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

.button {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(109, 40, 217, 0.22);
  color: white;
  display: inline-flex;
  padding: 13px 18px;
}

.button.secondary {
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink);
}

.phone {
  background: #05010f;
  border: 12px solid #130822;
  border-radius: 58px;
  box-shadow: 0 35px 80px rgba(25, 17, 36, 0.25);
  min-height: 560px;
  overflow: hidden;
  padding: 52px 28px 28px;
}

.notch {
  background: #151827;
  border-radius: 999px;
  height: 18px;
  margin: -28px auto 32px;
  width: 108px;
}

.app-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  color: white;
  margin-bottom: 18px;
  padding: 24px;
}

.app-card.result {
  background: rgba(192, 38, 211, 0.28);
  border-color: rgba(240, 171, 252, 0.65);
  text-align: center;
}

.label {
  color: #f5d0fe;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.baby-name {
  display: block;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
  margin: 12px 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 12px;
}

.chip.active {
  background: #c026d3;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 48px;
}

.card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

.page {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 44px);
}

.muted {
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 48px;
  padding-top: 22px;
}

ul {
  margin-top: 0;
  padding-left: 20px;
}

@media (max-width: 800px) {
  .nav,
  .hero {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

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

  .phone {
    min-height: 500px;
  }
}
