/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --ink: #0d2018;
  --paper: #fdfaf1;
  --wash: #f4f7ec;
  --mint: #e8f7ec;
  --green: oklch(.68 .18 152);
  --green-deep: oklch(.55 .16 152);
  --green-dark: oklch(.45 .13 152);
  --yellow: #ffe08a;
  --sky: #bfe7ff;
  --body: #3c4b42;
  --muted: #6c7a70;

  --rust-bg: #fdf0e8;
  --rust: #a8453a;
  --rust-deep: #8a3f35;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --text: 'Public Sans', system-ui, -apple-system, sans-serif;

  --gutter: 52px;
  --maxw: 1180px;
  --bw: 3px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--display); font-weight: 800; margin: 0; text-wrap: pretty; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; font: 700 15px/1 var(--text); border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

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

/* ─── Reveal ─────────────────────────────────────────────── */
/* Only hides while the `js` class is present; the head script removes it
   if main.js never reports ready, so content can never be stranded. */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.in { opacity: 1; transform: none; transition: none; }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  font: 700 17px/1 var(--text);
  padding: 18px 28px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }

.btn-green { background: var(--green); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper); }

.btn-sm {
  font-size: 15px; padding: 12px 18px;
  border-width: var(--bw); box-shadow: 3px 3px 0 var(--ink);
}
.btn-sm:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-lg { font-size: 17px; padding: 19px 30px; }
.btn-block { display: block; text-align: center; padding-inline: 0; }

/* on the solid-green final CTA, invert the hard shadow */
.btn-onsolid { box-shadow: 5px 5px 0 var(--paper); }
.btn-onsolid:hover { box-shadow: 2px 2px 0 var(--paper); }
.btn-onsolid:active { box-shadow: 0 0 0 var(--paper); }

.link-underline {
  font: 700 16px/1 var(--text);
  border-bottom: var(--bw) solid var(--green);
  padding-bottom: 2px;
}
.link-underline:hover { border-bottom-color: var(--ink); }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); border: var(--bw) solid var(--ink); flex: none;
}
.brand-name { font: 800 22px/1 var(--display); letter-spacing: -.02em; }

.nav-links { display: flex; gap: 26px; font: 500 15px/1 var(--text); }
.nav-links a { padding: 4px 0; }
.nav-links a:hover { color: var(--green-deep); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 4px; justify-content: center;
  width: 34px; height: 34px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ─── Section shells ─────────────────────────────────────── */
.hero, .tuesday, .problem, .positioning, .how, .pricing, .faq, .final {
  border-bottom: var(--bw) solid var(--ink);
}
.hero { background: var(--wash); padding: 80px 0 64px; }
.tuesday { background: var(--paper); padding: 76px 0; }
.problem { background: var(--wash); padding: 76px 0; }
.positioning { background: var(--paper); padding: 72px 0; text-align: center; }
.modules { background: var(--paper); padding: 80px 0 24px; }
.how { background: var(--wash); padding: 76px 0; }
.pricing { background: var(--paper); padding: 76px 0; }
.faq { background: var(--wash); padding: 76px 0; }
.final { background: var(--green); padding: 96px 0; text-align: center; }

h2 { font-size: clamp(30px, 4.2vw, 44px); line-height: 1.08; letter-spacing: -.03em; }
.section-sub {
  font-size: 17px; line-height: 1.6; color: var(--body);
  max-width: 44em; margin-top: 12px;
}
.center { text-align: center; }
.center + .section-sub, .section-sub.center { margin-inline: auto; text-align: center; max-width: 36em; }
.narrow { max-width: 16em; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 56px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.eyebrow {
  background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px;
  padding: 7px 14px;
  font: 700 12px/1 var(--text); letter-spacing: .08em; text-transform: uppercase;
  transform: rotate(-1.5deg);
}
h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.02; letter-spacing: -.035em;
}
.hl { color: var(--green-deep); }
.lede { font-size: 18px; line-height: 1.6; color: var(--body); max-width: 33em; }
.cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.fine { font-size: 14px; line-height: 1.6; color: var(--muted); }

.hero-shot { display: flex; justify-content: center; }

/* approval card */
.approve {
  width: 334px; max-width: 100%; margin: 0;
  background: var(--paper);
  border: var(--bw) solid var(--ink); border-radius: 28px;
  padding: 18px;
  box-shadow: 8px 8px 0 var(--green);
  transform: rotate(1.2deg);
}
.approve-head {
  display: flex; justify-content: space-between;
  font: 700 11px/1 var(--text); letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding: 2px 4px 14px;
}
.approve-body {
  border: 2px solid var(--ink); border-radius: 18px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px; background: #fff;
}
.approve-who { display: flex; align-items: center; gap: 9px; }
.approve-who b { display: block; font: 700 13px/1.2 var(--text); }
.approve-who small { display: block; font: 400 11px/1.3 var(--text); color: var(--muted); }
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: #e8c88a; border: 2px solid var(--ink); flex: none;
}
.rule { height: 2px; background: #e6e6d8; }

.bubble {
  border: 2px solid var(--ink);
  padding: 10px 12px;
  font: 400 13px/1.5 var(--text);
}
.bubble.them {
  align-self: flex-start; background: #f0efe7;
  border-radius: 16px 16px 16px 5px; max-width: 88%;
}
.bubble.us {
  align-self: flex-end; background: var(--green);
  border-radius: 16px 16px 5px 16px; max-width: 92%;
}
.draft-tag {
  align-self: flex-end;
  font: 700 10px/1 var(--text); letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
}
.approve-actions { display: flex; gap: 8px; padding-top: 14px; }
.act {
  flex: 1; text-align: center;
  border: 2px solid var(--ink); border-radius: 999px;
  font: 700 14px/1 var(--text); padding: 13px 0;
}
.act-send { flex: 1.4; background: var(--green); }
.act-skip { border-color: #c9d2cb; color: var(--muted); }

/* ─── Trust bar ──────────────────────────────────────────── */
.trustbar {
  background: var(--green);
  border-bottom: var(--bw) solid var(--ink);
}
.trustbar-inner {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  padding-block: 18px;
  font: 700 13px/1 var(--text); color: var(--ink);
}
.trustbar-label { letter-spacing: .1em; text-transform: uppercase; }
.trustbar-list { display: flex; gap: 20px; flex-wrap: wrap; font-weight: 500; }

/* ─── Before / after ─────────────────────────────────────── */
.ba-grid {
  display: grid; grid-template-columns: 1fr 76px 1fr;
  gap: 20px; align-items: stretch;
  margin-top: 44px;
}
.panel {
  border: var(--bw) solid var(--ink); border-radius: 26px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.panel-before { background: var(--rust-bg); }
.panel-after { background: var(--mint); }

.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.panel-when { font: 700 12px/1 var(--text); letter-spacing: .12em; text-transform: uppercase; }
.panel-note { font: 400 13px/1 var(--text); }
.panel-before .panel-when, .panel-before .panel-note { color: var(--rust); }
.panel-after .panel-when, .panel-after .panel-note { color: var(--green-dark); }

.panel-foot {
  font: 400 15px/1.55 var(--text);
  padding-top: 14px;
}
.panel-before .panel-foot { color: var(--rust-deep); border-top: 2px dashed #e0b3a8; }
.panel-after .panel-foot { color: var(--green-dark); border-top: 2px dashed #a9d9b8; }

.ba-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.ba-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); border: var(--bw) solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font: 800 20px/1 var(--text);
}
.ba-label {
  font: 700 11px/1.35 var(--text); letter-spacing: .08em;
  text-transform: uppercase; text-align: center; color: var(--muted);
}

/* the scene */
.scene { position: relative; height: 290px; overflow: hidden; }
.scene i { position: absolute; display: block; }

.note {
  position: absolute; width: 132px;
  background: #fff; border: 2px solid var(--ink); border-radius: 8px;
  padding: 9px 11px;
  box-shadow: 3px 3px 0 rgba(13, 32, 24, .16);
}
.note b { display: block; font: 700 12px/1.3 var(--text); }
.note small { display: block; font: 400 11px/1.4 var(--text); color: var(--rust); }
.note-a { left: 0; top: 2px; transform: rotate(-8deg); }
.note-b { right: 0; top: 0; width: 130px; transform: rotate(7deg); }
.note-c { right: 4px; top: 74px; width: 126px; transform: rotate(-4deg); }
.note-d { left: 6px; top: 82px; width: 118px; transform: rotate(5deg); }

.done {
  position: absolute; width: 134px;
  background: #fff; border: 2px solid var(--ink); border-radius: 10px;
  padding: 9px 11px;
  display: flex; align-items: center; gap: 9px;
  font: 500 12px/1.3 var(--text);
}
.done i {
  position: static; width: 16px; height: 16px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--ink); flex: none;
}
.done-a { left: 0; top: 0; }
.done-b { right: 0; top: 16px; }
.done-c { left: 4px; top: 62px; }
.done-d { right: 4px; top: 78px; }

.fig { position: absolute; }

/* — slumped figure — */
.fig-slumped {
  left: 50%; bottom: 44px; transform: translateX(-50%) rotate(3deg);
  width: 178px; height: 200px;
}
.s-arm-r  { left: 118px; top: 104px; width: 16px; height: 58px; background: #e0a878; border: 3px solid var(--ink); border-radius: 999px; transform: rotate(-22deg); }
.s-torso  { left: 56px; top: 92px; width: 80px; height: 92px; background: #4f7f5b; border: 3px solid var(--ink); border-radius: 22px 22px 8px 8px; }
.s-strap-l{ left: 72px; top: 96px; width: 10px; height: 46px; background: #2e5c3d; border-right: 2px solid var(--ink); }
.s-strap-r{ left: 110px; top: 96px; width: 10px; height: 46px; background: #2e5c3d; border-left: 2px solid var(--ink); }
.s-arm-l  { left: 44px; top: 106px; width: 16px; height: 56px; background: #e0a878; border: 3px solid var(--ink); border-radius: 999px; transform: rotate(20deg); }
.s-head   { left: 62px; top: 28px; width: 66px; height: 66px; background: #e0a878; border: 3px solid var(--ink); border-radius: 50%; transform: rotate(-8deg); }
.s-hair   { left: 60px; top: 22px; width: 70px; height: 32px; background: #3a2a22; border: 3px solid var(--ink); border-radius: 36px 36px 8px 8px; transform: rotate(-8deg); }
.s-hair2  { left: 118px; top: 44px; width: 24px; height: 38px; background: #3a2a22; border: 3px solid var(--ink); border-radius: 16px; transform: rotate(-8deg); }
.s-brow-l { left: 76px; top: 66px; width: 14px; height: 3px; background: var(--ink); border-radius: 2px; }
.s-brow-r { left: 100px; top: 67px; width: 14px; height: 3px; background: var(--ink); border-radius: 2px; }
.s-mouth  { left: 86px; top: 82px; width: 20px; height: 3px; background: var(--ink); border-radius: 2px; }
.s-ear-l  { left: 66px; top: 60px; width: 9px; height: 11px; background: #c98b5e; border: 2px solid var(--ink); border-radius: 50%; }
.s-ear-r  { left: 116px; top: 61px; width: 9px; height: 11px; background: #c98b5e; border: 2px solid var(--ink); border-radius: 50%; }
.s-phone  { left: 122px; top: 152px; width: 28px; height: 44px; background: #fff; border: 3px solid var(--ink); border-radius: 7px; transform: rotate(-16deg); box-shadow: 0 0 0 5px rgba(255, 224, 138, .75); }

/* — kitchen table props (siblings of the figure) — */
.tabletop    { left: -12px; right: -12px; bottom: 22px; height: 16px; background: #c98b5e; border: 3px solid var(--ink); border-radius: 6px; }
.tableleg    { bottom: -6px; width: 14px; height: 32px; background: #c98b5e; border: 3px solid var(--ink); }
.tableleg-l  { left: 30px; }
.tableleg-r  { right: 30px; }
.mug-body    { left: 24px; bottom: 38px; width: 60px; height: 15px; background: #e8c88a; border: 3px solid var(--ink); border-radius: 999px; }
.mug-handle  { left: 39px; bottom: 50px; width: 32px; height: 19px; background: #e8c88a; border: 3px solid var(--ink); border-radius: 16px 16px 0 0; }
.pot         { right: 44px; bottom: 38px; width: 36px; height: 28px; background: #c96f4a; border: 3px solid var(--ink); border-radius: 4px 4px 12px 12px; }
.stem        { right: 59px; bottom: 64px; width: 5px; height: 24px; background: var(--ink); }
.leaf-a      { right: 36px; bottom: 72px; width: 26px; height: 13px; background: #94a86b; border: 3px solid var(--ink); border-radius: 0 999px 0 999px; transform: rotate(30deg); }
.leaf-b      { right: 62px; bottom: 76px; width: 24px; height: 12px; background: #94a86b; border: 3px solid var(--ink); border-radius: 999px 0 999px 0; transform: rotate(36deg); }

/* — calm figure — */
.fig-calm {
  left: 50%; bottom: 34px; transform: translateX(-50%);
  width: 182px; height: 206px;
}
.c-bench      { left: 30px; bottom: 0; width: 140px; height: 26px; background: #8a6a4a; border: 3px solid var(--ink); border-radius: 10px; }
.c-bench-back { left: 44px; bottom: 22px; width: 112px; height: 40px; background: #a67c52; border: 3px solid var(--ink); border-radius: 12px 12px 4px 4px; }
.c-leg-l      { left: 52px; top: 118px; width: 20px; height: 34px; background: #2e5c3d; border: 3px solid var(--ink); border-radius: 8px; transform: rotate(-6deg); }
.c-leg-r      { right: 52px; top: 118px; width: 20px; height: 34px; background: #2e5c3d; border: 3px solid var(--ink); border-radius: 8px; transform: rotate(6deg); }
.c-arm-l      { left: 36px; top: 96px; width: 16px; height: 44px; background: #e0a878; border: 3px solid var(--ink); border-radius: 999px; transform: rotate(-16deg); }
.c-arm-r      { right: 36px; top: 96px; width: 16px; height: 44px; background: #e0a878; border: 3px solid var(--ink); border-radius: 999px; transform: rotate(16deg); }
.c-torso      { left: 60px; top: 82px; width: 80px; height: 82px; background: #4f7f5b; border: 3px solid var(--ink); border-radius: 24px 24px 10px 10px; }
.c-strap-l    { left: 76px; top: 86px; width: 10px; height: 42px; background: #2e5c3d; border-right: 2px solid var(--ink); }
.c-strap-r    { left: 114px; top: 86px; width: 10px; height: 42px; background: #2e5c3d; border-left: 2px solid var(--ink); }
.c-head       { left: 67px; top: 16px; width: 66px; height: 66px; background: #e0a878; border: 3px solid var(--ink); border-radius: 50%; }
.c-hair       { left: 65px; top: 10px; width: 70px; height: 30px; background: #3a2a22; border: 3px solid var(--ink); border-radius: 36px 36px 8px 8px; }
.c-hair2      { left: 123px; top: 30px; width: 24px; height: 36px; background: #3a2a22; border: 3px solid var(--ink); border-radius: 16px; }
.c-hat-brim   { left: 46px; top: 2px; width: 108px; height: 16px; background: #e8c88a; border: 3px solid var(--ink); border-radius: 999px; }
.c-hat-top    { left: 72px; top: -14px; width: 56px; height: 22px; background: #e8c88a; border: 3px solid var(--ink); border-radius: 18px 18px 0 0; }
.c-eye-l      { left: 80px; top: 50px; width: 13px; height: 7px; border: 3px solid var(--ink); border-top: none; border-radius: 0 0 16px 16px; }
.c-eye-r      { left: 107px; top: 50px; width: 13px; height: 7px; border: 3px solid var(--ink); border-top: none; border-radius: 0 0 16px 16px; }
.c-smile      { left: 88px; top: 64px; width: 24px; height: 11px; border: 3px solid var(--ink); border-top: none; border-radius: 0 0 20px 20px; }
.c-blush-l    { left: 70px; top: 56px; width: 10px; height: 11px; background: #e79a92; border: 2px solid var(--ink); border-radius: 50%; }
.c-blush-r    { left: 120px; top: 56px; width: 10px; height: 11px; background: #e79a92; border: 2px solid var(--ink); border-radius: 50%; }
.c-pot        { left: 2px; bottom: 34px; width: 34px; height: 28px; background: #c96f4a; border: 3px solid var(--ink); border-radius: 4px 4px 12px 12px; }
.c-stem       { left: 16px; bottom: 60px; width: 5px; height: 22px; background: var(--ink); }
.c-leaf-a     { left: -6px; bottom: 70px; width: 26px; height: 13px; background: #7fb069; border: 3px solid var(--ink); border-radius: 0 999px 0 999px; transform: rotate(-24deg); }
.c-leaf-b     { left: 18px; bottom: 76px; width: 24px; height: 12px; background: #7fb069; border: 3px solid var(--ink); border-radius: 999px 0 999px 0; transform: rotate(22deg); }
.c-phone      { right: 6px; bottom: 36px; width: 36px; height: 22px; background: var(--paper); border: 3px solid var(--ink); border-radius: 6px; }
.c-phone-lip  { right: 16px; bottom: 56px; width: 18px; height: 8px; background: var(--paper); border: 3px solid var(--ink); border-radius: 6px 6px 0 0; }

/* ─── Problem ────────────────────────────────────────────── */
.prob-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 40px;
}
.card {
  background: var(--paper);
  border: var(--bw) solid var(--ink); border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.card h3 { font: 700 18px/1.35 var(--text); }
.card p { font-size: 15px; line-height: 1.65; color: var(--body); }
.tilt-a { transform: rotate(-.7deg); }
.tilt-b { transform: rotate(.5deg); }
.tilt-c { transform: rotate(-.4deg); }

/* ─── Positioning ────────────────────────────────────────── */
.positioning h2 { font-size: clamp(28px, 4vw, 42px); }
.positioning p {
  font-size: 17px; line-height: 1.65; color: var(--body);
  max-width: 40em; margin: 16px auto 0;
}

/* ─── Modules ────────────────────────────────────────────── */
.modules-head { margin-bottom: 56px; }
.module {
  display: grid; grid-template-columns: .42fr .58fr;
  gap: 52px; align-items: start;
  margin-bottom: 64px;
}
.module-included {
  border-top: var(--bw) solid var(--ink);
  padding-top: 48px;
}
.pill {
  justify-self: start; align-self: start;
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 6px 13px;
  font: 700 12px/1 var(--text); letter-spacing: .1em; text-transform: uppercase;
}
.pill-green { background: var(--green); }
.pill-sky { background: var(--sky); }
.pill-plain { background: var(--paper); }

.module-body { display: flex; flex-direction: column; gap: 16px; }
.module-body h3 {
  font-size: clamp(26px, 3.1vw, 34px); line-height: 1.14; letter-spacing: -.025em;
  max-width: 18em;
}
.module-body h3.h3-sm { font-size: clamp(24px, 2.6vw, 28px); line-height: 1.2; letter-spacing: -.02em; }
.module-body > p { font-size: 16px; line-height: 1.65; color: var(--body); max-width: 38em; }
.aside { color: var(--muted); max-width: 34em; font-size: 15px; line-height: 1.6; }

.chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chips li {
  background: var(--mint); border: 2px solid var(--ink); border-radius: 14px;
  padding: 12px 14px;
  font: 500 15px/1.45 var(--text);
}

.thread { display: flex; flex-direction: column; gap: 8px; max-width: 30em; }
.thread .bubble { font-size: 14px; }
.thread .bubble.them { background: #fff; border-radius: 16px 16px 16px 4px; }
.thread .bubble.ink {
  align-self: flex-end; background: var(--ink); color: var(--paper);
  border-radius: 16px 16px 4px 16px;
}
.thread .bubble.booked {
  align-self: flex-end; background: var(--green); font-weight: 700;
  border-radius: 16px 16px 4px 16px;
}
.thread time { font-size: 12px; font-weight: 400; color: var(--muted); }
.thread .bubble.ink time { color: #8fa397; }
.thread .bubble.booked time { color: var(--ink); }

/* ─── How it works ───────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 40px;
}
.steps .card { box-shadow: 5px 5px 0 var(--green); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); border: var(--bw) solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font: 800 18px/1 var(--display);
}

/* ─── Pricing ────────────────────────────────────────────── */
.plan-wrap { display: flex; justify-content: center; margin-top: 40px; }
.plan {
  width: 100%; max-width: 520px;
  background: var(--green);
  border: var(--bw) solid var(--ink); border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.plan-eyebrow {
  align-self: flex-start;
  background: var(--ink); color: var(--green);
  border-radius: 999px; padding: 6px 12px;
  font: 700 11px/1 var(--text); letter-spacing: .1em; text-transform: uppercase;
}
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font: 800 56px/1 var(--display); letter-spacing: -.035em; }
.plan-price .per { font: 500 16px/1 var(--text); color: #2c4a38; }
.plan-note { font-size: 15px; line-height: 1.6; color: #12301f; }
.plan-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding-block: 18px;
}
.plan-list li {
  font: 500 15px/1.4 var(--text); color: #12301f;
  padding-left: 22px; position: relative;
}
.plan-list li::before {
  content: ""; position: absolute; left: 3px; top: 4px;
  width: 6px; height: 11px;
  border: solid var(--ink); border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 52px; }
.faq-head h2 { font-size: clamp(28px, 3.8vw, 40px); }
.faq-head p { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--body); max-width: 20em; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
  background: var(--paper);
  border: var(--bw) solid var(--ink); border-radius: 16px;
  padding: 16px 18px;
}
.faq-list summary {
  font: 700 17px/1.4 var(--text);
  display: flex; justify-content: space-between; gap: 20px;
  list-style: none; cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green-deep); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p {
  font-size: 15px; line-height: 1.65; color: var(--body);
  padding-top: 10px;
}

/* ─── Final CTA ──────────────────────────────────────────── */
.final h2 {
  font-size: clamp(34px, 5vw, 54px); line-height: 1.04; letter-spacing: -.035em;
  max-width: 15em; margin-inline: auto;
}
.final > .wrap > p {
  font-size: 17px; line-height: 1.6; color: #173a28;
  max-width: 32em; margin: 20px auto 0;
}
.final .btn { margin-top: 28px; }
.final-alt { font-size: 14px; line-height: 1.6; color: #173a28; }
.final-alt a { border-bottom: 2px solid var(--ink); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: var(--paper); padding: 48px 0 40px; }
.footer-grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer .brand-dot { width: 22px; height: 22px; }
.footer .brand-name { font-size: 20px; }
.footer-copyright,
.legal-links { font: 400 12px/1.7 var(--text); color: var(--body); }
.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  :root { --gutter: 36px; }
  .hero-grid { gap: 36px; }
  .module { gap: 32px; }
  .faq-grid { gap: 32px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: 34em; }

  .ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-arrow { flex-direction: row; gap: 14px; padding-block: 6px; }
  .ba-label { text-align: left; }
  .ba-label br { display: none; }

  .module { grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
  .module-body h3, .module-body > p { max-width: none; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-head p { max-width: none; }

}

@media (max-width: 760px) {
  .prob-grid, .steps { grid-template-columns: 1fr; }
  .tilt-a, .tilt-b, .tilt-c { transform: none; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--paper);
    border-bottom: var(--bw) solid var(--ink);
    padding: 8px var(--gutter) 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; font-size: 17px; font-weight: 700; border-bottom: 2px solid #e6e6d8; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }

  .hero { padding: 44px 0 48px; }
  .tuesday, .problem, .how, .pricing, .faq { padding: 56px 0; }
  .positioning { padding: 52px 0; }
  .modules { padding: 56px 0 8px; }
  .final { padding: 68px 0; }

  .lede { font-size: 16px; }
  .section-sub { font-size: 16px; }

  .cta-row { gap: 16px; }
  .btn-lg { width: 100%; text-align: center; padding-inline: 0; }
  .link-underline { font-size: 15px; }

  .approve { transform: none; box-shadow: 5px 5px 0 var(--green); }

  .panel { padding: 20px 18px; border-radius: 20px; }

  /* Too narrow to scatter the cards around the figure without collisions:
     flow them into a grid on top and reserve room for the figure below. */
  .scene {
    height: auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; align-content: start;
    padding-bottom: 262px;
  }
  .note, .done { position: static; width: auto; }
  .note-a { transform: rotate(-2deg); }
  .note-b { transform: rotate(2deg); }
  .note-c { transform: rotate(-1.5deg); }
  .note-d { transform: rotate(1.5deg); }

  .chips { grid-template-columns: 1fr; }
  .modules-head { margin-bottom: 40px; }
  .module { margin-bottom: 48px; }
  .module-included { padding-top: 36px; }

  .plan { padding: 24px 20px; }
  .plan-price .amount { font-size: 48px; }
  .plan-list { grid-template-columns: 1fr; }

  .faq-list summary { font-size: 16px; }

  .footer-grid { align-items: flex-start; flex-direction: column; gap: 14px; }
  .legal-links { gap: 12px 16px; }
}
