:root {
  --paper: #FBF7F0;
  --paper-2: #F4EEE2;
  --ink: #1F2429;
  --ink-soft: #3E454C;
  --muted: #6B727A;
  --brand: #4A5158;
  --brand-dark: #33383E;
  --accent: #2E8E7D;
  --accent-dark: #256E5F;
  --border: #E3D9C8;
  --white: #FFFFFF;

  --font-display: "Iowan Old Style", "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;

  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- header ---------- */
header.site {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  position: sticky; top: 0; z-index: 10;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 38px; height: 38px; }
.brand .name { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: 0.2px; }
.brand .sub { display: block; font-family: var(--font-body); font-size: 12px; color: var(--muted); letter-spacing: 0.4px; }
nav.site { display: flex; align-items: center; gap: 24px; }
nav.site a { color: var(--ink-soft); text-decoration: none; font-size: 15px; }
nav.site a:hover { color: var(--brand); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-size: 16px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

/* ---------- hero ---------- */
.hero { padding: 88px 0 72px; }
.hero .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display); font-size: 56px; line-height: 1.08;
  font-weight: 600; margin: 0 0 22px; max-width: 15em; letter-spacing: -0.5px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { font-size: 20px; color: var(--ink-soft); max-width: 34em; margin: 0 0 34px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .note { margin-top: 20px; font-size: 14px; color: var(--muted); }

/* ---------- section scaffolding ---------- */
section { padding: 64px 0; }
section.alt { background: var(--paper-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 40em; margin-bottom: 36px; }
.kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 12px;
}
.section-head h2 { font-family: var(--font-display); font-size: 36px; line-height: 1.15; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.3px; }
.section-head p { color: var(--ink-soft); font-size: 18px; margin: 0; }

/* ---------- problem list ---------- */
.problem-list { display: grid; gap: 20px; }
.problem-list .item {
  display: flex; gap: 18px; padding: 22px 24px; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px;
}
.problem-list .num {
  font-family: var(--font-display); font-size: 26px; color: var(--accent);
  line-height: 1; min-width: 34px; font-weight: 600;
}
.problem-list h3 { margin: 0 0 4px; font-size: 19px; }
.problem-list p { margin: 0; color: var(--ink-soft); }

/* ---------- solutions ---------- */
.solutions { display: grid; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--white); }
.solution {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 20px; align-items: center;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
}
.solution:last-child { border-bottom: none; }
.solution .glyph { width: 56px; height: 56px; }
.solution .glyph img { width: 100%; height: 100%; border-radius: 14px; }
.solution .body h3 { margin: 0 0 4px; font-size: 20px; }
.solution .body p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.solution .price { text-align: right; font-size: 15px; color: var(--muted); white-space: nowrap; }
.solution .price strong { display: block; font-size: 20px; color: var(--ink); }
.solution .price a { font-size: 14px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 26px 24px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }
.step .n { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: var(--brand); color: #fff; font-family: var(--font-display); font-size: 20px; margin-bottom: 16px; }
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan { padding: 26px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; display: flex; flex-direction: column; }
.plan.highlight { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.plan .pname { font-weight: 600; font-size: 17px; margin-bottom: 4px; }
.plan .pdesc { color: var(--muted); font-size: 13px; margin: 0 0 18px; flex: 1; }
.plan .pcost { font-family: var(--font-display); font-size: 30px; font-weight: 600; }
.plan .pcost span { font-size: 15px; color: var(--muted); font-family: var(--font-body); }
.plan .flag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.pricing-note { margin-top: 16px; font-size: 14px; color: var(--muted); }

/* ---------- cta ---------- */
.cta { text-align: center; padding: 80px 0; }
.cta h2 { font-family: var(--font-display); font-size: 38px; font-weight: 600; margin: 0 0 16px; letter-spacing: -0.3px; }
.cta p { color: var(--ink-soft); font-size: 18px; max-width: 30em; margin: 0 auto 28px; }

/* ---------- footer ---------- */
footer.site { border-top: 1px solid var(--border); padding: 48px 0 40px; background: var(--paper-2); }
footer.site .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
footer.site h4 { margin: 0 0 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }
footer.site p { margin: 0 0 6px; font-size: 15px; color: var(--ink-soft); }
footer.site a { color: var(--ink-soft); }
.copyright { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 20px; font-size: 13px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero h1 { font-size: 40px; }
  .steps, .pricing { grid-template-columns: 1fr; }
  .solution { grid-template-columns: 52px 1fr; }
  .solution .price { grid-column: 2; text-align: left; }
  footer.site .wrap { grid-template-columns: 1fr; }
  nav.site a:not(.btn) { display: none; }
}
