/* No web fonts on purpose: embedding a font CDN would send every visitor's
   address to a third party, which needs consent under German privacy law. */
:root {
  --ink: #13202c;
  --ink-soft: #4b5a68;
  --ink-faint: #7d8a96;
  --line: #dde6ee;
  --paper: #ffffff;
  --mist: #f2f7fb;
  --mist-2: #e8f1f8;
  --blue: #2a7ab0;
  --blue-deep: #1d5f8c;
  --blue-soft: #e3eff8;
  --good: #1a7a52;
  --good-soft: #e4f3ec;
  --bad: #b4453a;
  --bad-soft: #f8e7e5;
  --shadow: 0 1px 2px rgba(19, 32, 44, 0.06), 0 12px 32px rgba(19, 32, 44, 0.08);
  --radius: 16px;
  --sans: ui-sans-serif, -apple-system, "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  --display: ui-sans-serif, -apple-system, "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------ nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(221, 230, 238, 0.7);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.brand svg { flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 26px; border-radius: 999px;
  font: 600 16px/1 var(--sans); text-decoration: none; cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(42, 122, 176, 0.28); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--mist); }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 14.5px; box-shadow: none; }
.btn:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(42, 122, 176, 0.45); outline-offset: 3px; }

/* ------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(42, 122, 176, 0.14), transparent 60%),
    radial-gradient(700px 420px at 5% 90%, rgba(42, 122, 176, 0.08), transparent 60%),
    linear-gradient(180deg, var(--mist) 0%, #fff 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; padding: 72px 0 88px; }
.eyebrow {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--blue-soft); color: var(--blue-deep);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
h1, .display {
  font: 800 clamp(38px, 5.2vw, 60px)/1.06 var(--display);
  letter-spacing: -0.035em; margin: 20px 0 18px; text-wrap: balance;
}
h1 em, .display em { font-style: normal; color: var(--blue); }
/* On a page whose search phrase is the small label, the label is the h1 and
   the headline below it is styled text. */
h1.eyebrow { font: 700 12.5px/1.4 var(--sans); letter-spacing: 0.08em; margin: 0; text-wrap: wrap; border-radius: 14px; }
.lede { font-size: 19px; color: var(--ink-soft); max-width: 34ch; margin: 0 0 30px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-note { font-size: 14px; color: var(--ink-faint); margin: 14px 0 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.chip svg { color: var(--good); }

/* The hero picture is the product's own idea: a page going in, sheets coming
   out, each with its number, the way the preview shows them. */
.stack { position: relative; height: 470px; }
.page-src, .sheet {
  position: absolute; background: #fff; border-radius: 10px; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.page-src { left: 0; top: 34px; width: 56%; height: 380px; padding: 20px 20px 0; }
.page-src .bar { display: flex; gap: 6px; margin-bottom: 18px; }
.page-src .bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.page-src .ttl { height: 16px; width: 70%; border-radius: 4px; background: var(--ink); margin-bottom: 16px; }
.ln { height: 8px; border-radius: 4px; background: #e6edf3; margin: 0 0 9px; }
.ln.s { width: 62%; } .ln.m { width: 84%; }
.tbl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin: 14px 0; }
.tbl span { height: 16px; background: #eef4f9; border-radius: 3px; }
.tbl span.h { background: #d7e6f2; }
.toggle-row { display: flex; align-items: center; gap: 8px; margin: 12px 0; }
.toggle-row b { width: 0; height: 0; border-left: 7px solid var(--ink-soft); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.toggle-row .ln { flex: 1; margin: 0; }

.arrow {
  position: absolute; left: 50%; top: 210px; transform: translateX(-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(42, 122, 176, 0.35); z-index: 5;
}
.sheet { width: 44%; height: 300px; padding: 22px 20px 34px; right: 0; }
.sheet .num { position: absolute; bottom: 10px; right: 14px; font-size: 11px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.sheet .hd { position: absolute; top: 9px; left: 20px; font-size: 9.5px; color: var(--ink-faint); letter-spacing: 0.02em; }
.sheet .logo-dot { position: absolute; top: 7px; right: 16px; width: 26px; height: 12px; border-radius: 3px; background: var(--blue); opacity: 0.85; }
.sheet-1 { top: 150px; right: 6%; transform: rotate(4deg); animation: rise 700ms 380ms both ease-out; }
.sheet-2 { top: 92px; right: 3%; transform: rotate(-1.5deg); animation: rise 700ms 240ms both ease-out; }
.sheet-3 { top: 36px; right: 0; animation: rise 700ms 100ms both ease-out; }
.pdf-tag {
  position: absolute; right: -8px; bottom: 44px; z-index: 6;
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  font-size: 13px; font-weight: 700;
}
.pdf-tag small { display: block; font-weight: 500; color: var(--ink-faint); font-size: 12px; }
.pdf-tag .ok { width: 26px; height: 26px; border-radius: 8px; background: var(--good-soft); color: var(--good); display: grid; place-items: center; }

@keyframes rise { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }

/* ------------------------------------------------------------ sections */
section { padding: 96px 0; }
.tint { background: var(--mist); }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin: 0 0 12px; }
h2 { font: 800 clamp(30px, 3.6vw, 42px)/1.12 var(--display); letter-spacing: -0.03em; margin: 0 0 14px; text-wrap: balance; }
.section-lede { font-size: 18px; color: var(--ink-soft); max-width: 60ch; margin: 0 0 44px; }
h3 { font: 700 20px/1.3 var(--display); letter-spacing: -0.015em; margin: 0 0 8px; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: -48px; position: relative; z-index: 3; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); }
.fact .big { font: 800 34px/1.1 var(--display); letter-spacing: -0.03em; color: var(--blue); }
.fact .label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 8px 0 6px; }
.fact p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.icon { width: 50px; height: 50px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 22px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step .pic { height: 170px; background: linear-gradient(180deg, var(--mist-2), var(--mist)); display: grid; place-items: center; }
.step .body { padding: 24px 26px 30px; }
.step .n {
  counter-increment: step; width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 700; display: grid; place-items: center; margin: -41px 0 14px; position: relative;
  border: 3px solid #fff;
}
.step .n::before { content: counter(step); }
.step p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* Real captures of the Notion top bar and the panel, rendered by store-assets/captures/dom/render.js. */
.topbar-shot { width: 244px; max-width: 86%; height: auto; background: #fff; border-radius: 10px; box-shadow: var(--shadow); padding: 4px 6px; box-sizing: content-box; }

.mini { width: 74%; background: #fff; border-radius: 10px; box-shadow: var(--shadow); padding: 14px; }
.mini-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; }
.mini-sheet { background: #fff; border: 1px solid var(--line); border-radius: 4px; height: 76px; padding: 8px; }
.mini-set { display: flex; flex-direction: column; gap: 6px; }
.mini-set span { height: 9px; border-radius: 3px; background: #e6edf3; }
.mini-set span.on { background: var(--blue); width: 60%; }

/* The screenshot is the proof, so it gets the full width to be read. */
.showcase { display: grid; grid-template-columns: 1fr; gap: 44px; }
.showcase .ticks { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; max-width: 900px; }
.shot { border-radius: 14px; overflow: hidden; box-shadow: 0 2px 4px rgba(19,32,44,.06), 0 28px 60px rgba(19,32,44,.16); border: 1px solid var(--line); background: #fff; }
.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.ticks svg { flex: 0 0 auto; margin-top: 3px; color: var(--blue); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split + .split { margin-top: 96px; }
.split.flip .visual { order: 2; }
.visual { background: linear-gradient(160deg, #fff, var(--mist-2)); border: 1px solid var(--line); border-radius: 22px; padding: 34px; min-height: 320px; display: grid; place-items: center; }
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); background: var(--blue-soft); border-radius: 999px; padding: 4px 10px; margin-bottom: 14px; }

.tree { width: 100%; max-width: 360px; display: grid; gap: 10px; }
.tree .node { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; box-shadow: 0 1px 2px rgba(19,32,44,.05); }
.tree .node.d1 { margin-left: 28px; } .tree .node.d2 { margin-left: 56px; }
.tree .node small { margin-left: auto; font-weight: 600; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.doc-ico { width: 16px; height: 20px; border: 1.6px solid var(--ink-soft); border-radius: 3px; flex: 0 0 auto; }

.merge { width: 100%; max-width: 420px; display: grid; gap: 14px; }
.db { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; font-size: 13px; }
.db div { display: grid; grid-template-columns: 1fr 1.4fr 0.8fr; padding: 8px 12px; border-top: 1px solid var(--line); }
.db div:first-child { border-top: 0; background: var(--mist); font-weight: 700; color: var(--ink-soft); }
.invoices { display: flex; gap: 10px; }
.invoice { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 12px; font-size: 12px; box-shadow: 0 1px 2px rgba(19,32,44,.05); }
.invoice b { display: block; font-size: 13px; margin-bottom: 4px; }
.invoice span { color: var(--ink-faint); }

.guide { display: grid; gap: 72px; }
/* Text above the screenshot, so the capture gets the full width to be read. */
.guide-step { display: grid; gap: 28px; }
.guide-step > div:first-child { max-width: 760px; }
.guide-step.side { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.guide-step .n { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 16px; }
.guide-step p { margin: 0 0 12px; color: var(--ink-soft); font-size: 16px; }
.guide-step code, .split code { font-size: 0.92em; background: var(--blue-soft); color: var(--blue-deep); padding: 1px 6px; border-radius: 5px; }
.guide-step .topbar-shot { margin: 18px 0 0; }
.sheet-fan { position: relative; width: 100%; max-width: 520px; aspect-ratio: 1.3; }
.sheet-fan img { position: absolute; top: 0; width: 56%; height: auto; background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow); }
.sheet-fan img:nth-child(1) { left: 40%; top: 5%; transform: rotate(5deg); }
.sheet-fan img:nth-child(2) { left: 20%; top: 2.5%; transform: rotate(2.5deg); }
.sheet-fan img:nth-child(3) { left: 0; }

.table-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table-scroll { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 15.5px; }
th, td { text-align: left; padding: 17px 22px; border-top: 1px solid var(--line); vertical-align: top; }
thead th { border-top: 0; background: var(--mist); font-size: 14px; font-weight: 700; }
td:first-child { font-weight: 600; }
.yes, .no, .part { display: inline-flex; align-items: center; gap: 8px; }
.yes::before, .no::before, .part::before { content: ""; width: 18px; height: 18px; border-radius: 50%; flex: 0 0 auto; }
.yes::before { background: var(--good) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9.3l2.6 2.6L13 6.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/18px no-repeat; }
.no::before { background: var(--bad) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M6 6l6 6M12 6l-6 6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/></svg>") center/18px no-repeat; }
.part::before { background: #c98a1b url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5.5 9h7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/></svg>") center/18px no-repeat; }
.table-note { font-size: 13.5px; color: var(--ink-faint); margin: 14px 0 0; }

/* Pricing laid out like the Trello downloader: three cards, the yearly plan
   marked as best value and shown as its monthly equivalent. */
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 40px 32px 34px; text-align: center; box-shadow: 0 2px 8px rgba(19, 32, 44, 0.06);
}
.price-card.featured { border: 2px solid var(--blue); box-shadow: 0 20px 48px rgba(42, 122, 176, 0.14); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; border-radius: 999px; padding: 5px 16px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.price-card h3 { font-size: 24px; margin: 0 0 12px; }
.amount { font: 800 46px/1.05 var(--display); letter-spacing: -0.03em; color: var(--blue); }
.amount span { font: 600 17px var(--sans); letter-spacing: 0; color: var(--ink-soft); margin-left: 2px; }
.period { color: var(--ink-faint); font-size: 14.5px; margin: 8px 0 26px; }
.price-list { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.price-list li { display: flex; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 15.5px; }
.price-list li::before { content: "\2713"; color: var(--blue); font-weight: 800; }
.btn-block { width: 100%; margin-top: auto; }
.team-note { margin: 14px 0 0; color: var(--ink-faint); font-size: 13.5px; }
.team-note a { color: var(--blue); text-decoration: underline; }
.aside { margin-top: 22px; background: var(--blue-soft); border-radius: 14px; padding: 18px 22px; color: var(--ink-soft); font-size: 15.5px; }
.aside strong { color: var(--ink); }

.faq { max-width: 820px; display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 24px; }
summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-weight: 500; font-size: 24px; line-height: 1; color: var(--blue); }
details[open] summary::after { content: "\2212"; }
details p { margin: 0 0 22px; color: var(--ink-soft); }

.final {
  border-radius: 28px; padding: 64px; color: #fff; text-align: center;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.14), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
}
.final h2 { color: #fff; margin-left: auto; margin-right: auto; max-width: 20ch; }
.final p { color: rgba(255,255,255,0.85); font-size: 18px; margin: 0 auto 30px; max-width: 52ch; }
.final .btn-primary { background: #fff; color: var(--blue-deep); box-shadow: none; }
.final .btn-primary:hover { background: var(--mist); }
.final .topbar-shot { margin: 0 auto 30px; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }

footer { padding: 40px 0 56px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 14px; }
.foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot nav { display: flex; gap: 22px; }
.foot a { color: var(--ink-soft); text-decoration: none; }
.foot a:hover { color: var(--ink); }

@media (max-width: 960px) {
  .hero-inner, .showcase, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .visual { order: 0; }
  .facts, .cards, .steps, .showcase .ticks, .guide-step.side { grid-template-columns: 1fr; }
  .facts { margin-top: 0; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; gap: 32px; }
  .stack { height: 420px; }
  .nav-links a:not(.btn) { display: none; }
  .final { padding: 44px 24px; }
  section { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sheet-1, .sheet-2, .sheet-3 { animation: none; }
  .btn { transition: none; }
}

/* ------------------------------------------------------------ database printing page */
.hero-fan { justify-self: center; }
.card code { font-size: 0.9em; background: var(--blue-soft); color: var(--blue-deep); padding: 1px 5px; border-radius: 5px; }
.table-card code { font-size: 0.92em; background: var(--blue-soft); color: var(--blue-deep); padding: 1px 6px; border-radius: 5px; }
.crumbs { font-size: 14px; color: var(--ink-faint); margin: 0 0 16px; }
.crumbs a { color: var(--ink-soft); }
