:root {
  --blue: #0a65f7;
  --lavender: #94a5f7;
  --cyan: #00dbff;
  --green: #02d098;
  --cream: #f6f6ee;
  --ink: #111111;
  --ink-soft: #4a5058;
  --border: #e4e1d6;
  --white: #ffffff;
  --gradient: linear-gradient(120deg, #0a65f7 0%, #00dbff 55%, #02d098 100%);
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
header.site {
  background: var(--cream); padding: 20px 0; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(6px);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; }
header.site .logo img { height: 28px; display: block; }
header.site nav { display: flex; align-items: center; gap: 26px; }
header.site nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500; }
header.site nav a:hover { color: var(--ink); }
header.site nav a.cta {
  background: var(--ink); color: #fff; padding: 9px 18px; border-radius: 22px; font-weight: 600;
}
header.site nav a.cta:hover { background: #037a4f; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 88px 0 76px; color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0; background: var(--gradient); z-index: 0;
}
.hero::after {
  /* uniform dark scrim so white text/buttons stay legible over the lighter
     cyan/green part of the gradient, without changing the brand hex values */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.26));
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { font-size: 38px; line-height: 1.28; max-width: 740px; margin: 0 0 20px; font-weight: 800; letter-spacing: -.01em; text-shadow: 0 1px 12px rgba(0,0,0,.15); }
.hero .lede { font-size: 18px; color: rgba(255,255,255,.96); max-width: 620px; margin-bottom: 32px; text-shadow: 0 1px 8px rgba(0,0,0,.12); }
.hero .signature { font-style: italic; color: rgba(255,255,255,.9); font-size: 15px; margin-top: 30px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 13px 24px; border-radius: 24px; text-decoration: none; font-size: 14px; font-weight: 700; border: 1.5px solid transparent; transition: transform .12s ease, opacity .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--ink); color: #fff; }
.btn.primary:hover { opacity: .88; }
.btn.ghost { border-color: rgba(255,255,255,.85); color: #fff; background: rgba(17,17,17,.22); }
.btn.ghost:hover { border-color: #fff; background: rgba(17,17,17,.36); }
.btn.dark { background: var(--ink); color: #fff; }
.btn.dark:hover { opacity: .88; }

/* ---------- sections ---------- */
section { padding: 64px 0; }
section.alt { background: var(--white); }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
h2.section-title { font-size: 28px; color: var(--ink); margin: 0 0 10px; font-weight: 800; letter-spacing: -.01em; }
p.section-lede { color: var(--ink-soft); max-width: 640px; margin-bottom: 36px; font-size: 15px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--green); transform: translateY(-2px); }
.card .mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--gradient);
  margin-bottom: 16px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px;
}
.card h3 { font-size: 17px; color: var(--ink); margin: 0 0 10px; font-weight: 700; }
.card p { font-size: 14px; color: var(--ink-soft); flex: 1; }
.card .price { font-size: 13px; font-weight: 700; color: var(--green); margin: 10px 0 0; }
.card a.link { font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }
.card a.link:hover { color: var(--green); }

/* product ladder */
.ladder { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 10px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 9px 18px; font-size: 13px; color: var(--ink); font-weight: 600; }
.step.recurring { background: var(--ink); color: #fff; border-color: var(--ink); }
.arrow { color: #c7c2b3; font-weight: 700; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-top: 14px; }
.stat-row .n { font-size: 32px; color: var(--ink); font-weight: 800; }
.stat-row .l { font-size: 13px; color: var(--ink-soft); }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: #cfd3d8; padding: 48px 0 36px; font-size: 13px; }
footer.site .logo img { height: 22px; margin-bottom: 14px; }
footer.site a { color: #cfd3d8; }
footer.site a:hover { color: #fff; }
footer.site .foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer.site .foot-links a { display: block; margin-bottom: 8px; }
footer.site .foot-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #8a8f96; }

/* ---------- forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 5px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; background: var(--cream);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; background: #fff; }
.field textarea { min-height: 100px; resize: vertical; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .row2 { grid-template-columns: 1fr; } .journey-layout { grid-template-columns: 1fr !important; } .hero h1 { font-size: 28px; } }
.hp { position: absolute; left: -9999px; }
.flash { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.flash.ok { background: #e2f7ee; color: #037a4f; }
.flash.error { background: #fce9e9; color: #b03636; }
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-soft); }

/* journey page layout */
.journey-hero { padding: 56px 0 44px; }
.journey-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; }
.info-panel h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #037a4f; margin: 24px 0 10px; }
.info-panel ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 14px; }
.info-panel li { margin-bottom: 6px; }
.price-tag { display: inline-block; background: #e8faf3; border: 1px solid rgba(2,208,152,.35); border-radius: 20px; padding: 8px 16px; font-weight: 700; font-size: 13px; color: #037a4f; margin-top: 6px; }
