/* Simple Life Board — marketing site.
   The landing page IS the board: the page is built from the product's own
   cards (stickies, checklists, a savings pot, a countdown, a polaroid),
   pinned on warm paper. Design: a 9-agent panel's synthesized spec — read
   the guardrails at the bottom of this file before "improving" anything.
   Shared pages (privacy/terms/contact/blog/webinars) use the same tokens. */

/* Fraunces (OFL licence) self-hosted — the CSP is self-only, so no font
   CDNs. The page is designed to hold up on the Charter/Georgia fallback. */
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* surfaces */
  --paper: #f7f5f0;
  --paper-dim: #f1efe9;
  --kraft: #efe5d4;
  --card: #fffdf8;
  /* ink */
  --ink: #2b2926;
  --ink-soft: #6b6560;
  --ink-draw: #3a3734;
  /* stickies + their saturated siblings */
  --sticky-yellow: #fff3b0;  --accent-yellow: #f2c94c;
  --sticky-pink:   #ffd9e1;  --accent-pink:   #e88aa3;
  --sticky-blue:   #cfe4f7;  --accent-blue:   #2f6fb3;
  --sticky-green:  #d5ead9;  --accent-green:  #5aa46f;
  /* space tints */
  --space-blue: #e8f1fa;
  --space-purple: #ece6f7;
  /* the grey chapter only */
  --grey-card: #d8d5cf;
  --grey-text: #5a564d;
  --red-pencil: #c0533f;
  /* shadow, radius, type, motion */
  --shadow-rest: 0 1px 2px rgba(43,41,38,.08), 0 6px 16px rgba(43,41,38,.10);
  --shadow-lift: 0 2px 4px rgba(43,41,38,.10), 0 10px 24px rgba(43,41,38,.14);
  --r-card: 10px; --r-chip: 6px; --r-space: 16px;
  --font-display: "Fraunces", Charter, "Bitstream Charter", "Iowan Old Style", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease-place: cubic-bezier(.22,.7,.3,1);
  /* aliases the sub-pages still lean on */
  --line: #e3ded4; --line-strong: #cfc8ba; --me: #2f6fb3; --them: #c64b77;
  --surface: #ffffff; --hover: #f2efe8; --ink-faint: #93a1ad;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);   /* the dot grid is retired from the page — dots mean "board" now */
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sticky-yellow); color: var(--ink); }
:focus-visible { outline: 2px dashed #2a5e8c; outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent-blue); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- header (shared by every page) ---------- */
header.top { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  color: var(--ink); text-decoration: none;
}
/* the wordmark's tiny sticky note (was a plain dot — shared markup, restyled) */
.brand .dot {
  width: 16px; height: 16px; border-radius: 3px;
  background: var(--sticky-yellow);
  border-top: 3px solid var(--accent-yellow);
  transform: rotate(-6deg);
  box-shadow: 0 1px 2px rgba(43,41,38,.18);
}
.top nav { display: flex; gap: 22px; align-items: center; font-size: 14.5px; }
.top nav a.navlink { color: var(--ink-soft); text-decoration: none; }
.top nav a.navlink:hover { color: var(--ink); text-decoration: underline; }

/* ---------- buttons: ONE style page-wide, a sticky note you can press ---------- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  border-radius: 999px; font-weight: 600; cursor: pointer;
  padding: 14px 28px; font-size: 16px; font-family: var(--font-body);
  background: var(--sticky-yellow); color: var(--ink);
  border: 1px solid rgba(43,41,38,.08); border-top: 3px solid var(--accent-yellow);
  box-shadow: var(--shadow-rest);
  transition: transform 160ms var(--ease-place), box-shadow 160ms var(--ease-place);
}
.btn:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.btn:active { transform: translateY(1px); box-shadow: 0 1px 2px rgba(43,41,38,.10); }
.btn-quiet { background: var(--card); border-top-color: var(--line-strong); }
.btn-small { padding: 9px 18px; font-size: 14.5px; }

/* ---------- the product's card anatomy ---------- */
.pcard {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(43,41,38,.08);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-rest);
}
.pcard::before {
  content: ""; position: absolute; top: 0; left: 10px; right: 10px; height: 3px;
  border-radius: 0 0 3px 3px; background: var(--accent-blue);
}
.pcard.acc-green::before { background: var(--accent-green); }
.pcard.acc-pink::before  { background: var(--accent-pink); }
.pcard.acc-yellow::before{ background: var(--accent-yellow); }

.sticky {
  position: relative;
  border-radius: 3px 3px 8px 3px;
  box-shadow: var(--shadow-rest);
  font-family: var(--font-display); font-style: italic;
  padding: 14px 16px; line-height: 1.45;
}
.sticky.s-yellow { background: var(--sticky-yellow); }
.sticky.s-pink   { background: var(--sticky-pink); }
.sticky.s-green  { background: var(--sticky-green); }
.sticky.s-blue   { background: var(--sticky-blue); }

/* tape OR pin — never both on one item */
.tape {
  position: absolute; top: -12px; left: 50%; width: 74px; height: 24px;
  transform: translateX(-50%) rotate(-3deg);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.55) 0 6px, rgba(255,255,255,.4) 6px 12px);
  border: 1px solid rgba(0,0,0,.06);
  clip-path: polygon(3% 0, 97% 4%, 100% 30%, 96% 100%, 4% 96%, 0 65%);
}
.tape.t2 { transform: translateX(-50%) rotate(4deg); }
.pin {
  position: absolute; top: -6px; left: 50%; width: 12px; height: 12px;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f4b8c8, var(--accent-pink) 70%);
  box-shadow: 0 2px 3px rgba(43,41,38,.28);
}
.pin.p-blue { background: radial-gradient(circle at 35% 30%, #9cc3e8, var(--accent-blue) 70%); }

/* a board "space" region — the ONLY place the dot grid lives */
.space {
  background-color: var(--space-blue);
  background-image: radial-gradient(rgba(43,41,38,.07) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px dashed rgba(47,111,179,.3);
  border-radius: var(--r-space);
}

/* ================================================================
   HERO — the money shot
   ================================================================ */
.hero { overflow-x: clip; }
.heroGrid {
  display: grid; grid-template-columns: 44% 56%; align-items: center;
  padding-top: 30px; padding-bottom: 74px;
}
.eyebrow {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 14px; font-weight: 600;
}
h1 {
  font-family: var(--font-display); font-weight: 620;
  font-size: clamp(38px, 4.6vw, 56px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.hlWrap { position: relative; display: inline-block; }
.hlWrap svg { position: absolute; left: 0; bottom: -9px; width: 100%; height: 12px; }
.hlWrap path { stroke: var(--accent-blue); stroke-width: 3; fill: none; stroke-linecap: round; }
.lede { color: var(--ink-soft); max-width: 36ch; font-size: 18.5px; margin: 0 0 26px; }
.ctaRow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ctaRow small { color: var(--ink-soft); font-size: 13.5px; max-width: 12ch; line-height: 1.45; }
.pricelink { display: inline-block; margin-top: 16px; color: var(--ink); font-size: 14.5px; }
.dirMob { display: none; }
@media (max-width: 979px) { .dirDesk { display: none; } .dirMob { display: inline; } }

/* the board */
.board { position: relative; height: 570px; }
.board .space { position: absolute; inset: 12px -110px 40px 96px; }
.spaceTag {
  position: absolute; top: 0; left: 120px;
  font-family: var(--font-display); font-style: italic; font-size: 15px;
  background: var(--card); padding: 4px 14px; border-radius: 6px;
  box-shadow: var(--shadow-rest); transform: rotate(-2deg); z-index: 2;
}
.bcard { position: absolute; }
.cardTitle { font-size: 13px; color: var(--ink-soft); margin: 0 0 8px; font-weight: 600; }

.b-polaroid { left: 56%; top: 3%; width: 155px;
  background: var(--card); padding: 8px 8px 18px; border-radius: 4px;
  box-shadow: var(--shadow-rest); margin: 0; }
.b-polaroid .photo { height: 96px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--sticky-blue) 0 55%, var(--accent-blue) 55% 67%, #f2e3c8 67%); }
.b-polaroid figcaption { font-family: var(--font-display); font-style: italic; font-size: 14px; text-align: center; margin-top: 8px; }

.b-check { left: 14%; top: 19%; width: 235px; padding: 14px 16px 12px; }
.checkRow { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; padding: 4px 0; }
.checkRow svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.checkRow svg rect { stroke: var(--line-strong); stroke-width: 1.6; fill: none; }
.checkRow svg path { stroke: var(--accent-green); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.checkRow.done span { text-decoration: line-through; text-decoration-color: rgba(43,41,38,.35); text-decoration-thickness: 1.5px; color: var(--ink-soft); }

.b-pot { left: 51%; top: 37%; width: 245px; padding: 14px 16px 16px; }
.potName { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 2px; }
.potNums { font-size: 13.5px; color: var(--ink-soft); font-variant-numeric: tabular-nums; margin: 0 0 9px; }
.potBar { height: 10px; border-radius: 999px; background: var(--space-blue); overflow: hidden; }
.potFill { height: 100%; width: 62%; border-radius: 999px; background: var(--accent-blue); }

.b-count { left: 64%; top: 68%; width: 190px; padding: 12px 16px 14px; text-align: center; }
.b-count .num { font-family: var(--font-display); font-weight: 620; font-size: 44px; line-height: 1.05; }
.b-count .lbl { font-size: 13px; color: var(--ink-soft); }

.b-write { left: 10%; top: 60%; width: 168px; min-height: 150px; font-size: 16px; }
.b-write .pad { min-height: 88px; outline: none; }
.b-write .pad:empty::before { content: "write anything…"; color: var(--ink-soft); }
.writeCue { position: absolute; left: 11%; top: 90%; font-size: 12.5px; color: var(--ink-soft);
  font-family: var(--font-body); transform: rotate(-2deg); padding: 1px 4px; }
/* highlighter swipe under the invitation — pre-drawn with JS off / reduced motion */
.writeCue::after { content: ""; position: absolute; inset: 1px -2px 0; z-index: -1;
  background: rgba(242,201,76,.32); border-radius: 2px; transform: skewX(-6deg); }

.b-escaped { left: -13%; top: 40%; width: 145px; font-size: 16px; z-index: 3; }
.b-green { left: 40%; top: 88%; width: 120px; font-size: 14px; padding: 12px 14px; }

/* resting tilts (kept out of `transform` so entrance animation can't erase them) */
.b-polaroid { rotate: 3deg; }
.b-check    { rotate: -2deg; }
.b-pot      { rotate: 1.5deg; }
.b-count    { rotate: 2deg; }
.b-write    { rotate: -3deg; }
.b-escaped  { rotate: 2.5deg; }
.b-green    { rotate: -1.5deg; }

.stickerArt { position: absolute; z-index: 2; }
.st-sun { right: -76px; top: -8px; width: 58px; height: 58px; }
.st-sparkle { left: 44%; top: 30%; width: 34px; height: 34px; }
.inkArrow { position: absolute; left: 34%; top: 33%; width: 120px; height: 64px; opacity: .6; z-index: 1; }
.inkArrow path { stroke: var(--ink-draw); stroke-width: 2; fill: none; stroke-linecap: round; }

.marginalia { position: absolute; font-family: var(--font-display); font-style: italic;
  font-size: 13.5px; color: var(--ink-soft); }
.m-pot { left: 78%; top: 55%; transform: rotate(2deg); width: 116px; line-height: 1.35; }
/* the objection, answered where it occurs — quieter than "car fund next" */
.m-bank { left: 52%; top: 56.5%; transform: rotate(-1.5deg); width: 150px; line-height: 1.35; font-size: 12.5px; }
@media (max-width: 1100px) { .m-pot { display: none; } }   /* when they crowd, the bank line wins */

/* ================================================================
   SECTIONS
   ================================================================ */
section.band { padding: 78px 0; }
h2 {
  font-family: var(--font-display); font-weight: 620;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; margin: 0 0 18px;
}
.sub { color: var(--ink-soft); max-width: 62ch; }

/* washi dividers — exactly two on the page, flanking the grey chapter */
.washi { height: 28px; overflow: hidden; position: relative; z-index: 1; }
.washi > div {
  height: 24px; margin: 2px -20px 0; transform: rotate(.6deg);
  border: 1px solid rgba(0,0,0,.05);
}
.washi.grey > div { background: repeating-linear-gradient(45deg, #dedbd4 0 14px, #d2cfc8 14px 28px); }
.washi.bright > div { background: repeating-linear-gradient(45deg, var(--sticky-yellow) 0 14px, var(--sticky-pink) 14px 28px); }

/* --- the grey chapter: colour drains out --- */
.been { background: var(--paper-dim); }
.beenGrid { display: grid; grid-template-columns: 55% 45%; gap: 44px; align-items: center; }
.pull {
  font-family: var(--font-display); font-size: 26px; line-height: 1.4;
  color: var(--ink); margin: 28px 0 0; max-width: 22ch;
}
.pull .mark { position: relative; white-space: nowrap; }
.pull .mark svg { position: absolute; left: 0; bottom: -6px; width: 100%; height: 10px; }
.pull .mark path { stroke: var(--accent-green); stroke-width: 3; fill: none; stroke-linecap: round; }

.graveyard { position: relative; height: 340px; }
.relic {
  position: absolute; background: var(--grey-card); color: var(--grey-text);
  border-radius: var(--r-card); box-shadow: var(--shadow-rest);
  border: 1px solid rgba(43,41,38,.07); padding: 14px 16px; font-size: 13.5px; margin: 0;
}
.r-sheet { left: 2%; top: 4%; width: 255px; transform: rotate(-3deg); }
.r-sheet table { border-collapse: collapse; width: 100%; }
.r-sheet td { border: 1px solid #c6c3bc; padding: 4px 7px; font-size: 12px; height: 22px; }
.r-sheet .ref { color: var(--red-pencil); font-weight: 700; }
.r-sheet figcaption { margin-top: 8px; font-size: 12px; }
.r-todo { left: 40%; top: 32%; width: 218px; transform: rotate(2deg); z-index: 2; }
.r-todo .hd { font-weight: 700; font-size: 13px; }
.r-todo .badge { display: inline-block; background: var(--grey-text); color: #fff; font-size: 11.5px; font-weight: 700;
  border-radius: 999px; padding: 2px 10px; margin-left: 8px; }
.r-todo ul { margin: 8px 0 0; padding-left: 18px; }
.r-habit { left: 10%; top: 64%; width: 235px; transform: rotate(-1.5deg); }
.dots { display: flex; gap: 7px; margin-top: 8px; }
.dots span { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #c0bdb5; }
.bigX { position: absolute; right: 2%; top: 2%; width: 110px; height: 110px; z-index: 3; opacity: .85; }
.bigX path { stroke: var(--red-pencil); stroke-width: 4; fill: none; stroke-linecap: round; }

/* --- the resurrection: colour floods back --- */
.built { position: relative; overflow-x: clip; }
.built .washBg {
  position: absolute; inset: 26px 5% 26px 5%;
  background-color: var(--space-purple);
  background-image: radial-gradient(rgba(43,41,38,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px dashed rgba(122,75,183,.25); border-radius: var(--r-space);
  z-index: 0;
}
.built .wrap { position: relative; z-index: 1; }
.builtGrid { display: grid; grid-template-columns: 53% 47%; gap: 44px; align-items: center; }
.claims { display: grid; gap: 16px; margin-top: 26px; }
.claim { padding: 15px 18px 15px 20px; font-size: 16px; display: flex; gap: 14px; align-items: flex-start; }
.claim svg { width: 30px; height: 30px; flex: none; margin-top: 1px; }
.claim svg path, .claim svg circle { stroke: var(--ink-draw); stroke-width: 1.5; }
.claim b { font-weight: 650; }

.reborn { position: relative; min-height: 400px; }
.stickies22 { position: absolute; left: 0; top: 0; width: 200px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 10px; transform: rotate(-2deg); }
.stickies22 .sticky { font-size: 12.5px; padding: 10px; box-shadow: 0 1px 2px rgba(43,41,38,.10); }
.b-pot2 { position: absolute; left: 40%; top: 30%; width: 235px; transform: rotate(1.5deg); padding: 13px 15px 15px; }
.miniCheck { position: absolute; left: 5%; top: 63%; width: 215px; transform: rotate(2deg); padding: 12px 15px 10px; }
/* the film's anchor object: a quiet inked link on a loose sticky (no tape, no pin).
   The pill in the left column stays the one CTA style — this is a text link that
   happens to live on paper. Exists in ALL modes. */
.b-next { position: absolute; left: 58%; top: 74%; width: 150px; rotate: 2deg; display: block;
  font-size: 15.5px; color: var(--ink); text-decoration: none; }
.b-next:hover { box-shadow: var(--shadow-lift); }

.devicesLine { font-size: 13.5px; color: var(--ink-soft); margin: 14px 0 0; }

/* --- the reassurance band: plain paper, no dots, no divider — just the truth --- */
.easeGrid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 54px; align-items: center; max-width: 980px; }
.easeAside { width: 195px; rotate: -2deg; font-size: 15.5px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; max-width: 560px; }
.chip {
  font-size: 13.5px; padding: 7px 14px; border-radius: var(--r-chip);
  background: var(--card); border: 1px solid rgba(43,41,38,.09);
  box-shadow: 0 1px 2px rgba(43,41,38,.07);
}
.chip:nth-child(5n+1) { background: var(--sticky-yellow); }
.chip:nth-child(5n+2) { background: var(--sticky-pink); }
.chip:nth-child(5n+3) { background: var(--sticky-blue); }
.chip:nth-child(5n+4) { background: var(--sticky-green); }

/* --- pricing --- */
.priceWrap { display: flex; justify-content: center; margin-top: 44px; }
.priceCard {
  position: relative; max-width: 430px; width: 100%; padding: 30px 32px 28px;
  transform: rotate(-1deg);
  transition: transform 240ms var(--ease-place), box-shadow 240ms var(--ease-place);
}
.priceCard:hover { transform: rotate(0deg) translateY(-2px); box-shadow: var(--shadow-lift); }
.priceCard .big { font-family: var(--font-display); font-weight: 620; font-size: 40px; }
.priceCard .big small { font-size: 17px; font-weight: 400; color: var(--ink-soft); font-family: var(--font-body); }
.yearly { position: relative; display: inline-block; margin: 6px 0 2px; color: var(--ink); }
.yearly svg { position: absolute; inset: -9px -16px; width: calc(100% + 32px); height: calc(100% + 18px); }
.yearly path { stroke: var(--red-pencil); stroke-width: 2.2; fill: none; stroke-linecap: round; opacity: .85; }
.pickNote { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--ink-soft); margin-left: 14px; }
.anchorLine { font-size: 13.5px; color: var(--ink-soft); margin: 8px 0 0; }
.priceCard ul { list-style: none; padding: 0; margin: 16px 0 22px; }
.priceCard li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 15.5px; }
.priceCard li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; }
.priceCard li svg path { stroke: var(--accent-green); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hlite { background: linear-gradient(104deg, transparent 1%, var(--sticky-yellow) 4%, var(--sticky-yellow) 96%, transparent 99%); padding: 0 4px; }
.trialCard {
  position: absolute; right: -36px; top: -32px; width: 152px; transform: rotate(2deg);
  padding: 10px 12px 12px; text-align: center;
}
.trialCard .num { font-family: var(--font-display); font-weight: 620; font-size: 34px; line-height: 1.05; }
.trialCard .lbl { font-size: 12px; color: var(--ink-soft); line-height: 1.35; }
.btn-sub { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-soft); }
.priceCard .btn { width: 100%; }

/* --- FAQ --- */
.faqWrap { position: relative; max-width: 760px; }
.faq { margin-top: 34px; display: grid; gap: 14px; max-width: 720px; }
.faq details {
  position: relative; background: var(--card); border-radius: var(--r-card);
  box-shadow: var(--shadow-rest); border: 1px solid rgba(43,41,38,.08);
  transition: transform 240ms var(--ease-place);
}
.faq details::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 4px; border-radius: 0 3px 3px 0; }
.faq details:nth-of-type(4n+1) { transform: rotate(-.7deg); } .faq details:nth-of-type(4n+1)::before { background: var(--accent-blue); }
.faq details:nth-of-type(4n+2) { transform: rotate(.5deg); }  .faq details:nth-of-type(4n+2)::before { background: var(--accent-pink); }
.faq details:nth-of-type(4n+3) { transform: rotate(-.4deg); } .faq details:nth-of-type(4n+3)::before { background: var(--accent-green); }
.faq details:nth-of-type(4n+4) { transform: rotate(.6deg); }  .faq details:nth-of-type(4n+4)::before { background: var(--accent-yellow); }
.faq details:nth-of-type(5) { transform: rotate(-.5deg); } .faq details:nth-of-type(5)::before { background: var(--accent-blue); }
.faq details[open] { transform: rotate(0deg); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 16px 20px; font-weight: 600; font-size: 17px; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.plus { position: relative; width: 16px; height: 16px; flex: none; }
.plus::before, .plus::after { content: ""; position: absolute; background: var(--ink-soft); border-radius: 2px; transition: transform 200ms var(--ease-place); }
.plus::before { left: 7px; top: 0; width: 2.4px; height: 16px; }
.plus::after  { left: 0; top: 7px; width: 16px; height: 2.4px; }
details[open] .plus::before { transform: rotate(45deg); }
details[open] .plus::after  { transform: rotate(45deg); }
.faq details p { margin: 0 20px 18px; padding: 12px 16px; border-radius: 8px; max-width: 32rem; font-size: 15.5px; }
.faq details:nth-of-type(4n+1) p { background: rgba(207,228,247,.35); }
.faq details:nth-of-type(4n+2) p { background: rgba(255,217,225,.35); }
.faq details:nth-of-type(4n+3) p { background: rgba(213,234,217,.4); }
.faq details:nth-of-type(4n+4) p { background: rgba(255,243,176,.35); }
.faq details:nth-of-type(5) p { background: rgba(207,228,247,.35); }
.faqAside {
  position: absolute; right: -70px; top: 42%; width: 152px; transform: rotate(4deg);
  font-size: 15px;
}

/* --- footer: the desk edge (shared with subpages) --- */
footer.end {
  margin-top: 90px; background: var(--kraft); position: relative;
  padding: 58px 0 34px;
}
footer.end::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
footer.end::after {
  content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
  background: linear-gradient(to bottom, transparent, rgba(43,41,38,.05));
}
footer.end .wrap { position: relative; }
.footGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.made { font-family: var(--font-display); font-size: 24px; margin: 0 0 18px; max-width: 14ch; line-height: 1.3; }
.usPolaroid {
  display: inline-block; background: var(--card); padding: 8px;
  border-radius: 4px; box-shadow: var(--shadow-rest); transform: rotate(2deg); position: relative;
}
.usPolaroid svg { width: 110px; height: 74px; display: block; }
.usPolaroid svg circle, .usPolaroid svg path { stroke: var(--ink-draw); stroke-width: 1.6; fill: none; stroke-linecap: round; }
.newsletter { position: relative; background: var(--card); padding: 24px 24px 20px; border-radius: var(--r-card);
  box-shadow: var(--shadow-rest); border: 1px solid rgba(43,41,38,.08); }
.newsLead { font-family: var(--font-display); font-style: italic; font-size: 16.5px; margin: 0 0 14px; }
#newsForm { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
#newsEmail {
  flex: 1; min-width: 190px; border: none; background: transparent;
  border-bottom: 1.5px solid var(--ink); border-radius: 0;
  padding: 8px 2px; font-size: 15.5px; font-family: var(--font-body); color: var(--ink);
}
#newsEmail:focus:not(:focus-visible) { outline: none; }
#newsEmail:focus { border-bottom-width: 2.5px; }
.newsNote { font-size: 14px; margin: 12px 0 0; }
.newsNote.stamped {
  display: inline-block; transform: rotate(-6deg);
  border: 1.5px solid rgba(192,83,63,.85); outline: 1px solid rgba(192,83,63,.4); outline-offset: 2px;
  color: rgba(192,83,63,.9); text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 6px;
  animation: thump 150ms var(--ease-place);
}
.newsNote.oops {
  display: inline-block; background: var(--sticky-pink); padding: 8px 14px;
  border-radius: 3px 3px 8px 3px; box-shadow: var(--shadow-rest);
  font-family: var(--font-display); font-style: italic; transform: rotate(-1deg);
}
@keyframes thump { from { transform: rotate(-6deg) scale(1.15); } to { transform: rotate(-6deg) scale(1); } }
footer.end .links { margin-top: 40px; font-size: 14px; }
footer.end .links a { color: var(--ink); }
.craftNote { margin-top: 18px; font-size: 12px; color: var(--ink-soft); }

/* the post-footer reward */
.reward { padding: 60px 24px 84px; display: flex; justify-content: center; background: var(--paper); }
.rewardSticky { width: 260px; transform: rotate(-2deg); font-size: 15.5px; padding: 18px 18px 16px; }
.rewardSticky a { display: inline-block; margin-top: 10px; color: var(--ink); font-family: var(--font-body); font-style: normal; font-size: 14.5px; }
.rewardSticky svg { width: 26px; height: 26px; display: block; margin-bottom: 6px; }
.rewardSticky svg path { stroke: var(--ink-draw); stroke-width: 1.5; fill: var(--accent-yellow); }

/* ---------- legal + blog pages (share the shell) ---------- */
main.legal { max-width: 720px; margin: 30px auto 60px; padding: 0 24px; }
main.legal h1 { font-size: clamp(32px, 4vw, 44px); }
main.legal h2 { font-size: 22px; margin-top: 34px; }
main.legal .fld { display: block; font-size: 13px; color: var(--ink-soft); margin: 14px 0 4px; }
main.legal input, main.legal textarea {
  width: 100%; padding: 10px 12px; font-size: 15.5px; font-family: var(--font-body);
  border: 1px solid var(--line-strong); border-radius: 8px; background: var(--card); color: var(--ink);
}
.blogPost .postDate { color: var(--ink-soft); font-size: 14px; }
.blogPost .postCover { max-width: 100%; border-radius: var(--r-card); box-shadow: var(--shadow-rest); }

/* ================================================================
   MOTION — paper being placed, never UI flying
   ================================================================ */
@media (prefers-reduced-motion: no-preference) {
  html.js .bcard, html.js .stickerArt, html.js .spaceTag, html.js .marginalia {
    opacity: 0; animation: place 380ms var(--ease-place) forwards;
  }
  html.js .b-polaroid { animation-delay: .05s; }
  html.js .st-sun     { animation-delay: .11s; }
  html.js .b-check    { animation-delay: .17s; }
  html.js .b-pot      { animation-delay: .23s; }
  html.js .st-sparkle { animation-delay: .26s; }
  html.js .b-count    { animation-delay: .29s; }
  html.js .b-green    { animation-delay: .35s; }
  html.js .b-write    { animation-delay: .41s; }
  html.js .spaceTag   { animation-delay: .44s; }
  html.js .m-pot      { animation-delay: .47s; }
  html.js .m-bank     { animation-delay: .49s; }
  html.js .b-escaped  { animation-delay: .5s; }
  html.js .inkArrow   { opacity: 0; animation: fadeIn 300ms ease .2s forwards; }
  html.js .hlWrap path { stroke-dasharray: 340; stroke-dashoffset: 340; animation: draw 600ms ease-out .4s forwards; }
  html.js [data-reveal] .rv { opacity: 0; transform: translateY(12px);
    transition: opacity 300ms var(--ease-place), transform 300ms var(--ease-place); }
  html.js [data-reveal].in .rv { opacity: 1; transform: none; }
  html.js [data-reveal].in .rv:nth-of-type(2) { transition-delay: 70ms; }
  html.js [data-reveal].in .rv:nth-of-type(3) { transition-delay: 140ms; }
  html.js [data-reveal].in .rv:nth-of-type(4) { transition-delay: 210ms; }
  html.js .built .potFill { width: 0; transition: width 900ms ease-out .25s; }
  html.js .built.in .potFill { width: 62%; }
  html.js .pull .mark path, html.js .yearly path { stroke-dasharray: 460; stroke-dashoffset: 460; }
  html.js .in .pull .mark path, html.js .in .yearly path { animation: draw 600ms ease-out .3s forwards; }
  html.js #selfTickPath { stroke-dasharray: 40; stroke-dashoffset: 40; }
  html.js .ticked #selfTickPath { animation: draw 400ms ease-out forwards; }
  /* the tape/pin "press": ~120ms after its card lands, pressed flat over 150ms.
     `scale` is its own property, so the tape's centering transform is untouched. */
  html.js .b-polaroid .tape { animation: press 150ms var(--ease-place) .55s backwards; }
  html.js .b-check .pin     { animation: press 150ms var(--ease-place) .67s backwards; }
  html.js .b-pot .tape      { animation: press 150ms var(--ease-place) .73s backwards; }
  html.js .b-count .pin     { animation: press 150ms var(--ease-place) .79s backwards; }
  /* final beat of the entrance: the highlighter swipe draws under "go on, it's
     yours." (~.85s → 1.2s). Pre-drawn whenever this block doesn't apply. */
  html.js .writeCue::after { transform-origin: 0 50%; animation: swipe 350ms var(--ease-place) .85s backwards; }
}
/* dealt paper: settle with one slight overshoot, never "UI flying" */
@keyframes place {
  0%   { opacity: 0; transform: translateY(12px) scale(.985); }
  78%  { opacity: 1; transform: translateY(-2px) scale(1.004); }
  100% { opacity: 1; transform: none; }
}
@keyframes press { from { scale: 1.04; } to { scale: 1; } }
@keyframes swipe { from { transform: skewX(-6deg) scaleX(0); } to { transform: skewX(-6deg) scaleX(1); } }
@keyframes fadeIn { to { opacity: .6; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (hover: hover) {
  .bcard:hover, .sticky:hover, .faq details:hover { box-shadow: var(--shadow-lift); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; transition: none !important; }
}

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 979px) {
  .heroGrid { grid-template-columns: 1fr; padding-bottom: 36px; }
  .brand { font-size: 17px; white-space: nowrap; }
  .top nav { gap: 14px; }
  .top nav a[href="#pricing"], .top nav a[href="#faq"] { display: none; }
  .ctaRow .btn { width: 100%; }
  .ctaRow small { max-width: none; }
  /* the board becomes a horizontally snapping strip — never cropped, never hidden */
  .board {
    height: auto; margin: 40px -24px 0; padding: 30px 24px 32px;
    display: flex; gap: 20px; align-items: flex-start;
    overflow-x: auto; scroll-snap-type: x mandatory;
    background-color: var(--space-blue);
    background-image: radial-gradient(rgba(43,41,38,.07) 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin;
  }
  .board .space, .inkArrow, .writeCue, .m-pot, .m-bank, .spaceTag { display: none; }
  .board::after { content: ""; flex: 0 0 6px; }
  .bcard, .board .stickerArt { position: static; flex: 0 0 auto; scroll-snap-align: center; }
  .b-check, .b-pot { width: 225px; }
  .b-write { min-height: 130px; width: 160px; }
  .st-sun { order: 5; } .st-sparkle { display: none; }
  .beenGrid, .builtGrid, .footGrid { grid-template-columns: 1fr; gap: 26px; }
  .graveyard { height: auto; display: grid; gap: 14px; margin-top: 6px; }
  .relic { position: static; }
  .r-sheet { transform: rotate(-1.5deg); width: auto; max-width: 280px; }
  .r-todo { transform: rotate(1deg); width: auto; max-width: 250px; justify-self: end; }
  .r-habit { transform: rotate(-0.7deg); width: auto; max-width: 265px; }
  .bigX { display: none; }
  .reborn { min-height: 0; display: grid; gap: 16px; margin-top: 4px; }
  .stickies22, .b-pot2, .miniCheck { position: static; width: auto; max-width: 300px; }
  .stickies22 { width: 230px; }
  .b-next { position: static; width: max-content; justify-self: end; }
  .easeGrid { grid-template-columns: 1fr; gap: 22px; }
  .easeAside { rotate: -2deg; }
  .trialCard { position: static; margin: 16px auto 0; transform: rotate(1deg); }
  .faqAside { display: none; }
  footer.end { margin-top: 60px; }
}

/* GUARDRAILS (from the design panel — do not "improve" these away):
   one CTA style only (the "yours next" sticky and reward sticky are quiet
   inked text links, not CTAs); tape OR pin per item, never both — loose
   stickies (the two escaped, the band aside, "yours next") carry neither;
   dot grid only inside board regions; greys only in the been-here band;
   exactly two washi dividers; exactly two autonomous animations (H1
   underline, self-tick) — the entrance choreography incl. fastener presses
   and the highlighter swipe is ONE load sequence, runs once, never re-fires;
   text on pastels is always ink, never white; the page must be fully
   composed with JS off and under reduced-motion (highlighter pre-drawn). */
