:root {
  --pink: #EE3E80;
  --navy: #1F2A44;
  --gold: #E8B86A;
  --ink: #1A1F2E;
  --muted: #6B7280;
  --bg: #FFF7F2;
  --card: #FFFFFF;
  --border: #F2D8E0;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
}

header .brand-icon {
  font-size: 22px;
}

header nav a {
  margin-left: 18px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

header nav a:hover {
  color: var(--pink);
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 28px 80px;
}

main.hero {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

main.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
}

main.hero .tagline {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 32px;
}

main.hero .cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: white;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(238, 62, 128, 0.28);
  transition: transform 0.15s ease;
}

main.hero .cta:hover {
  transform: translateY(-1px);
}

main.hero .muted {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.how {
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 28px 60px;
}

.how h2 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 30px;
  text-align: center;
  margin: 0 0 36px;
  color: var(--navy);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.step .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 42px;
  margin: 0 0 6px;
  color: var(--ink);
}

.effective {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 24px;
}

h2 {
  font-size: 19px;
  color: var(--navy);
  margin: 28px 0 8px;
}

p, ul { margin: 0 0 14px; }
ul { padding-left: 22px; }
li { margin-bottom: 6px; }

a { color: var(--pink); }
code {
  background: #FFEEF4;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 13px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 22px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  background: white;
}
footer a { color: var(--navy); font-weight: 600; text-decoration: none; }
footer a:hover { color: var(--pink); }
footer .muted { margin-top: 4px; }

@media (max-width: 600px) {
  main.hero h1 { font-size: 40px; }
  main.hero { padding-top: 50px; }
  .how h2 { font-size: 24px; }
  h1 { font-size: 32px; }
}
