:root {
  color-scheme: light;
  --ink: #2d2341;
  --muted: #6f647c;
  --paper: #fffaf6;
  --soft: #f7e7dc;
  --accent: #7d8df2;
  --accent-2: #f07f66;
  --line: rgba(45, 35, 65, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 127, 102, 0.22), transparent 30%),
    linear-gradient(180deg, #fff4ea 0%, #f8dfd5 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: #4d5bd7;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

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

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.hero,
.card {
  background: rgba(255, 250, 246, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(74, 45, 55, 0.12);
}

.hero {
  padding: clamp(28px, 6vw, 56px);
}

.card {
  padding: clamp(22px, 4vw, 36px);
  margin-top: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0 0 16px;
  max-width: 720px;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

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

p {
  margin: 0 0 14px;
}

ul {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.pill {
  min-height: 110px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.pill strong {
  display: block;
  margin-bottom: 5px;
}

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

.placeholder {
  display: inline-block;
  padding: 2px 8px;
  border: 1px dashed rgba(45, 35, 65, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #8c3144;
  font-weight: 700;
}

.footer {
  margin-top: 28px;
  font-size: 0.92rem;
}

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

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