/* LedgerLab storefront v3 — the friendly indie look (style study: lunchmoney.app;
   patterns borrowed, identity ours). Warm cream, chunky rounded display type,
   pastel pops, sticker badges, pill buttons. The green and the Pebble stay. */
:root {
  --paper: #FDFEFD;
  --cream: #F1F5F3;
  --ink: #2F3431;
  --soft: #5F6B66;
  --faint: #96A5A0;
  --rule: #E2E9E6;
  --rule-strong: #CBD6D1;
  --chrome: #529675;
  --chrome-deep: #2F6B52;
  --chrome-milk: #D9E8DD;
  --coral: #5E8791;
  --coral-milk: #E4EEF0;
  --sun: #CBE5D6;
  --sun-milk: #DFEDE3;
  --sky: #7FA8B0;
  --sky-milk: #EAF3F0;
  --warn: #B27916;
  --gold: #E0A417;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: "Baloo 2", "Arial Rounded MT Bold", system-ui, sans-serif;
  --body: "Nunito Sans", -apple-system, Segoe UI, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 1.03rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--chrome-deep); text-decoration-thickness: 2px; text-underline-offset: 2px; }
a:hover { color: var(--chrome); }

/* ── nav ── */
.nav { max-width: 64rem; margin: 0 auto; padding: .85rem 1.4rem; display: flex; align-items: center; gap: 1.4rem; }
.nav .brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 1.14rem; }
.nav .brand svg { display: block; width: 2.6rem; height: 2.6rem; }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 1.1rem; font-weight: 700; font-size: .85rem; }
.nav .links a { color: var(--soft); text-decoration: none; }
.nav .links a:hover { color: var(--chrome-deep); }
.nav .links a.go {
  color: #fff; background: var(--chrome); border-radius: 999px; padding: .5rem 1.1rem;
  box-shadow: 0 4px 0 var(--chrome-deep);
  transition: transform .12s ease;
}
.nav .links a.go:hover { transform: translateY(-2px); }
.nav .links a.go:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--chrome-deep); }

/* ── shared shell ── */
.sheet { max-width: 44rem; margin: 0 auto; padding: 2.2rem 1.4rem 5rem; }
.wide { max-width: 64rem; }
.eyebrow { font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--coral); }
h1 { font-family: var(--display); font-weight: 700; font-size: 2.5rem; line-height: 1.1;
  letter-spacing: -.01em; margin: .3rem 0 .6rem; text-wrap: balance; }
h2 { font-family: var(--display); font-weight: 700; font-size: 1.55rem; margin: 2.4rem 0 .5rem; text-wrap: balance; }
h3 { font-family: var(--display); font-weight: 600; font-size: 1.08rem; margin: 1.4rem 0 .3rem; }
.dek { color: var(--soft); font-size: 1.12rem; max-width: 40rem; }
hr { border: 0; border-top: 2px dashed var(--rule-strong); margin: 2.2rem 0; }
blockquote { margin: 1.4rem 0; padding: .2rem 0 .2rem 1.1rem; border-left: 4px solid var(--sun); color: var(--soft); }
code { font-family: var(--mono); font-size: .85em; background: var(--cream); padding: .1em .35em; border-radius: 6px; }
figure { margin: 1.8rem 0; }
figcaption { font-size: .78rem; color: var(--faint); margin-top: .5rem; }

/* ── hero with soft blobs ── */
.hero { max-width: 64rem; margin: 0 auto; padding: 3rem 1.4rem 2.4rem; text-align: center; position: relative; overflow: visible; }
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1; filter: blur(26px); opacity: .65;
}
.hero::before { width: 340px; height: 310px; left: -70px; top: 20px; background: var(--chrome-milk);
  border-radius: 46% 54% 60% 40% / 42% 50% 50% 58%;
  animation: breathe-a 16s ease-in-out infinite alternate; }
.hero::after { width: 400px; height: 360px; right: -90px; top: 130px; background: var(--sky-milk);
  border-radius: 58% 42% 45% 55% / 52% 44% 56% 48%;
  animation: breathe-b 21s ease-in-out infinite alternate; }
@keyframes breathe-a {
  50% { border-radius: 55% 45% 42% 58% / 55% 46% 54% 45%; transform: translate(30px, -24px) scale(1.1) rotate(5deg); }
  100% { border-radius: 40% 60% 55% 45% / 48% 58% 42% 52%; transform: translate(58px, 34px) scale(1.16) rotate(11deg); }
}
@keyframes breathe-b {
  50% { border-radius: 44% 56% 58% 42% / 45% 55% 45% 55%; transform: translate(-34px, 26px) scale(1.09) rotate(-6deg); }
  100% { border-radius: 60% 40% 48% 52% / 56% 42% 58% 44%; transform: translate(-60px, -30px) scale(1.14) rotate(-12deg); }
}
@media (prefers-reduced-motion: reduce) { .hero::before, .hero::after { animation: none; } }
.hero h1 { font-size: clamp(2.4rem, 6.5vw, 3.6rem); max-width: 22ch; margin: 1rem auto .7rem; }
.hero .dek { margin: 0 auto 1.5rem; }
.cta-row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta {
  font-family: var(--display); font-weight: 700; font-size: 1rem; text-decoration: none;
  background: var(--chrome); color: #fff; border-radius: 999px; padding: .85rem 1.7rem;
  box-shadow: 0 5px 0 var(--chrome-deep);
  transition: transform .12s ease;
}
.cta:hover { color: #fff; transform: translateY(-2px); }
.cta:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--chrome-deep); }
.cta.ghost { background: #fff; color: var(--chrome-deep); box-shadow: 0 5px 0 var(--rule-strong); border: 2px solid var(--rule-strong); }
.cta-note { font-weight: 700; font-size: .78rem; color: var(--faint); width: 100%; margin-top: .5rem; }

/* sticker badges — slightly rotated, like fridge magnets */
.stickers { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin: 1.6rem 0 0; }
.sticker { font-family: var(--display); font-weight: 700; font-size: .8rem; padding: .4rem .95rem;
  border-radius: 999px; border: 2px solid var(--ink); background: #fff;
  box-shadow: 2px 3px 0 rgba(47,64,58,.30); }
.sticker:nth-child(1) { transform: rotate(-2deg); background: var(--sun-milk); }
.sticker:nth-child(2) { transform: rotate(1.5deg); background: var(--chrome-milk); }
.sticker:nth-child(3) { transform: rotate(-1deg); background: var(--coral-milk); }
.sticker:nth-child(4) { transform: rotate(2deg); background: var(--sky-milk); }

/* the browser frame — the app, shown like software */
.frame { max-width: 46rem; margin: 2.2rem auto 0; border: 2px solid var(--ink); border-radius: 16px;
  background: #fff; box-shadow: 6px 8px 0 rgba(47,64,58,.30); overflow: hidden; }
.frame .bar { display: flex; gap: .4rem; align-items: center; padding: .55rem .8rem;
  border-bottom: 2px solid var(--ink); background: var(--cream); }
.frame .bar i { width: .7rem; height: .7rem; border-radius: 50%; border: 1.5px solid var(--ink); display: inline-block; }
.frame .bar i:nth-child(1) { background: var(--coral); } .frame .bar i:nth-child(2) { background: var(--sun); }
.frame .bar i:nth-child(3) { background: var(--chrome); }
.frame .bar span { font-family: var(--mono); font-size: .68rem; color: var(--soft); margin-left: .5rem; }
.frame .inner { padding: 1.2rem 1.2rem .9rem; }

/* pebble drop + ripple (kept from v2) */
.pebble-wrap { display: inline-block; position: relative; }
.pebble-wrap svg { display: block; animation: drop .6s cubic-bezier(.2,.9,.3,1.2); }
.pebble-wrap::before, .pebble-wrap::after {
  content: ""; position: absolute; inset: -6%; border-radius: 50%;
  border: 2px solid var(--chrome); opacity: 0; animation: ripple 1.1s ease-out .35s;
}
.pebble-wrap::after { animation-delay: .55s; }
@keyframes drop { from { transform: translateY(-16px) scale(.9); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes ripple { from { transform: scale(.75); opacity: .5; } to { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .pebble-wrap svg, .pebble-wrap::before, .pebble-wrap::after { animation: none; }
  .cta, .nav .links a.go { transition: none; }
}

/* ── cards ── */
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.1rem; margin: 1.4rem 0; }
.card {
  border: 2px solid var(--ink); border-radius: 16px; padding: 1.2rem 1.25rem;
  background: #fff; box-shadow: 4px 5px 0 rgba(47,64,58,.10);
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 4px 8px 0 rgba(47,64,58,.14); }
.card .k { font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; color: #fff; background: var(--chrome); border-radius: 999px; padding: .18rem .7rem; display: inline-block; }
.card:nth-child(3n+2) .k { background: var(--coral); }
.card:nth-child(3n) .k { background: var(--sky); }
.card h3 { margin: .55rem 0 .25rem; }
.card p { margin: 0; color: var(--soft); font-size: .95rem; }

.wont { background: var(--cream); border: 2px solid var(--ink); border-radius: 20px;
  padding: 1.6rem 1.7rem 1.3rem; margin: 2.6rem 0; box-shadow: 5px 6px 0 rgba(47,64,58,.10); }
.wont ul { margin: .6rem 0 0; padding-left: 1.2rem; }
.wont li { margin: .45rem 0; }

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.2rem; margin: 1.6rem 0; }
.tier { border: 2px solid var(--ink); border-radius: 20px; padding: 1.5rem 1.4rem; background: #fff;
  box-shadow: 4px 5px 0 rgba(47,64,58,.10); }
.tier.love { background: var(--chrome-milk); box-shadow: 6px 7px 0 var(--chrome-deep); position: relative; }
.tier.love::after { content: "the good one ✨"; position: absolute; top: -0.9rem; right: 1rem;
  font-family: var(--display); font-weight: 700; font-size: .72rem; background: var(--sun);
  border: 2px solid var(--ink); border-radius: 999px; padding: .15rem .7rem; transform: rotate(2deg); }
.tier .name { font-family: var(--display); font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--chrome-deep); }
.tier .price { font-family: var(--display); font-size: 2.3rem; font-weight: 700; letter-spacing: -.02em; margin: .3rem 0 0; }
.tier .per { color: var(--soft); font-size: .92rem; font-weight: 600; }
.tier ul { margin: .8rem 0 0; padding-left: 1.15rem; color: var(--soft); font-size: .95rem; }
.tier li { margin: .35rem 0; }

/* ── resources ── */
.res-list { list-style: none; margin: 1.6rem 0; padding: 0; }
.res-list li { border: 2px solid var(--ink); border-radius: 16px; padding: 1.1rem 1.3rem; margin: .9rem 0;
  background: #fff; box-shadow: 4px 5px 0 rgba(47,64,58,.10); transition: transform .12s ease; }
.res-list li:hover { transform: translateY(-3px); }
.res-list a { font-family: var(--display); font-size: 1.25rem; font-weight: 700; text-decoration: none; color: var(--ink); }
.res-list a:hover { color: var(--chrome-deep); }
.res-list p { margin: .25rem 0 0; color: var(--soft); }
.res-list .meta { font-family: var(--mono); font-size: .7rem; color: var(--faint); }

.essay p { max-width: 65ch; }
.essay h2 { margin-top: 2rem; }
.essay .end { margin-top: 2.6rem; padding: 1rem 1.2rem; border: 2px dashed var(--rule-strong);
  border-radius: 14px; font-weight: 700; font-size: .9rem; background: var(--cream); }

/* ── footer ── */
.foot { border-top: 2px dashed var(--rule-strong); margin-top: 3rem; }
.foot .in { max-width: 64rem; margin: 0 auto; padding: 1.6rem 1.4rem 2.4rem; display: flex; gap: 1.4rem;
  flex-wrap: wrap; align-items: baseline; font-weight: 700; font-size: .82rem; color: var(--faint); }
.foot a { color: var(--soft); text-decoration: none; }
.foot a:hover { color: var(--chrome-deep); }
.foot .fine { margin-left: auto; }
@media (max-width: 640px) { .nav .links { gap: .8rem; } h1 { font-size: 2.1rem; } }

/* the rolling strip — our promises on parade (real user quotes replace
   these the day founding users say real things; never fabricated) */
.marquee { overflow: hidden; border-top: 2px dashed var(--rule-strong); border-bottom: 2px dashed var(--rule-strong);
  padding: .7rem 0; margin: 1.6rem 0 0; background: #fff; }
.marquee-track { display: flex; gap: 2.6rem; width: max-content; animation: roll 36s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: .9rem; color: var(--soft); white-space: nowrap; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; } }

/* ── feature bands (2026-09-07, apple-cadence): one claim, one visual,
   almost no words. LM typography: bold the key phrase, highlight one. ── */
.band { padding: 3.4rem 1.4rem; }
.band.cream { background: var(--cream); border-top: 2px dashed var(--rule-strong); border-bottom: 2px dashed var(--rule-strong); }
.band .in { max-width: 62rem; margin: 0 auto; text-align: center; }
.kicker { font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--coral); }
.band h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin: .3rem 0 .4rem; }
.band .sub { font-size: 1.15rem; color: var(--soft); font-weight: 600; max-width: 44rem; margin: 0 auto 1.6rem; }
.band .sub b { color: var(--ink); }
.u { background: linear-gradient(transparent 62%, var(--sun) 62%, var(--sun) 92%, transparent 92%); padding: 0 .1em; }
.chip-premium { font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; background: var(--chrome); border-radius: 999px; padding: .2rem .7rem;
  vertical-align: middle; margin-left: .5rem; }
.chip-free { font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink); background: var(--sun); border-radius: 999px; padding: .2rem .7rem;
  vertical-align: middle; margin-left: .5rem; }
.zoom { position: relative; overflow: hidden; border-radius: 12px; }
.zoom img { position: absolute; display: block; height: auto; }
.enemy-lines { list-style: none; margin: 1.2rem auto 0; padding: 0; max-width: 40rem; text-align: left; }
.enemy-lines li { padding: .55rem 0; border-top: 2px dashed var(--rule); font-size: 1.02rem; color: var(--soft); font-weight: 600; }
.enemy-lines b { color: var(--ink); }

/* the shot: a screenshot matted on white — hairline border, soft shadow,
   no cartoon chrome (2026-09-07, taste correction) */
.shot { background: #fff; border: 1px solid var(--rule-strong); border-radius: 14px;
  overflow: hidden; box-shadow: 0 14px 40px -22px rgba(47,64,58,.28); margin: 0 auto; }

/* the untangling: bank gibberish in, your life out (HTML repro, not a shot) */
.xform { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center;
  padding: 1.3rem 1.4rem; text-align: left; }
@media (max-width: 700px) { .xform { grid-template-columns: 1fr; } .xform .arrow { transform: rotate(90deg); margin: 0 auto; } }
.xform .lab { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: .5rem; }
.xform .raw div { font-family: var(--mono); font-size: .78rem; color: var(--soft); padding: .32rem 0;
  border-top: 1px dashed var(--rule); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xform .raw div span { float: right; color: var(--faint); }
.xform .arrow { font-size: 1.6rem; color: var(--chrome); font-family: var(--display); }
.xform .seen div { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0;
  border-top: 1px solid var(--rule); font-size: .95rem; font-weight: 600; }
.xform .seen div b { font-variant-numeric: tabular-nums; color: var(--chrome-deep); }

/* concrete capabilities, checked plainly */
.caps .card ul { list-style: none; margin: .5rem 0 0; padding: 0; }
.caps .card li { padding: .3rem 0 .3rem 1.5rem; position: relative; color: var(--soft); font-size: .95rem; border: 0; }
.caps .card li::before { content: "✓"; position: absolute; left: 0; color: var(--chrome); font-weight: 800; }

/* the voices wall: quote cards in our water */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.1rem; margin: 1.4rem 0 .6rem; }
.quote { position: relative; border: 1px solid var(--rule-strong); border-radius: 14px; background: #fff;
  padding: 1.5rem 1.3rem 1.1rem; box-shadow: 0 8px 24px -14px rgba(47,64,58,.18); text-align: left; }
.quote::before { content: "\201C"; position: absolute; top: -.4rem; left: .7rem; font-family: var(--display);
  font-size: 3.2rem; line-height: 1; color: var(--lagoon-milk, #D9E8DD); }
.quote p { margin: 0; font-size: .98rem; position: relative; }
.quote p b { color: var(--chrome-deep); }
.quote .who { margin-top: .8rem; font-size: .8rem; font-weight: 800; color: var(--soft); }
.quote .who span { font-weight: 600; color: var(--faint); }
.quote.real { background: var(--chrome-milk); }
.quote.real .who { color: var(--chrome-deep); }

/* the voices strip: quote cards on a slow current */
.marquee.voices { padding: 1.1rem 0 1.3rem; }
.marquee.voices .marquee-track { animation-duration: 95s; align-items: stretch; gap: 1.1rem; }
.marquee.voices .quote { width: 23rem; flex: 0 0 auto; padding: 1.3rem 1.25rem 1rem; }
.marquee.voices .quote p { font-size: 1.02rem; line-height: 1.55; }
.marquee.voices .quote .who { font-size: .84rem; }
@media (prefers-reduced-motion: reduce) {
  .marquee.voices .marquee-track { flex-wrap: wrap; justify-content: center; }
  .marquee.voices .marquee-track > *:nth-child(n+8) { display: none; }
}


/* the orb family: milky rounds breathing down the whole page */
body { position: relative; overflow-x: hidden; }
.orb { position: absolute; z-index: -1; pointer-events: none; filter: blur(24px); opacity: .6;
  border-radius: 46% 54% 60% 40% / 42% 50% 50% 58%; }
.orb.a { animation: breathe-a 15s ease-in-out infinite alternate; }
.orb.b { animation: breathe-b 19s ease-in-out infinite alternate; }
.o1 { width: 300px; height: 270px; right: -60px; top: 16%; background: var(--sun-milk); }
.o2 { width: 380px; height: 340px; left: -100px; top: 30%; background: var(--sky-milk); }
.o3 { width: 220px; height: 200px; right: 10%; top: 45%; background: var(--chrome-milk); opacity: .5; }
.o4 { width: 270px; height: 240px; left: 5%; top: 60%; background: var(--coral-milk); opacity: .5; }
.o5 { width: 340px; height: 300px; right: -80px; top: 74%; background: var(--chrome-milk); }
.o6 { width: 250px; height: 230px; left: -60px; top: 88%; background: var(--sun-milk); }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }
