/* orchestrify life — shared stylesheet (2026-09) */

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/newsreader-latin-italic.woff2") format("woff2");
}

:root {
  --bg: #eef0ed;
  --bg-raised: #f7f8f6;
  --ink: #141a1e;
  --ink-2: #4b5459;
  --ink-3: #78828a;
  --rule: #d1d7d3;
  --rule-strong: #9aa5a0;
  --accent: #14402f;
  --accent-ink: #f2f5f2;
  --tint: #dfe9e2;
  --serif: "Newsreader", "Iowan Old Style", Charter, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --shell: 72rem;
  --prose: 40rem;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1517;
    --bg-raised: #151c1f;
    --ink: #e7eae6;
    --ink-2: #aab3ae;
    --ink-3: #78837e;
    --rule: #27312d;
    --rule-strong: #3f4c46;
    --accent: #a3d6ba;
    --accent-ink: #0f1517;
    --tint: #17271f;
  }
}
:root[data-theme="dark"] {
  --bg: #0f1517;
  --bg-raised: #151c1f;
  --ink: #e7eae6;
  --ink-2: #aab3ae;
  --ink-3: #78837e;
  --rule: #27312d;
  --rule-strong: #3f4c46;
  --accent: #a3d6ba;
  --accent-ink: #0f1517;
  --tint: #17271f;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 62rem) { .shell { padding: 0 3rem; } }

a { color: inherit; text-decoration-color: var(--rule-strong); text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { text-decoration-color: var(--accent); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ---------- Header ---------- */
.top { border-bottom: 1px solid var(--rule); }
.top-inner {
  max-width: var(--shell); margin: 0 auto; padding: 1.15rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 62rem) { .top-inner { padding: 1.25rem 3rem; } }
.wordmark { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; text-decoration: none; letter-spacing: -.005em; }
.wordmark:hover { text-decoration: none; color: var(--accent); }
.top-right { display: flex; align-items: center; gap: 1.4rem; font-family: var(--sans); font-size: .9rem; }
.top-nav { display: none; gap: 1.4rem; }
.top-nav a { text-decoration: none; color: var(--ink-2); }
.top-nav a:hover { color: var(--ink); }
@media (min-width: 52rem) { .top-nav { display: flex; } }
.lang { text-decoration: none; color: var(--ink-3); letter-spacing: .02em; }
.lang:hover { color: var(--ink); }
.top-cta {
  text-decoration: none; color: var(--ink); border: 1px solid var(--rule-strong);
  padding: .5rem .95rem; border-radius: 2px; white-space: nowrap;
}
.top-cta:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 3.5rem; }
@media (min-width: 62rem) { .hero { padding: 7rem 0 5rem; } }
.hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.6rem);
  font-weight: 400; line-height: 1.04; letter-spacing: -.022em;
  margin: 0 0 1.6rem; max-width: 24ch; text-wrap: balance;
}
.hero .lede {
  font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.45; color: var(--ink-2);
  max-width: 34rem; margin: 0 0 2.2rem;
}
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.btn {
  display: inline-block; font-family: var(--sans); font-size: 1rem; font-weight: 500;
  background: var(--accent); color: var(--accent-ink); text-decoration: none;
  padding: .95rem 1.6rem; border-radius: 2px; letter-spacing: .005em;
}
.btn:hover { opacity: .9; text-decoration: none; }
.link-quiet { font-family: var(--sans); font-size: 1rem; color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--rule-strong); padding-bottom: .1rem; }
.link-quiet:hover { color: var(--ink); border-color: var(--accent); }
.hero-note { margin-top: 1.6rem; font-family: var(--sans); font-size: .9rem; color: var(--ink-3); max-width: 34rem; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; border-top: 1px solid var(--rule); }
@media (min-width: 62rem) { .section { padding: 6rem 0; } }
.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; line-height: 1.15;
  letter-spacing: -.015em; margin: 0 0 1.2rem; max-width: 24ch; text-wrap: balance;
}
.section .intro { font-size: 1.2rem; color: var(--ink-2); max-width: var(--prose); margin-bottom: 2.4rem; }
.prose { max-width: var(--prose); }
.prose h3 { font-size: 1.25rem; font-weight: 500; margin: 2.2rem 0 .5rem; }
.prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .4em; }
.two-col { display: grid; gap: 2.5rem; }
@media (min-width: 62rem) { .two-col { grid-template-columns: 18rem minmax(0, var(--prose)); gap: 4rem; align-items: start; } }
.two-col h2 { margin-bottom: 0; }
.aside-note { font-family: var(--sans); font-size: .9rem; color: var(--ink-3); margin-top: 1rem; max-width: 16rem; }

/* ---------- Before / after ledger (the one memorable thing) ---------- */
.ledger { margin-top: .5rem; border-top: 1px solid var(--ink); }
.ledger-head { display: none; }
@media (min-width: 52rem) {
  .ledger-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: .7rem 0; font-family: var(--sans); font-size: .85rem; color: var(--ink-3); border-bottom: 1px solid var(--rule); }
}
.ledger-row { display: grid; gap: .5rem 3rem; padding: 1.35rem 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 52rem) { .ledger-row { grid-template-columns: 1fr 1fr; padding: 1.6rem 0; } }
.ledger-row .before { color: var(--ink-2); }
.ledger-row .before::before, .ledger-row .after::before {
  display: block; font-family: var(--sans); font-size: .78rem; color: var(--ink-3); margin-bottom: .25rem;
}
@media (max-width: 51.99rem) {
  .ledger-row .before::before { content: attr(data-label); }
  .ledger-row .after::before { content: attr(data-label); }
}
.ledger-row .after { color: var(--ink); }
.ledger-row .after b { font-weight: 500; }

/* ---------- Vignettes (who books this) ---------- */
.vignettes { display: grid; gap: 2.2rem; margin-top: 2.4rem; }
@media (min-width: 62rem) { .vignettes { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.vignette { border-top: 1px solid var(--rule-strong); padding-top: 1.1rem; }
.vignette h3 { font-size: 1.3rem; font-weight: 500; margin: 0 0 .6rem; line-height: 1.25; }
.vignette p { color: var(--ink-2); font-size: 1.05rem; }

/* ---------- Tools list ---------- */
.tools { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 62rem) { .tools { grid-template-columns: 1fr 1fr; column-gap: 4rem; } }
.tools li { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--rule); font-size: 1.05rem; }
.tools li b { font-weight: 500; }
.tools li span { color: var(--ink-2); }

/* ---------- Formats (dl) ---------- */
.formats { margin: 2.2rem 0 0; max-width: var(--prose); }
.formats div { padding: 1.2rem 0; border-top: 1px solid var(--rule); }
.formats dt { font-size: 1.25rem; font-weight: 500; margin-bottom: .3rem; }
.formats dd { margin: 0; color: var(--ink-2); }
.formats-note { margin-top: 2rem; max-width: var(--prose); padding: 1.3rem 1.5rem; background: var(--tint); border-radius: 2px; }
.formats-note p { margin: 0; }

/* ---------- Person ---------- */
.person { display: grid; gap: 1.8rem; margin-top: 2rem; }
@media (min-width: 52rem) { .person { grid-template-columns: 200px minmax(0, var(--prose)); gap: 3rem; align-items: start; } }
.person img { width: 200px; max-width: 100%; height: auto; display: block; border-radius: 2px; }
.person p { color: var(--ink-2); }
.person p.lead { color: var(--ink); font-size: 1.2rem; }

/* ---------- Principles ---------- */
.principles { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.2rem; max-width: var(--prose); }
.principles li { padding-left: 1.4rem; position: relative; color: var(--ink-2); }
.principles li::before { content: ""; position: absolute; left: 0; top: .62em; width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); }
.principles b { color: var(--ink); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { max-width: 48rem; margin-top: 1.5rem; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { cursor: pointer; padding: 1.1rem 0; font-size: 1.2rem; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); color: var(--ink-3); font-weight: 300; font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); padding-bottom: 1.2rem; max-width: var(--prose); }

/* ---------- Contact ---------- */
.contact { padding: 5rem 0; border-top: 1px solid var(--ink); }
@media (min-width: 62rem) { .contact { padding: 7rem 0; } }
.contact h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 400; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 1.2rem; max-width: 22ch; text-wrap: balance; }
.contact .intro { font-size: 1.2rem; color: var(--ink-2); max-width: 34rem; margin-bottom: 2.2rem; }
.contact-alt { margin-top: 2rem; font-family: var(--sans); font-size: .95rem; color: var(--ink-2); max-width: 34rem; }
.contact-alt a { color: var(--ink); }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--rule); padding: 2rem 0 3rem; font-family: var(--sans); font-size: .85rem; color: var(--ink-3); }
.foot-inner { max-width: var(--shell); margin: 0 auto; padding: 0 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; }
@media (min-width: 62rem) { .foot-inner { padding: 0 3rem; } }
.foot a { color: var(--ink-3); text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* ---------- Landing pages ---------- */
.lp-hero h1 { max-width: 18ch; }
.lp-hero .kicker { font-family: var(--sans); font-size: .95rem; color: var(--ink-3); margin: 0 0 1.4rem; }
.lp-hero .kicker a { color: var(--ink-3); }
.examples { list-style: none; margin: 2rem 0 0; padding: 0; max-width: var(--prose); border-top: 1px solid var(--rule); }
.examples li { padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }
.examples li b { display: block; font-weight: 500; font-size: 1.15rem; margin-bottom: .2rem; }
.examples li span { color: var(--ink-2); }
.related { margin-top: 2rem; font-family: var(--sans); font-size: .95rem; color: var(--ink-2); }
.related a { color: var(--ink); }

/* ---------- Legal pages ---------- */
.legal { padding: 3.5rem 0 5rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -.02em; line-height: 1.1; margin: 0 0 2rem; }
.legal h2 { font-size: 1.35rem; font-weight: 500; margin: 2.2rem 0 .6rem; }
.legal h3 { font-size: 1.1rem; font-weight: 500; margin: 1.6rem 0 .4rem; }
.legal .prose p, .legal .prose li { color: var(--ink-2); }
.legal address { font-style: normal; }

/* ---------- 404 ---------- */
.notfound { padding: 6rem 0 8rem; }
.notfound h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -.02em; margin: 0 0 1rem; }
.notfound p { color: var(--ink-2); max-width: 34rem; }

/* ---------- Statement sections + steps (Startseite 2026-09) ---------- */
.hero-big h1 { max-width: 20ch; }
.hero .lede-strong { color: var(--ink); }
.statement { padding: 5rem 0; border-top: 1px solid var(--rule); text-align: center; }
@media (min-width: 62rem) { .statement { padding: 8rem 0; } }
.statement .kicker { font-family: var(--sans); font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 2rem; }
.lines { list-style: none; margin: 0 auto; padding: 0; max-width: 34rem; }
.lines li { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.35; color: var(--ink-2); padding: .55rem 0; text-wrap: balance; }
.lines-small li { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
.statement .punch {
  font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 400; line-height: 1.05; letter-spacing: -.022em;
  margin: 2.6rem auto 1.6rem; max-width: 20ch; text-wrap: balance;
}
.statement .punch + .lines { margin-top: 2.4rem; }
.statement-note { font-family: var(--sans); font-size: .95rem; color: var(--ink-3); max-width: 34rem; margin: 1.8rem auto 0; }
.statement-note a { color: var(--ink-2); }
.steps { list-style: none; margin: 2.4rem 0 0; padding: 0; display: grid; gap: 2.2rem; }
@media (min-width: 62rem) { .steps { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.steps li { border-top: 1px solid var(--rule-strong); padding-top: 1.2rem; }
.step-n { display: block; font-family: var(--sans); font-size: .85rem; color: var(--ink-3); margin-bottom: 1.2rem; }
.steps h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 400; letter-spacing: -.015em; line-height: 1.15; margin: 0 0 .7rem; }
.steps p { color: var(--ink-2); font-size: 1.05rem; }

/* ---------- Material: paper, shadows, grain ---------- */
:root {
  --paper: #fbfbf9;
  --paper-edge: rgba(20,26,30,.10);
  --shadow-1: 0 1px 1px rgba(20,26,30,.06), 0 2px 4px rgba(20,26,30,.06), 0 8px 16px rgba(20,26,30,.08), 0 24px 48px rgba(20,26,30,.10);
  --shadow-2: 0 2px 2px rgba(20,26,30,.10), 0 8px 12px rgba(20,26,30,.12), 0 28px 40px rgba(20,26,30,.18), 0 60px 90px rgba(20,26,30,.22);
  --gloss: rgba(255,255,255,.75);
  --mark: #dfe9e2;
  --grain-blend: multiply;
  --grain-alpha: .07;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #1a2124;
    --paper-edge: rgba(255,255,255,.08);
    --shadow-1: 0 1px 1px rgba(0,0,0,.4), 0 8px 16px rgba(0,0,0,.4), 0 24px 48px rgba(0,0,0,.5);
    --shadow-2: 0 2px 2px rgba(0,0,0,.5), 0 12px 20px rgba(0,0,0,.5), 0 40px 80px rgba(0,0,0,.7);
    --gloss: rgba(255,255,255,.06);
    --mark: #23382c;
    --grain-blend: overlay;
    --grain-alpha: .10;
  }
}
:root[data-theme="dark"] {
  --paper: #1a2124;
  --paper-edge: rgba(255,255,255,.08);
  --shadow-1: 0 1px 1px rgba(0,0,0,.4), 0 8px 16px rgba(0,0,0,.4), 0 24px 48px rgba(0,0,0,.5);
  --shadow-2: 0 2px 2px rgba(0,0,0,.5), 0 12px 20px rgba(0,0,0,.5), 0 40px 80px rgba(0,0,0,.7);
  --gloss: rgba(255,255,255,.06);
  --mark: #23382c;
  --grain-blend: overlay;
  --grain-alpha: .10;
}
.paper, .sheet, .card, .screen { position: relative; }
.sheet::before, .card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--grain-alpha); mix-blend-mode: var(--grain-blend);
}
body { background-image: radial-gradient(120rem 60rem at 20% -10%, var(--bg-raised), transparent 60%); background-repeat: no-repeat; }

/* ---------- Hero grid + phone ---------- */
.hero-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 62rem) { .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 4rem; } }
.hero-big h1 { max-width: 16ch; }
.device { margin: 0; display: grid; justify-items: center; gap: 1.4rem; }
.device figcaption { font-family: var(--sans); font-size: .9rem; color: var(--ink-3); text-align: center; max-width: 22rem; }
.phone {
  width: min(19rem, 82vw); aspect-ratio: 9 / 18.6; border-radius: 3.1rem; padding: .55rem;
  background: linear-gradient(160deg, #3a4247, #14191c 45%, #2a3236);
  box-shadow: var(--shadow-2), inset 0 0 0 1px rgba(255,255,255,.14), inset 0 0 0 3px rgba(0,0,0,.6);
  transform: rotate(-4deg) translateY(.5rem);
  position: relative;
}
@media (min-width: 62rem) { .phone { transform: rotate(-6deg) translate(1rem, .5rem); } }
.phone::after {
  content: ""; position: absolute; left: -.28rem; top: 5.2rem; width: .28rem; height: 3.6rem;
  border-radius: 2px 0 0 2px; background: #1e2529; box-shadow: 0 5.2rem 0 #1e2529;
}
.phone::before {
  content: ""; position: absolute; right: -.28rem; top: 6.8rem; width: .28rem; height: 2.6rem;
  border-radius: 0 2px 2px 0; background: #1e2529;
}
.phone-island { position: absolute; top: 1.15rem; left: 50%; transform: translateX(-50%); width: 5.4rem; height: 1.35rem; border-radius: 1rem; background: #07090a; z-index: 2; }
.screen {
  height: 100%; border-radius: 2.6rem; overflow: hidden; background: var(--paper); color: var(--ink);
  padding: 3.1rem 1.35rem 1.4rem; display: flex; flex-direction: column;
  font-size: .82rem; line-height: 1.45;
  box-shadow: inset 0 0 0 1px var(--paper-edge);
}
.screen::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.16), transparent 28%, transparent 70%, rgba(255,255,255,.06));
}
.scr-bar { display: flex; justify-content: space-between; font-family: var(--sans); font-size: .68rem; color: var(--ink-3); padding-bottom: .6rem; margin-bottom: .6rem; border-bottom: 1px solid var(--rule); }
.scr-meta { font-family: var(--sans); font-size: .74rem; color: var(--ink-2); margin: 0 0 .25rem; }
.scr-body { margin-top: .8rem; }
.scr-body p { margin: 0 0 .7em; }
.scr-body mark { background: var(--mark); color: inherit; padding: 0 .15em; border-radius: 2px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.scr-foot { margin-top: auto; padding-top: .8rem; border-top: 1px solid var(--rule); font-family: var(--sans); font-size: .7rem; color: var(--ink-2); display: flex; align-items: center; gap: .45rem; }
.scr-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ---------- Business-card fan ---------- */
.cards { position: relative; width: min(34rem, 92vw); height: 21rem; margin: 0 auto 2.4rem; }
.card {
  position: absolute; left: 50%; top: 50%; width: 17rem; height: 10.5rem; margin: -5.25rem 0 0 -8.5rem;
  border-radius: 4px; background: var(--paper); box-shadow: var(--shadow-1), inset 0 1px 0 var(--gloss), 0 0 0 1px var(--paper-edge);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; text-align: left;
  padding: 1.1rem 1.25rem; transform-origin: 50% 120%;
}
.card b { font-weight: 500; font-size: 1.15rem; letter-spacing: -.01em; line-height: 1.15; }
.card small { font-family: var(--sans); font-size: .74rem; color: var(--ink-3); margin-top: .3rem; }
.card-1, .card-2, .card-3 { justify-content: flex-start; padding-top: .95rem; }
.card-1 { transform: rotate(-18deg) translate(-7.2rem, -3.2rem); }
.card-2 { transform: rotate(0deg) translateY(-5.6rem); }
.card-3 { transform: rotate(18deg) translate(7.2rem, -3.2rem); }
.card-front { transform: translateY(3.4rem); box-shadow: var(--shadow-2), inset 0 1px 0 var(--gloss), 0 0 0 1px var(--paper-edge); }
.card-front::after { content: ""; position: absolute; top: 1.1rem; left: 1.25rem; width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 1.5px solid var(--accent); }
.statement .kicker { margin-top: 0; }

/* ---------- Paper sheet for the ledger ---------- */
.sheet {
  background: var(--paper); border-radius: 3px; padding: 1.2rem 1.4rem .4rem; margin-top: 1.2rem;
  box-shadow: var(--shadow-1), inset 0 1px 0 var(--gloss), 0 0 0 1px var(--paper-edge);
}
@media (min-width: 62rem) { .sheet { padding: 1.6rem 2.4rem .6rem; } }
.sheet .ledger { margin-top: 0; border-top: 0; }
.sheet .ledger-row:last-child { border-bottom: 0; }

/* ---------- Stamp ---------- */
.stamp {
  display: inline-block; margin: 0 auto 1.6rem; transform: rotate(-6deg);
  border: 4px double var(--accent); border-radius: 8px; padding: .5rem 1.5rem;
  font-family: var(--sans); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  opacity: .85; position: relative;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='3'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .2 .7 1 1 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='3'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .2 .7 1 1 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.statement .stamp + .punch { margin-top: 0; }

/* ---------- Step numerals ---------- */
.step-n { width: 1.7rem; height: 1.7rem; border-radius: 50%; border: 1px solid var(--rule-strong); display: grid; place-items: center; font-size: .8rem; }
@media (max-width: 40rem) {
  .cards { height: 17rem; }
  .card { width: 13rem; height: 8rem; margin: -4rem 0 0 -6.5rem; padding: .8rem .95rem; }
  .card b { font-size: 1rem; }
  .card-1 { transform: rotate(-18deg) translate(-4.6rem, -2.6rem); }
  .card-2 { transform: translateY(-4.4rem); }
  .card-3 { transform: rotate(18deg) translate(4.6rem, -2.6rem); }
  .card-front { transform: translateY(2.4rem); }
}
.things li { border-top: 1px solid var(--rule-strong); }
.things h3 { max-width: 14ch; }
.scr-title { font-size: 1.15rem; font-weight: 500; letter-spacing: -.01em; margin: .2rem 0 .9rem; }
.scr-list { list-style: none; margin: 0; padding: 0; }
.scr-list li { position: relative; padding: .45rem 0 .45rem 1.6rem; border-bottom: 1px solid var(--rule); color: var(--ink-2); }
.scr-list li::before { content: ""; position: absolute; left: 0; top: .6rem; width: .95rem; height: .95rem; border-radius: 50%; border: 1.5px solid var(--rule-strong); }
.scr-list li.done { color: var(--ink); }
.scr-list li.done::before { background: var(--accent); border-color: var(--accent); }
.scr-list li.done::after { content: ""; position: absolute; left: .3rem; top: .78rem; width: .3rem; height: .5rem; border: solid var(--accent-ink); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }

/* ---------- App tiles (home screen) ---------- */
.apps { display: grid; gap: 2.6rem; margin-top: 1rem; }
@media (min-width: 62rem) { .apps { grid-template-columns: 1fr 1fr; gap: 3rem 4rem; } }
.app-group h3 { font-family: var(--sans); font-weight: 500; font-size: .9rem; color: var(--ink-3); margin: 0 0 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--rule); }
.app-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem .8rem; }
.app-grid li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.app-grid b { font-family: var(--sans); font-weight: 500; font-size: .82rem; margin-top: .6rem; }
.app-grid small { font-family: var(--sans); font-size: .74rem; color: var(--ink-3); line-height: 1.35; margin-top: .2rem; max-width: 9rem; }
.app-icon {
  width: 4.2rem; height: 4.2rem; border-radius: 28%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500; letter-spacing: -.02em; color: #f2f5f2;
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255,255,255,.28), inset 0 -1px 0 rgba(0,0,0,.25);
}
.i-1 { background: linear-gradient(160deg, #2a6a4c, #14402f); }
.i-2 { background: linear-gradient(160deg, #3d4a52, #1c2429); }
.i-3 { background: linear-gradient(160deg, #1f5a3f, #0e2c20); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 1.1rem; }
.i-4 { background: linear-gradient(160deg, #6b7a83, #46545c); }
.i-5 { background: linear-gradient(160deg, #e6efe8, #c9dccf); color: #14402f; }
.i-6 { background: linear-gradient(160deg, #a7c9b4, #7fa992); color: #0f1517; }
.apps-note { margin-top: 2.2rem; font-family: var(--sans); font-size: .9rem; color: var(--ink-3); max-width: var(--prose); }
@media (max-width: 40rem) { .app-grid { gap: 1.2rem .5rem; } .app-icon { width: 3.6rem; height: 3.6rem; font-size: 1.15rem; } .app-grid small { display: none; } }
