/* The public page. Always light with dark sections - no theme toggle, because a
   visitor has not made any choices yet and this is a poster, not a console. */

:root {
  --bg: #fafcf9; --surface: #fff;
  --line: #e6ede8; --line-strong: #dbe4dc;
  --ink: #152018; --ink-2: #3b4b40; --muted: #687869;
  --accent: #8fae86; --accent-ink: #4a6b45; --accent-bg: #edf2e8;
  --accent-lit: #bcd2b0; --glow: #d8e5cf; --accent-text: #1e2f1f;
  --second: #f3e27a; --second-ink: #7a6300; --second-bg: #fdf8d2;
  --good: #4f7d4a; --good-bg: #e6f0e2;
  --warn: #8a6d00; --warn-bg: #fdf8d2;
  --bad: #c8453d; --bad-bg: #fbecea;
  --night: #182420;
  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-ink); text-decoration: none; }
::selection { background: var(--accent-lit); color: var(--accent-text); }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; margin: 0; line-height: 1.05; }
p { margin: 0; text-wrap: pretty; }
.wrap { max-width: 1160px; margin: 0 auto; padding-inline: 24px; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.eyebrow { font-size: 13px; font-weight: 700; color: var(--accent-ink); text-transform: uppercase; letter-spacing: .1em; }
.lede { color: var(--ink-2); font-size: 17px; }

/* Digit wheels, same as the app's. Kept here too because this page loads only
   this stylesheet - without it every number renders as 0123456789 in a column. */
.roll { display: inline-flex; align-items: center; position: relative; font-variant-numeric: tabular-nums; }
.roll .sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.wheel {
  display: inline-grid; overflow: hidden; height: 1.15em; line-height: 1.15; position: relative;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 11%, #000 22%, #000 78%, rgba(0, 0, 0, .5) 89%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 11%, #000 22%, #000 78%, rgba(0, 0, 0, .5) 89%, rgba(0, 0, 0, 0) 100%);
}
.wheel .spacer { visibility: hidden; }
.wheel .strip { position: absolute; left: 0; right: 0; top: 0; transition: transform .9s cubic-bezier(.22, 1, .36, 1); }
.wheel .strip span { display: flex; justify-content: center; height: 1.15em; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes slidein { from { opacity: 0; transform: translateY(-10px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(243, 226, 122, .5); } 70% { box-shadow: 0 0 0 7px rgba(243, 226, 122, 0); } }
@keyframes focus { 0% { transform: none; } 35% { transform: scale(.32, 1.05); } 65% { transform: scale(1.2, 1); } 100% { transform: none; } }

/* ---------- the mark (same as the app's; js/brand.js, brand/*.svg) ----------
   One colour on light (accent-ink, sage alone is too pale on white); sage body
   and butter pupil on night, the only place the eye lights up. */
.pmark { display: block; flex: none; overflow: visible; color: var(--accent-ink); }
.pmark .pupil { fill: var(--pupil, currentColor); transform-box: fill-box; transform-origin: center; }
.pmark .iris { transition: transform .6s cubic-bezier(.22, 1, .36, 1); }
.pmark .pupil.focus { animation: focus .9s cubic-bezier(.22, 1, .36, 1); }
.hero .pmark, .close .pmark, .report-head .mark .pmark { color: var(--accent); --pupil: var(--second); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- the dark top ---------- */
.hero {
  background: radial-gradient(1100px 600px at 72% -10%, rgba(188, 210, 176, .14), transparent 62%), var(--night);
  color: #fff; position: relative; overflow: hidden;
}
.hero .grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(900px 600px at 60% 30%, #000, transparent);
  mask-image: radial-gradient(900px 600px at 60% 30%, #000, transparent);
}
.hero a { color: inherit; }
.topbar { position: relative; z-index: 2; }
.topbar .wrap { padding-block: 18px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand:hover { text-decoration: none; }
.brand .name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; font-family: var(--display); }
.brand.on-light { color: var(--ink); }
.brand.on-light .name { font-size: 16px; }
.topnav { display: flex; gap: 24px; margin-left: auto; font-size: 14px; font-weight: 500; }
.topnav a { color: rgba(255, 255, 255, .75); }
.topbar .cta { display: flex; gap: 8px; align-items: center; }
.btn-quiet { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, .8); padding: 8px 12px; }
/* Butter is the one action on night: the eye's colour, never on white.
   `.hero a { color: inherit }` is more specific than a bare class, so the dark
   text has to say so inside the hero or it turns white on butter. */
.btn-butter, .hero .btn-butter {
  background: var(--second); color: var(--accent-text); border-radius: 999px;
  padding: 14px 24px; font-weight: 600; font-size: 16px; display: inline-block; white-space: nowrap;
  box-shadow: 0 10px 30px -12px rgba(243, 226, 122, .55);
}
.btn-butter.sm { padding: 8px 16px; font-size: 14px; box-shadow: none; }
.btn-butter:hover { text-decoration: none; filter: brightness(1.05); }

.hero-body {
  padding-block: 64px 96px; display: grid; gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: center;
  position: relative; z-index: 1;
}
/* min-width:0 or the grid column sizes to the headline's max-content and the
   copy spills under the feed cards in the next column. */
.hero-copy { display: grid; gap: 26px; min-width: 0; }
.hero-copy > * { min-width: 0; }
.badge {
  display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px; padding: 5px 12px 5px 6px; width: fit-content; animation: rise .7s both;
}
.badge b { background: rgba(243, 226, 122, .18); color: var(--second); border-radius: 999px; padding: 1px 9px; font-weight: 600; font-size: 12px; }
.hero h1 { font-weight: 700; font-size: clamp(40px, 6.2vw, 80px); line-height: .98; letter-spacing: -0.035em; animation: rise .7s .08s both; }
.hero h1 em { color: var(--glow); font-style: normal; }
.hero .sub { font-size: 19px; color: rgba(255, 255, 255, .72); max-width: 540px; animation: rise .7s .16s both; }
.hero .actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; animation: rise .7s .24s both; }
.btn-outline {
  background: rgba(255, 255, 255, .06); color: #fff; border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px; padding: 14px 22px; font-weight: 600; font-size: 16px;
}
.btn-outline:hover { text-decoration: none; background: rgba(255, 255, 255, .1); }
.hero .figures { display: flex; gap: 24px; flex-wrap: wrap; animation: rise .7s .32s both; }
.hero .figures .n { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.03em; line-height: 1; }
.hero .figures .k { font-size: 12px; color: rgba(255, 255, 255, .55); margin-top: 4px; }

.hero-art { position: relative; min-height: 560px; display: grid; align-items: end; justify-items: center; padding-bottom: 40px; }
.hero-art .ring-outer {
  position: absolute; bottom: -50px; width: 420px; height: 420px; border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .14); animation: orbit 60s linear infinite;
}
.hero-art .ring-outer span { position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--glow); opacity: .75; }
.hero-art .ring-inner { position: absolute; bottom: 10px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .08); }
/* The eye, its bowl centred on the rings: the bowl sits at (52%, 44%) of the
   mark, so the host is shifted by exactly that rather than by half. */
.hero-art .eye-host { position: absolute; left: 50%; bottom: 160px; transform: translate(-52%, 56%); }
.hero-art .eye-host .pmark { width: 220px; height: 220px; position: relative; }
.hero-art .eye-host::before {
  content: ""; position: absolute; left: 30%; top: 4%; width: 46%; height: 80%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(243, 226, 122, .22), transparent);
}
.hero-art .onwatch {
  position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); pointer-events: none;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .7);
}
.hero-art .onwatch::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--second); animation: pulse 2s ease-in-out infinite; }
.demo { position: absolute; top: 0; left: 0; right: 0; display: grid; gap: 8px; padding: 0 4px; }
.demo .row {
  display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 12px; align-items: center;
  padding: 10px 12px; border-radius: 14px; backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
}
.demo .row.lead {
  background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22);
  animation: slidein .5s cubic-bezier(.22, 1, .36, 1); box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .6);
}
.demo .row .art { width: 40px; height: 40px; border-radius: 9px; background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04)); }
.demo .row .t { font-weight: 600; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo .row .r { font-size: 12px; color: rgba(255, 255, 255, .55); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo .row .right { display: grid; gap: 3px; justify-items: end; }
.demo .row .p { font-family: var(--mono); font-size: 15px; }
.tag {
  display: inline-flex; align-items: center; font-family: var(--mono); font-size: 11px;
  padding: 2px 8px; border-radius: 999px; white-space: nowrap; font-weight: 600;
  background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .7);
}
.tag.buy { background: rgba(188, 210, 176, .2); color: var(--glow); }
.tag.ask, .tag.offer { background: rgba(255, 255, 255, .14); color: #fff; }
.trustline {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; font-size: 13px;
  color: rgba(255, 255, 255, .5); position: relative; z-index: 1; padding-bottom: 40px;
}

/* ---------- shared section furniture ---------- */
section { scroll-margin-top: 20px; }
.section { padding-block: 88px 72px; display: grid; gap: 32px; }
.section-head { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: end; }
.section-head h2 { font-weight: 700; font-size: clamp(30px, 4.4vw, 52px); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 1px 2px rgba(21, 32, 24, .04), 0 40px 90px -30px rgba(21, 32, 24, .25); overflow: hidden;
}

/* ---------- the report ---------- */
.report-head {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center;
  padding: 20px 26px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #f8faf8, #fff);
}
.report-head .mark { width: 40px; height: 40px; border-radius: 11px; background: var(--night); display: grid; place-items: center; flex: none; }
.report-head .title { font-weight: 700; font-size: 17px; font-family: var(--display); letter-spacing: -0.01em; }
.chip-warn { font-family: var(--mono); font-size: 12px; background: var(--warn-bg); color: var(--warn); border-radius: 999px; padding: 4px 12px; font-weight: 500; }
.report-figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border-bottom: 1px solid var(--line); }
.report-figures > div { padding: 20px 26px; }
.report-figures > div + div { border-left: 1px solid var(--line); }
.report-figures .k { font-size: 12px; color: var(--muted); font-weight: 500; }
.report-figures .n { font-family: var(--display); font-weight: 700; font-size: 34px; letter-spacing: -0.03em; line-height: 1.1; margin-top: 6px; }
.report-figures .s { font-size: 12px; color: var(--ink-2); margin-top: 4px; }
.report-figures .hi { background: var(--accent-bg); }
.report-figures .hi .n { color: var(--accent-ink); }
.report-figures .win { background: var(--good-bg); }
.report-figures .win .n { color: var(--good); }
.report-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.report-split > div { padding: 22px 26px; display: grid; gap: 12px; align-content: start; }
.report-split > div + div { border-left: 1px solid var(--line); }
.report-split h3 { font-weight: 700; font-size: 14px; font-family: var(--display); }
.buyrow { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; align-items: center; padding: 10px 12px; background: var(--bg); border-radius: 10px; }
.buyrow .t { font-weight: 600; }
.buyrow .s { font-size: 12px; color: var(--muted); }
.note-info { font-size: 13px; color: var(--accent-ink); background: var(--accent-bg); border-radius: 10px; padding: 10px 12px; }
.reject { display: grid; gap: 4px; font-size: 13px; }
.reject .bar { height: 4px; border-radius: 2px; background: var(--accent); }
.reject .track { background: var(--line); border-radius: 2px; overflow: hidden; }

/* ---------- steps, templates, features ---------- */
.steps { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.step { border-radius: 20px; padding: 26px; display: grid; align-content: start; gap: 10px; background: var(--bg); border: 1px solid var(--line); }
.step.dark { background: var(--night); color: #fff; border-color: transparent; }
.step .n { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 15px; background: var(--night); color: var(--glow); }
.step.dark .n { background: var(--accent-lit); color: var(--accent-text); }
.step h3 { font-size: 20px; font-weight: 700; }
.step .when { font-size: 12px; font-family: var(--mono); color: var(--muted); }
.step.dark .when { color: rgba(255, 255, 255, .6); }
.step p { font-size: 15px; color: var(--ink-2); }
.step.dark p { color: rgba(255, 255, 255, .75); }
.step .art { border-radius: 10px; padding: 12px; font-size: 12px; font-family: var(--mono); margin-top: 8px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.step.dark .art { background: rgba(255, 255, 255, .08); border-color: transparent; color: var(--glow); }

.tiles { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; display: grid; gap: 4px; }
.tile .h { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.tile .name { font-family: var(--display); font-weight: 700; font-size: 18px; }
.tile .n { font-size: 12px; font-family: var(--mono); color: var(--muted); }
.tile .ex { font-size: 13px; color: var(--ink-2); }
.tile .m { font-size: 13px; color: var(--good); font-weight: 600; }

/* ---------- ROI ---------- */
.roi { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center; }
.roi .controls { display: grid; gap: 18px; }
.roi label { display: grid; gap: 6px; font-size: 14px; font-weight: 500; }
.roi label .v { font-family: var(--mono); color: var(--accent-ink); font-weight: 600; }
.roi input[type=range] { accent-color: var(--accent); width: 100%; }
.roi .out { background: var(--night); color: #fff; border-radius: 20px; padding: 28px; display: grid; gap: 8px; }
.roi .out .big { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.03em; color: var(--glow); line-height: 1; }
.roi .out .k { font-size: 13px; color: rgba(255, 255, 255, .6); }
.roi .out .note { font-size: 14px; color: rgba(255, 255, 255, .8); border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 12px; margin-top: 6px; }

.features { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px; display: grid; gap: 8px; align-content: start; }
.feature h3 { font-size: 17px; font-weight: 700; }
.feature p { font-size: 14px; color: var(--ink-2); }

/* ---------- pricing ---------- */
.pricing { background: var(--night); color: #fff; }
.pricing .section-head h2 { color: #fff; }
.pricing .eyebrow { color: var(--glow); }
.pricing .lede { color: rgba(255, 255, 255, .72); }
.plans { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: start; }
.plan { border-radius: 20px; padding: 26px; display: grid; align-content: start; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); }
.plan.popular { background: rgba(255, 255, 255, .08); border-color: rgba(188, 210, 176, .45); }
.plan.exec { border-color: rgba(255, 255, 255, .28); }
.plan .name { font-family: var(--display); font-weight: 700; font-size: 20px; }
.plan .tagline { font-size: 13px; color: rgba(255, 255, 255, .6); margin-top: 2px; }
.plan .price { font-family: var(--display); font-weight: 700; font-size: 40px; letter-spacing: -0.03em; margin: 14px 0 4px; }
.plan .billed { font-size: 12.5px; color: rgba(255, 255, 255, .6); margin-bottom: 4px; }
.pricing .billing { display: inline-flex; gap: 2px; padding: 4px; margin: 0 0 18px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); }
.pricing .billing button { border: 0; background: none; color: rgba(255, 255, 255, .72); font: 600 14px/1 var(--sans);
  padding: 9px 16px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.pricing .billing button.on { background: #fff; color: var(--night); }
.pricing .billing button:focus-visible { outline: 2px solid var(--glow); outline-offset: 2px; }
.pricing .billing .save { font: 600 11px/1 var(--mono); padding: 3px 6px; border-radius: 999px;
  background: var(--glow); color: var(--accent-text); }
.plan .price small { font-size: 14px; font-weight: 500; font-family: var(--sans); color: rgba(255, 255, 255, .6); }
.plan ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, .85); }
.plan li { display: flex; gap: 9px; align-items: flex-start; }
.plan li::before { content: "✓"; color: var(--glow); flex: none; }
.plan .go { margin-top: 22px; border-radius: 999px; padding: 11px; font-weight: 700; text-align: center; font-size: 15px; display: block; }
.plan .go.lit { background: var(--second); color: var(--accent-text); }
.plan .go.quiet { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .14); }
.plan .go:hover { text-decoration: none; filter: brightness(1.08); }
.ribbon { font-family: var(--mono); font-size: 11px; background: var(--accent-lit); color: var(--accent-text); border-radius: 999px; padding: 2px 10px; font-weight: 700; }

/* ---------- safety, quotes, faq ---------- */
.safety { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.safe { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px; display: grid; gap: 8px; align-content: start; }
.safe h3 { font-size: 16px; font-weight: 700; }
.safe p { font-size: 14px; color: var(--ink-2); }
.quotes { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: grid; gap: 14px; align-content: space-between; }
.quote p { font-size: 16px; }
.quote .who { font-size: 13px; color: var(--muted); }
.faq { display: grid; gap: 8px; max-width: 820px; }
details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px;
}
details summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--muted); font-size: 20px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin-top: 10px; color: var(--ink-2); font-size: 15px; }

/* ---------- close ---------- */
.close { background: radial-gradient(700px 360px at 50% -20%, rgba(188, 210, 176, .16), transparent 60%), var(--night); color: #fff; border-radius: 24px; padding: clamp(32px, 6vw, 64px); display: grid; gap: 18px; justify-items: center; text-align: center; }
.close h2 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 700; }
.close p { color: rgba(255, 255, 255, .75); max-width: 540px; }
footer { padding-block: 40px 56px; color: var(--muted); font-size: 13px; }
footer .wrap { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
footer a { color: var(--ink-2); }

@media (max-width: 900px) {
  .hero-body { grid-template-columns: minmax(0, 1fr); padding-block: 40px 56px; }
  .hero-art { min-height: 460px; order: 2; }
  .hero-art .eye-host .pmark { width: 160px; height: 160px; }
  .topnav { display: none; }
  .topbar .wrap { gap: 12px; }
  .btn-quiet { padding: 8px 4px; white-space: nowrap; }
  .report-figures > div + div, .report-split > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding-block: 56px 40px; }
}
