/* Vivere — one stylesheet, no build step. */
:root {
  --bg: #f8fafc; --bg-2: #ffffff; --bg-3: #f1f5f9; --text: #0f172a; --muted: #64748b; --line: #e2e8f0;
  --brand: #0f172a; --brand-text: #ffffff; --accent: #059669; --accent-2: #34d399;
  --up: #16a34a; --down: #dc2626; --late: #d97706; --paused: #94a3b8; --new: #64748b;
  --line-2: #cbd5e1;
  --radius: 12px; --shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --ring: 0 0 0 3px rgba(5, 150, 105, .25);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220; --bg-2: #111a2e; --bg-3: #172136; --text: #e5eaf3; --muted: #94a3b8; --line: #243047;
    --brand: #34d399; --brand-text: #05261a; --accent: #34d399; --accent-2: #6ee7b7;
    --up: #34d399; --down: #f87171; --late: #fbbf24; --paused: #64748b; --new: #94a3b8;
    --line-2: #38486a;
    --shadow: 0 1px 2px rgba(0,0,0,.4);
    --ring: 0 0 0 3px rgba(52, 211, 153, .25);
  }
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.5; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; width: 100%; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: 1.9rem; } h2 { font-size: 1.3rem; margin-top: 1.5em; } h3 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
code, pre, kbd { font-family: var(--mono); font-size: .9em; }
code { background: var(--bg-3); padding: .1em .35em; border-radius: 4px; }
pre { background: #0f172a; color: #e2e8f0; padding: 14px 16px; border-radius: var(--radius); overflow-x: auto; line-height: 1.45; margin: 0 0 1em; }
pre code { background: none; padding: 0; color: inherit; font-size: .85rem; }
pre.log { max-height: 60vh; white-space: pre-wrap; word-break: break-word; }
.container { max-width: 1080px; margin: 0 auto; padding: 24px 20px; }
.container-wide { max-width: 1200px; }
.center .lead, .center > p { margin-left: auto; margin-right: auto; }
.narrow { max-width: 420px; margin: 40px auto; }
.narrow-wide { max-width: 720px; margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--muted); } .small { font-size: .875rem; } .strong { font-weight: 600; } .right { text-align: right; }
.warn { color: var(--late); } .err { color: var(--down); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.huge { font-size: 5rem; margin: .2em 0; }
.big { font-size: 2rem; font-weight: 700; margin: 0 0 .3em; }
.trunc { display: inline-block; max-width: 28ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: bottom; }

/* top bar */
.topbar { background: var(--bg-2); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; font-size: 1.1rem; color: var(--text); }
.brand svg { color: var(--accent); }
.topnav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.topnav a { text-decoration: none; padding: 6px 10px; border-radius: 6px; color: var(--muted); font-weight: 500; }
.topnav a:hover, .topnav a.active { color: var(--text); background: var(--bg-3); }
.topnav .btn { color: var(--brand-text); }
.menu { position: relative; }
.menu summary { list-style: none; cursor: pointer; padding: 6px 10px; border-radius: 6px; font-weight: 500; display: flex; gap: 6px; align-items: center; }
.menu summary::-webkit-details-marker { display: none; }
.menu[open] summary { background: var(--bg-3); }
.menu summary::after { content: ""; flex: none; width: 7px; height: 7px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-25%) rotate(45deg); transition: transform .2s ease; }
.menu[open] summary::after { transform: translateY(15%) rotate(225deg); }
.menu-body { position: absolute; right: 0; top: 100%; margin-top: 6px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 180px; padding: 6px; display: flex; flex-direction: column; z-index: 20; }
.menu-body a, .menu-body button { text-align: left; padding: 8px 10px; border-radius: 6px; text-decoration: none; color: var(--text); background: none; border: 0; font: inherit; cursor: pointer; width: 100%; }
.menu-body a:hover, .menu-body button:hover { background: var(--bg-3); }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }

/* footer */
.footer { border-top: 1px solid var(--line); margin-top: 40px; font-size: .875rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 18px 20px; }
.footer a { color: var(--muted); }

/* buttons, forms */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 14px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--text); font: inherit; font-weight: 600; text-decoration: none; cursor: pointer; line-height: 1.2; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, filter .15s ease; }
.btn:hover { background: var(--bg-3); border-color: var(--muted); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn-primary { background: var(--brand); color: var(--brand-text); border-color: var(--brand); }
.btn-primary:hover { filter: brightness(1.1); background: var(--brand); }
.btn-danger { color: var(--down); }
.btn-sm { padding: 5px 10px; font-size: .85rem; }
.btn-lg { padding: 12px 20px; font-size: 1.05rem; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.actions form { display: inline; }
.actions-inline { display: inline-flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.actions-inline form { display: inline; }
form.stack { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
form.stack > .btn { align-self: flex-start; }
label { display: flex; flex-direction: column; gap: 6px; font-weight: 500; font-size: .95rem; }
label.check { flex-direction: row; align-items: center; gap: 8px; font-weight: 400; }
.hint { font-weight: 400; font-size: .825rem; color: var(--muted); }
input[type=text], input[type=email], input[type=password], input[type=url], input[type=number], select, textarea {
  font: inherit; padding: 9px 11px; border: 1px solid var(--line-2); border-radius: 8px; background: var(--bg-2); color: var(--text); width: 100%; }
.card input[type=text], .card input[type=email], .card input[type=password], .card input[type=url], .card input[type=number],
.card select, .card textarea, .auth-card input, .auth-card select, .auth-card textarea { background: var(--bg); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: .75; }
input:disabled { opacity: .6; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; margin: 0; }
legend { font-weight: 600; padding: 0 6px; }
.row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; border: 0; }
.segmented .seg { flex-direction: row; gap: 10px; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; cursor: pointer; background: var(--bg-2); }
.segmented .seg:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-2) inset; }
.segmented .seg input { margin-top: 4px; }
.segmented.small .seg { padding: 6px 10px; }
.checks { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.form-page { max-width: 720px; }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 14px; }
.inline-form input { width: auto; flex: 1; min-width: 220px; }
.inline-form .hint { flex-basis: 100%; margin: 0; }

/* flashes */
.flash { padding: 10px 14px; border-radius: 8px; margin: 0 0 16px; border: 1px solid; }
.flash-ok { background: rgba(22, 163, 74, .08); border-color: rgba(22, 163, 74, .35); }
.flash-err { background: rgba(220, 38, 38, .08); border-color: rgba(220, 38, 38, .35); }
.flash p:last-child { margin-bottom: 0; }

/* the free tools: one prominent input people are meant to type into */
input.mono { font-family: var(--mono); }
input.big { font-size: 1.15rem; padding: 12px 14px; letter-spacing: .02em; }

/* the answers index: a list of links that reads as a list of pages */
.answer-list { list-style: none; padding: 0; margin: 0 0 1.5em; }
.answer-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.answer-list li:last-child { border-bottom: 0; }
.answer-list a { font-weight: 600; text-decoration: none; }
.answer-list a:hover { text-decoration: underline; }
.answer-list .muted { display: block; font-size: .92rem; margin-top: 2px; }
.faq { margin-bottom: 1.5em; }

/* scorecard: a width-scaled bar in a table cell, unlike .bars above which is a
   fixed-width strip of one bar per check. */
.bar-cell { width: 34%; min-width: 80px; }
.sparkbar { display: block; height: 9px; border-radius: 3px; background: var(--accent); opacity: .75; min-width: 1px; }

/* cards, grids */
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin: 0 0 18px; box-shadow: var(--shadow); }
.card h2 { margin-top: 0; margin-bottom: 16px; font-size: 1.1rem; }
.card > h3:first-child { margin-top: 0; }
.card-section { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.card-section > h3 { margin-top: 0; margin-bottom: 14px; }
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.card-head h2 { margin-bottom: 12px; }
.card-link { display: block; text-decoration: none; }
.card-link:hover { border-color: var(--accent); }
.card-link p { margin: 4px 0 0; }
.card-featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-2) inset; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-bottom: 18px; }
.cards .card { margin: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; }
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.tile { background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.tile-k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; margin-bottom: 5px; }
.tile-v { font-size: 1.1rem; font-weight: 600; line-height: 1.25; }
.page-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.page-head h1 { margin-bottom: 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.crumbs { color: var(--muted); font-size: .875rem; margin-bottom: 4px; }
.crumbs a { text-decoration: none; }
.empty { text-align: center; padding: 40px 20px; }
.empty p { max-width: 560px; margin-left: auto; margin-right: auto; }
.stats { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; color: var(--muted); font-size: .9rem; }
.facts { display: grid; grid-template-columns: max-content 1fr; gap: 9px 18px; margin: 0; }
.facts dt { color: var(--muted); font-weight: 500; }
.facts dd { margin: 0; }
.copy { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.copy code { padding: 8px 10px; word-break: break-all; }

/* tables */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.table th, .table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
/* .right is a plain class, so it loses to `.table td` on specificity: restate it. */
.table th.right, .table td.right { text-align: right; }
.table td.num, .table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table th { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: var(--bg-3); }
.table tr:last-child td { border-bottom: 0; }
.table td a { text-decoration: none; }
.table td a:hover { text-decoration: underline; }

/* status */
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--new); vertical-align: middle; }
.dot-up { background: var(--up); box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
.dot-down { background: var(--down); box-shadow: 0 0 0 3px rgba(220,38,38,.18); }
.dot-late { background: var(--late); }
.dot-paused { background: var(--paused); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 2px 9px; border-radius: 999px; font-size: .8rem; font-weight: 600; background: var(--bg-3); border: 1px solid var(--line); white-space: nowrap; }
.pill-up { color: var(--up); } .pill-down { color: var(--down); } .pill-late { color: var(--late); } .pill-paused, .pill-new { color: var(--muted); }
.pill-plan { background: var(--accent); color: var(--brand-text); border-color: var(--accent); font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
@media (prefers-color-scheme: dark) { .pill-plan { color: #05261a; } }
.bars { display: flex; gap: 2px; margin-bottom: 12px; flex-direction: row-reverse; }
.bar { flex: 1; height: 26px; border-radius: 3px; background: var(--up); opacity: .85; max-width: 14px; }
.bar.bad { background: var(--down); }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 0; }

/* home */
.home .hero { padding: 40px 0 20px; max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.hero h1 { font-size: 3rem; margin-bottom: .3em; }
.hero .cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.hero-code { margin-top: 18px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 30px 0; }
.feature h3 { margin-bottom: .3em; }
.feature p { color: var(--muted); margin: 0; }
.pricing-teaser { margin: 40px 0; }
/* plans — the pricing grid and the billing upgrade rows share the tick list */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-bottom: 24px; }
.plans .card { margin: 0; display: flex; flex-direction: column; padding: 24px 22px; position: relative; }
.plans .card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.plans .card-featured { box-shadow: 0 0 0 2px var(--accent-2) inset, var(--shadow); }
.plan-badge { position: absolute; top: -11px; left: 22px; background: var(--accent); color: var(--brand-text); font-size: .68rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 999px; }
.price { font-size: 2.4rem; font-weight: 700; margin: 0 0 .1em; letter-spacing: -.025em; }
.price span { font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-alt { color: var(--muted); font-size: .875rem; margin: 0; }
.ticks { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 10px; font-size: .93rem; color: var(--text); }
.ticks li { position: relative; padding-left: 26px; }
.ticks li::before { content: ""; position: absolute; left: 4px; top: .34em; width: 11px; height: 6px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; }
.plan-cta .btn + .btn, .plan-cta form + form { margin-top: 8px; }
.plan-cta form { display: block; }

/* billing: one wide row per upgrade option, so a single option still fills the page */
.plan-rows { display: grid; gap: 14px; margin-bottom: 16px; }
.plan-row { display: grid; grid-template-columns: minmax(160px, 200px) 1fr minmax(170px, auto); gap: 28px; align-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.plan-row h3 { margin: 0 0 6px; font-size: 1.2rem; }
.plan-row .price { font-size: 1.9rem; margin: 0; }
.plan-row .ticks { margin: 0; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 9px 22px; }
.plan-actions { display: flex; flex-direction: column; gap: 8px; }
.plan-actions form { display: block; }
.plan-actions .btn { width: 100%; }
@media (max-width: 760px) { .plan-row { grid-template-columns: 1fr; gap: 18px; } }
.lifetime { margin-top: 10px; }

/* auth pages */
.auth { max-width: 440px; margin: 56px auto 80px; }
.auth h1 { font-size: 1.7rem; margin-bottom: 6px; }
.auth-sub { color: var(--muted); margin: 0 0 22px; }
.auth-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); }
.auth-card form.stack { gap: 18px; }
.auth-card .flash { margin-bottom: 20px; }
.auth-card form.stack > .btn { align-self: stretch; padding: 11px 18px; font-size: 1rem; margin-top: 2px; }
.auth-foot { margin: 20px 0 0; text-align: center; font-size: .9rem; color: var(--muted); }
.auth-foot a { color: var(--text); }
@media (max-width: 480px) { .auth { margin: 28px auto 48px; } .auth-card { padding: 22px 18px; } }
/* accordions — shared by the marketing FAQs and the in-app "more options" panels */
.acc, .faq details, details.more {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); margin: 0 0 10px; }
.acc > summary, .faq details > summary, details.more > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 18px; cursor: pointer; font-weight: 600; list-style: none; border-radius: inherit;
  transition: background .15s ease; }
.acc > summary::-webkit-details-marker, .faq details > summary::-webkit-details-marker, details.more > summary::-webkit-details-marker { display: none; }
.acc > summary:hover, .faq details > summary:hover, details.more > summary:hover { background: var(--bg-3); }
.acc > summary:focus-visible, .faq details > summary:focus-visible, details.more > summary:focus-visible {
  outline: none; box-shadow: var(--ring); }
.acc > summary::after, .faq details > summary::after, details.more > summary::after {
  content: ""; flex: none; width: 9px; height: 9px; margin-right: 4px; border-radius: 1px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-25%) rotate(45deg); transition: transform .22s ease; }
.acc[open] > summary, .faq details[open] > summary, details.more[open] > summary {
  border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.acc[open] > summary::after, .faq details[open] > summary::after, details.more[open] > summary::after {
  transform: translateY(15%) rotate(225deg); border-color: var(--accent); }
.acc > :not(summary), .faq details > :not(summary), details.more > :not(summary) { margin: 0 18px 16px; }
.faq details > p { color: var(--muted); max-width: 68ch; }
.faq { margin: 32px 0; }
.faq h2 { margin-bottom: .7em; }

/* Smooth open/close where the browser supports animating to auto. */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .acc::details-content, .faq details::details-content, details.more::details-content {
    block-size: 0; overflow: clip; transition: block-size .25s ease, content-visibility .25s allow-discrete; }
  .acc[open]::details-content, .faq details[open]::details-content, details.more[open]::details-content { block-size: auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* docs */
.docs-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.docs-nav { position: sticky; top: 70px; align-self: start; font-size: .9rem; }
.docs-nav a { display: block; padding: 4px 8px; text-decoration: none; color: var(--muted); border-radius: 6px; }
.docs-nav a:hover, .docs-nav a.active { color: var(--text); background: var(--bg-3); }
.docs-group { text-transform: uppercase; font-size: .7rem; letter-spacing: .06em; color: var(--muted); margin: 14px 0 4px 8px; font-weight: 700; }
.docs-body { max-width: 760px; min-width: 0; }
.docs-body h2 { margin-top: 1.6em; }
.docs-body table { width: 100%; border-collapse: collapse; margin-bottom: 1em; }
.docs-body th, .docs-body td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.docs-body th { color: var(--muted); font-size: .85rem; }
.prose h2 { margin-top: 1.6em; }
.note { border-left: 3px solid var(--accent); padding: 8px 14px; background: var(--bg-3); border-radius: 0 8px 8px 0; margin: 0 0 1em; }
@media (max-width: 800px) { .docs-layout { grid-template-columns: 1fr; } .docs-nav { position: static; display: flex; flex-wrap: wrap; gap: 2px; } .docs-group { width: 100%; } .hero h1 { font-size: 2.2rem; } .huge { font-size: 3.5rem; } }

/* comparison pages */
.compare { width: 100%; border-collapse: collapse; margin: 0 0 8px; font-size: .95rem; }
.compare th, .compare td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { background: var(--bg-3); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.compare tbody th { font-weight: 600; width: 28%; color: var(--muted); }
.compare tbody td:first-of-type { font-weight: 500; }
.compare-page .card { margin-top: 24px; }
@media (max-width: 640px) { .compare { display: block; overflow-x: auto; } }

/* status page */
.status-page { max-width: 760px; margin: 20px auto; }
.banner { padding: 16px 20px; border-radius: var(--radius); font-weight: 700; font-size: 1.1rem; margin-bottom: 18px; color: #fff; }
.banner-up { background: var(--up); } .banner-down { background: var(--down); } .banner-mixed { background: var(--late); }
