:root {
  --bg: #eef4fb;
  --bg-2: #dfeaf6;
  --ink: #0f1d2e;
  --muted: #4a5b73;
  --brand: #1f4e8c;
  --brand-2: #2f7fd6;
  --card: #ffffff;
  --line: #cdd9ea;
  --shadow: 0 16px 40px rgba(15, 29, 46, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, #e3ecf8 0%, transparent 60%),
    radial-gradient(1000px 700px at 90% -20%, #d7e3f3 0%, transparent 55%),
    var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.hero {
  background: linear-gradient(135deg, #e6eff9 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle at center, rgba(47, 127, 214, 0.18), rgba(47, 127, 214, 0));
  pointer-events: none;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 10px;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 46px);
  margin: 0 0 8px;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin: 16px 0 10px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(31, 78, 140, 0.2);
}

.micro {
  color: var(--muted);
  font-size: 0.95rem;
}

.goal-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 16px;
}

.goal {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.goal-why {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.badge {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.section {
  margin-top: 36px;
}

.section h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.card-grid,
.intro-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(15, 29, 46, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 28px rgba(15, 29, 46, 0.12);
}

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

.card p {
  margin: 0;
  color: var(--muted);
}

.quote {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #eaf2ff;
  border: 1px solid #c5d8f3;
  font-weight: 600;
  color: #1e3559;
  border-left: 6px solid #2f7fd6;
}

.hint {
  background: #eef6ff;
  border: 1px solid #c9dcf4;
  padding: 14px 16px;
  border-radius: 14px;
  color: #25436b;
  line-height: 1.6;
}

.hint ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.step {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid #c5d8f3;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(29, 26, 22, 0.08);
  margin-top: 18px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.step ul,
.step ol {
  margin: 0;
  padding-left: 18px;
}

.step li {
  margin: 6px 0;
}

.step ol li::marker,
.step ul li::marker {
  color: #2f7fd6;
}

.step .num {
  display: inline-block;
  background: var(--brand-2);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  margin-right: 8px;
  font-size: 0.9rem;
}

.pill {
  display: inline-block;
  background: #e9f2ff;
  color: #1f3b62;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 6px;
}

.checklist {
  background: #f1f6fd;
  border: 1px solid #c7d6ee;
  border-radius: 18px;
  padding: 16px;
}

.checklist p {
  margin: 0 0 8px;
  font-weight: 600;
}

.checklist ul {
  margin: 0;
  padding-left: 18px;
}

.footer {
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: center;
  background: #f4f8ff;
  border: 1px solid #cbdaf1;
  border-radius: 20px;
  padding: 18px 20px;
}

.callout h3 {
  margin: 0 0 8px;
}

.callout p {
  margin: 0;
  color: var(--muted);
}

.callout ul {
  margin: 0;
  padding-left: 18px;
}

.callout li {
  margin: 6px 0;
}

figure {
  margin: 0;
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

figure img {
  border: 1px solid #bfd0e8;
  box-shadow: 0 14px 28px rgba(15, 29, 46, 0.14);
}

@media (max-width: 860px) {
  .step {
    grid-template-columns: 1fr;
  }

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