:root {
  --paper: #FBFAF7;        /* near-white, slightly warm so the photo doesn't look pasted on */
  --ink: #1C2333;          /* deep slate */
  --ink-soft: #4B5568;
  --green: #0F766E;        /* teal: actions, positive numbers, card shadows */
  --green-deep: #0B5C56;
  --brick: #0F766E;        /* buttons */
  --brick-deep: #0B5C56;   /* button hover */
  --amber: #C9A227;        /* gold: chat button only */
  --rule: #D5D8DE;
  --rule-soft: #E8EAEE;
  --white: #FFFFFF;
  --display: "Bricolage Grotesque", "Segoe UI", Helvetica, Arial, sans-serif;
  --body: "Figtree", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }
a { color: var(--green-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white); padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; }
.hp { position: absolute; left: -9999px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: .7rem 1.15rem; border-radius: 8px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2; white-space: nowrap;
}
.btn-solid { background: var(--brick); color: var(--white); border-color: var(--brick); }
.btn-solid:hover { background: var(--brick-deep); border-color: var(--brick-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-lg { padding: .9rem 1.4rem; font-size: 1.0625rem; }
.btn[disabled] { opacity: .6; cursor: wait; }

/* Header */
.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem var(--gutter);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule-soft);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink); text-decoration: none; }
.menu { display: flex; gap: 1.4rem; margin-left: auto; }
.menu a { color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.menu a:hover { color: var(--ink); }
.top-actions { display: flex; align-items: center; gap: 1rem; }
.lang { color: var(--ink-soft); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--rule); }
@media (max-width: 860px) { .menu { display: none; } .top { gap: 1rem; } .top-actions { margin-left: auto; } .brand span { display: none; } }

/* Hero */
.hero {
  max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 8vw, 6rem) var(--gutter) 3rem;
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
@media (max-width: 800px) { .hero { grid-template-columns: 1fr; } .portrait { max-width: 340px; } }
.portrait { margin: 0; }
.portrait img { display: block; width: 100%; height: auto; border-radius: 14px; border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--green); }
.portrait figcaption { display: flex; flex-direction: column; margin-top: 1.1rem; padding-left: .9rem; border-left: 3px solid var(--green); line-height: 1.4; }
.portrait figcaption strong { font-family: var(--display); font-size: 1.05rem; }
.portrait figcaption span { color: var(--ink-soft); font-size: .95rem; }
.kicker { color: var(--green-deep); font-weight: 600; margin-bottom: 1rem; }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 34em; margin: 1.5rem 0 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* The ledger card: the one memorable element */
.ledger {
  background: var(--white); border: 1.5px solid var(--ink); border-radius: 12px;
  box-shadow: 6px 6px 0 var(--green);
  font-size: .97rem; overflow: hidden;
}
.ledger-head { display: flex; justify-content: space-between; align-items: center; padding: .75rem 1.1rem; border-bottom: 1px solid var(--rule); font-family: var(--display); font-weight: 600; }
.ledger-date { color: var(--ink-soft); font-weight: 500; font-size: .85rem; }
.ledger-body { padding: 1.1rem; display: grid; gap: .9rem; }
.ledger-body .q { font-weight: 600; padding-left: .9rem; border-left: 3px solid var(--ink); }
.ledger-body .a { color: var(--ink-soft); line-height: 1.55; }
.ledger-rows { display: grid; gap: .3rem; padding-top: .5rem; font-variant-numeric: tabular-nums; }
.ledger-rows > div { display: flex; justify-content: space-between; padding: .25rem 0; border-bottom: 1px dotted var(--rule); color: var(--ink-soft); }
.ledger-rows b { color: var(--ink); font-weight: 600; }
.ledger-rows .total { border-bottom: 3px double var(--ink); border-top: 1px solid var(--ink); margin-top: .25rem; color: var(--ink); font-weight: 600; }
.ledger-rows .total b { color: var(--green-deep); }
.ledger-ask { display: flex; gap: .5rem; padding: .9rem 1.1rem; border-top: 1px solid var(--rule); background: var(--paper); }
.ledger-ask input { flex: 1; min-width: 0; font: inherit; padding: .6rem .75rem; border: 1.5px solid var(--rule); border-radius: 8px; background: var(--white); }
.ledger-ask input:focus { border-color: var(--ink); outline: none; }
.ledger-note { padding: 0 1.1rem .8rem; background: var(--paper); font-size: .8rem; color: var(--ink-soft); }

/* Proof strip */
.proof {
  list-style: none; margin: 0 auto; padding: 1.25rem var(--gutter);
  max-width: var(--max); display: flex; flex-wrap: wrap; gap: .6rem 2.5rem;
  border-top: 1px solid var(--ink); border-bottom: 3px double var(--ink);
  color: var(--ink-soft); font-weight: 500; font-size: .95rem;
}
.proof li::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: .6rem; vertical-align: 1px; }

/* Sections */
.block { max-width: var(--max); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) var(--gutter); }
.block + .block { border-top: 1px solid var(--rule-soft); }
.block-head { max-width: 40em; margin-bottom: 2.5rem; }
.intro { font-size: 1.15rem; color: var(--ink-soft); margin-top: 1rem; }

/* Product: ledger card leads, features beside it */
.product-grid { display: grid; grid-template-columns: minmax(300px, .9fr) 1.1fr; gap: 3rem 4rem; align-items: start; }
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; } }
.product-grid .ledger { position: static; }   /* was sticky; it overlapped the feature text on shorter screens */
.features { display: grid; grid-template-columns: 1fr; gap: 1.75rem; margin: 0; }
.features dt { font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin-bottom: .5rem; }
.features dd { margin: 0; color: var(--ink-soft); }

/* Services: the lead one is larger, the others sit beside it */
.services { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0; border: 1.5px solid var(--ink); border-radius: 12px; overflow: hidden; }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }
.service { padding: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.service + .service { border-left: 1px solid var(--rule); }
@media (max-width: 900px) { .service + .service { border-left: 0; border-top: 1px solid var(--rule); } }
.service .tag { color: var(--green-deep); font-weight: 600; font-size: .9rem; }
.service h3 { font-size: 1.5rem; }
.service p { color: var(--ink-soft); flex: 1; }
.service a { font-weight: 600; }
.service.service-lead { background: var(--ink); color: var(--white); }
.service.service-lead .tag { color: #7FD6CC; }
.service.service-lead h3 { color: var(--white); }
.service.service-lead p { color: #C7CDD8; }
.service.service-lead a { color: #7FD6CC; }

/* Use cases */
.cases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem 2.5rem; }
@media (max-width: 900px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cases { grid-template-columns: 1fr; } }
.case h3 { margin-bottom: .4rem; padding-top: .8rem; border-top: 2px solid var(--ink); }
.case p { color: var(--ink-soft); }
.other { margin-top: 4rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem 4rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }
@media (max-width: 800px) { .other { grid-template-columns: 1fr; } }
.other h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.other > div > p { color: var(--ink-soft); }
.other ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 2rem; }
@media (max-width: 560px) { .other ul { columns: 1; } }
.other li { break-inside: avoid; padding: .5rem 0; border-bottom: 1px dotted var(--rule); }

/* Steps (a real sequence, so numbered) */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.steps li { counter-increment: step; padding-top: 1rem; border-top: 2px solid var(--ink); position: relative; }
.steps li::before { content: counter(step); font-family: var(--display); font-weight: 700; font-size: 2rem; color: var(--green); line-height: 1; display: block; margin-bottom: .6rem; }
.steps p { color: var(--ink-soft); margin-top: .4rem; }

/* About */
.about-body { max-width: 44em; font-size: 1.2rem; line-height: 1.6; }
.about-meta { margin-top: 1rem; color: var(--ink-soft); }

/* FAQ */
.faq { max-width: 48em; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 3px double var(--ink); }
.faq summary { cursor: pointer; padding: 1rem 0; font-family: var(--display); font-weight: 600; font-size: 1.15rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-weight: 500; font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 1.2rem; color: var(--ink-soft); max-width: 40em; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 800px) { .contact { grid-template-columns: 1fr; } }
.contact-copy p { color: var(--ink-soft); margin: 1rem 0 1.5rem; font-size: 1.15rem; }
.contact-alt { font-size: 1rem !important; margin-top: 2rem !important; }
.contact-form { display: grid; gap: 1rem; background: var(--white); border: 1.5px solid var(--ink); border-radius: 12px; padding: 1.5rem; }
.contact-form label { display: grid; gap: .35rem; font-weight: 500; font-size: .95rem; }
.contact-form input, .contact-form textarea { font: inherit; padding: .65rem .75rem; border: 1.5px solid var(--rule); border-radius: 8px; background: var(--paper); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); outline: none; background: var(--white); }
.form-status { min-height: 1.4em; font-size: .95rem; color: var(--ink-soft); }
.form-status.ok { color: var(--green-deep); }
.form-status.err { color: #B4443A; }

/* Footer */
.foot { border-top: 1px solid var(--ink); }
.foot { max-width: var(--max); margin: 0 auto; padding: 2.5rem var(--gutter) 3rem; display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .95rem; }
.foot strong { color: var(--ink); font-family: var(--display); }
.foot-right { text-align: right; }
@media (max-width: 560px) { .foot-right { text-align: left; } }

/* Chat widget */
.chat-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 30;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--amber); color: var(--ink); border: 0; border-radius: 999px;
  padding: .8rem 1.2rem; font: 600 1rem var(--body); cursor: pointer;
  box-shadow: 0 6px 20px rgba(28, 35, 51, .25);
}
.chat-fab:hover { background: #D9B23A; }
.chat {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 31;
  width: min(400px, calc(100vw - 2.5rem)); height: min(560px, calc(100vh - 2.5rem));
  display: flex; flex-direction: column;
  background: var(--white); border: 1.5px solid var(--ink); border-radius: 14px;
  box-shadow: 6px 6px 0 var(--green); overflow: hidden;
}
.chat[hidden] { display: none; }
.chat-head { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1rem; background: var(--ink); color: var(--paper); font-family: var(--display); font-weight: 600; }
.chat-head button { background: none; border: 0; color: var(--paper); font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 .25rem; }
.chat-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; font-size: .95rem; }
.msg { max-width: 88%; padding: .6rem .8rem; border-radius: 10px; line-height: 1.5; white-space: pre-wrap; }
.msg.bot { background: var(--paper); border: 1px solid var(--rule-soft); align-self: flex-start; border-bottom-left-radius: 3px; }
.msg.user { background: var(--ink); color: var(--paper); align-self: flex-end; border-bottom-right-radius: 3px; }
.msg.typing { color: var(--ink-soft); font-style: italic; }
.chat-form { display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid var(--rule); }
.chat-form input { flex: 1; min-width: 0; font: inherit; padding: .6rem .75rem; border: 1.5px solid var(--rule); border-radius: 8px; }
.chat-form input:focus { border-color: var(--ink); outline: none; }
.chat-note { padding: 0 .9rem .6rem; font-size: .78rem; color: var(--ink-soft); }

/* ---------- Additions: plans, packages, credentials, form select, chat chips ---------- */
.hero-fine { margin-top: 1rem; color: var(--ink-soft); font-size: .95rem; }
.block-head .kicker { margin-bottom: .6rem; }

/* Accounting plans */
.plans-head { max-width: 40em; margin: 4rem 0 1.75rem; }
.plans-head h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.plans-head p { color: var(--ink-soft); }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.plan { background: var(--white); border: 1.5px solid var(--ink); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.plan h4 { font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin: 0; }
.plan .price { font-family: var(--display); font-size: 1.05rem; color: var(--ink-soft); padding-bottom: .75rem; border-bottom: 3px double var(--ink); }
.plan .price span { font-size: 1.6rem; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; margin-right: .25rem; }
.plan .fit { color: var(--ink-soft); font-size: .95rem; }
.plan ul { margin: .25rem 0 0; padding: 0; list-style: none; display: grid; gap: .4rem; font-size: .95rem; }
.plan li { padding-left: 1.2rem; position: relative; }
.plan li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.plan-lead { box-shadow: 6px 6px 0 var(--green); }
.plan-lead .price span { color: var(--green-deep); }
.plans-note { margin-top: 1.25rem; color: var(--ink-soft); font-size: .95rem; max-width: 52em; }

/* Packaged builds */
.packages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
@media (max-width: 800px) { .packages { grid-template-columns: 1fr; } }
.pkg { border: 1.5px solid var(--ink); border-radius: 12px; padding: 1.5rem; background: var(--white); display: flex; flex-direction: column; gap: .6rem; }
.pkg .tag { color: var(--green-deep); font-weight: 600; font-size: .9rem; }
.pkg h3 { font-size: 1.4rem; }
.pkg-body { color: var(--ink-soft); flex: 1; }
.pkg-meta { margin: .5rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; border-top: 1px solid var(--ink); border-bottom: 3px double var(--ink); padding: .75rem 0; }
.pkg-meta dt { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.pkg-meta dd { margin: .1rem 0 0; font-family: var(--display); font-weight: 700; font-size: 1.15rem; font-variant-numeric: tabular-nums; }
.pkg-ask { align-self: flex-start; margin-top: .25rem; background: none; border: 0; padding: 0; color: var(--green-deep); font: 600 1rem var(--body); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.pkg-ask:hover { color: var(--green); }
.pkg-custom { margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; padding: 1.5rem; background: var(--ink); color: var(--paper); border-radius: 12px; }
.pkg-custom h3 { color: var(--white); font-size: 1.35rem; margin-bottom: .35rem; }
.pkg-custom p { color: #C7CDD8; max-width: 40em; }
.pkg-custom .btn-solid { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.pkg-custom .btn-solid:hover { background: #D9B23A; border-color: #D9B23A; color: var(--ink); }
.pkg-note { margin-top: 1.25rem; color: var(--ink-soft); font-size: .95rem; max-width: 52em; }

/* About: credentials beside the paragraph */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem 4rem; align-items: start; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.creds { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.creds li { padding: .7rem 0; border-bottom: 1px dotted var(--rule); font-size: .98rem; }

/* Contact form select */
.contact-form select { font: inherit; padding: .65rem .75rem; border: 1.5px solid var(--rule); border-radius: 8px; background: var(--paper); color: var(--ink); }
.contact-form select:focus { border-color: var(--ink); outline: none; background: var(--white); }

/* Chat starters */
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip { background: var(--white); border: 1px solid var(--rule); border-radius: 999px; padding: .35rem .7rem; font: 500 .85rem var(--body); color: var(--ink); cursor: pointer; text-align: left; }
.chip:hover { border-color: var(--ink); }

/* Small screens: let long buttons wrap instead of widening the layout */
.hero-copy { min-width: 0; }
@media (max-width: 800px) { .hero { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 520px) {
  .btn { white-space: normal; text-align: center; }
  .cta-row .btn, .contact-copy .btn { width: 100%; }
  .pkg-meta { grid-template-columns: 1fr 1fr; }
  .pkg-custom { padding: 1.25rem; }
  .pkg-custom .btn { width: 100%; }
  .chat-fab { right: .75rem; bottom: .75rem; padding: .7rem 1rem; font-size: .95rem; }
}

/* Plan tiers */
.plan .price span { font-size: 1.4rem; }
.tiers { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; border-bottom: 1px solid var(--rule); padding-bottom: .75rem; }
.tiers li { display: flex; justify-content: space-between; font-size: .95rem; color: var(--ink-soft); }
.tiers li b { color: var(--ink); font-variant-numeric: tabular-nums; }
.tier-help { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--rule); border-radius: 12px; font-size: .95rem; color: var(--ink-soft); display: grid; gap: .5rem; }
.tier-help b { color: var(--ink); }
.tiers li { padding-left: 0; }
.tiers li::before { display: none; }


/* Sub-sections inside the two big sections */
.sub-head { max-width: 40em; margin: 4rem 0 1.75rem; }
.sub-head h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.steps h4 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin: 0; }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .steps-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .steps-5 { grid-template-columns: 1fr; } }
.case h4 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin-bottom: .4rem; padding-top: .8rem; border-top: 2px solid var(--ink); }
.more { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1.3fr; gap: 1.5rem 3rem; padding: 1.75rem; background: var(--ink); color: var(--paper); border-radius: 12px; }
@media (max-width: 800px) { .more { grid-template-columns: 1fr; } }
.more h3 { color: var(--white); font-size: 1.5rem; margin-bottom: .6rem; }
.more p { color: #C7CDD8; }
.more ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.more li { padding: .5rem 0 .5rem 1.2rem; border-bottom: 1px dotted #3a4256; position: relative; color: var(--paper); }
.more li::before { content: ""; position: absolute; left: 0; top: 1.05em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light, #7FD6CC); }
.other { margin-top: 3rem; }
.plugin { margin-top: 4rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem 3rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }
@media (max-width: 800px) { .plugin { grid-template-columns: 1fr; } }
.plugin h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.plugin > div > p { color: var(--ink-soft); }
.plugin-rates { margin-top: 1rem; font-weight: 600; color: var(--ink) !important; }
.plugin ul { margin: 0; padding: 0; list-style: none; }
.plugin li { padding: .6rem 0; border-bottom: 1px dotted var(--rule); }
.faq-group + .faq-group { margin-top: 2.5rem; }
.faq-group h3 { font-size: 1.3rem; margin-bottom: .75rem; color: var(--green-deep); }

/* ======================================================================
   Company-first layout: hero with the company name, four offers that
   expand in place, About and FAQ pages, the AI CFO demo, domain checker.
   ====================================================================== */
.h3 { font-family: var(--display); font-weight: 600; font-size: 1.6rem; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
h4, h5 { font-family: var(--display); font-weight: 600; line-height: 1.2; margin: 0; }
h5, .h5 { font-size: 1.15rem; }
.menu a[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Hero */
.hero-co { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: center; }
.company { font-size: clamp(2.75rem, 7.4vw, 5.5rem); line-height: .98; letter-spacing: -0.025em; }
.hero-tag { font-family: var(--display); font-weight: 500; font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.25; margin-top: 1.25rem; max-width: 26em; }
.hero-co .lede { font-size: 1.1rem; margin: 1.25rem 0 2rem; }
.week-card .ledger-rows { padding-top: 0; }
.week-card .ledger-rows > div { padding: .45rem 0; gap: 1rem; }
.week-card .ledger-rows span { display: inline-flex; align-items: center; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: .6rem; flex: none; }
.dot-books { background: var(--green); }
.dot-web { background: var(--amber); }
.dot-custom { background: var(--ink); }
.week-card .ledger-note { padding-top: .8rem; border-top: 1px solid var(--rule); }
@media (max-width: 800px) { .hero-co { grid-template-columns: minmax(0, 1fr); } }

/* Offers */
.offers { display: grid; gap: 1.25rem; }
.offer { background: var(--white); border: 1.5px solid var(--ink); border-radius: 12px; overflow: hidden; scroll-margin-top: 5rem; }
.offer-main { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem 2rem; padding: 1.75rem 2rem; align-items: center; }
.offer-num { font-family: var(--display); font-weight: 700; font-size: 2.25rem; color: var(--green); line-height: 1; align-self: start; }
.offer-copy .tag { color: var(--green-deep); font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.offer-copy h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-bottom: .6rem; }
.offer-copy p:last-child { color: var(--ink-soft); max-width: 46em; }
.offer-side { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; text-align: right; }
.offer-price { color: var(--ink-soft); font-size: .95rem; white-space: nowrap; }
.offer-price b { font-family: var(--display); font-size: 1.35rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.offer-toggle { background: transparent; color: var(--ink); border-color: var(--ink); }
.offer-toggle::after { content: ""; width: .5rem; height: .5rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.offer-toggle[aria-expanded="true"]::after { transform: translateY(2px) rotate(-135deg); }
.offer-toggle:hover { background: var(--ink); color: var(--white); }
.offer-lead { box-shadow: 6px 6px 0 var(--green); }
.offer-lead .offer-main { background: var(--ink); color: var(--white); }
.offer-lead .offer-num, .offer-lead .offer-copy .tag { color: #7FD6CC; }
.offer-lead .offer-copy p:last-child, .offer-lead .offer-price { color: #C7CDD8; }
.offer-lead .offer-price b { color: var(--white); }
.offer-lead .offer-toggle { color: var(--ink); background: #7FD6CC; border-color: #7FD6CC; }
.offer-lead .offer-toggle:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.offer-more { border-top: 1px solid var(--rule); padding: 0 2rem 2.5rem; background: var(--paper); }
.offer-more[hidden] { display: none; }
.offer.is-open .offer-more { animation: reveal .25s ease-out; }
@keyframes reveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.more-intro { font-size: 1.15rem; color: var(--ink-soft); max-width: 44em; padding: 2rem 0 2.25rem; }
.offer-more .sub-head, .offer-more .plans-head { margin: 3.25rem 0 1.5rem; }
.offer-more .sub-head h4, .offer-more .plans-head h4 { margin-bottom: .5rem; }
.offer-more .plans-head p { color: var(--ink-soft); }
.plan h5 { font-size: 1.25rem; }
.pkg h5 { font-size: 1.35rem; }
.case h5 { margin-bottom: .4rem; padding-top: .8rem; border-top: 2px solid var(--ink); }
.more h4 { color: var(--white); margin-bottom: .6rem; }
.more-link { margin-top: 1rem; }
.more-link a { color: #7FD6CC; font-weight: 600; }
.pkg-custom h4, .pkg-custom h2 { color: var(--white); margin-bottom: .35rem; }
.other h4 { margin-bottom: .6rem; }
@media (max-width: 760px) {
  .offer-main { grid-template-columns: minmax(0, 1fr); padding: 1.5rem 1.25rem; }
  .offer-num { font-size: 1.6rem; }
  .offer-side { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; text-align: left; }
  .offer-more { padding: 0 1.25rem 2rem; }
}

/* "You stay in charge" */
.control { margin-top: 2.5rem; padding: 1.5rem 1.75rem; background: var(--white); border: 1px solid var(--rule); border-left: 4px solid var(--green); border-radius: 10px; }
.control h4 { margin-bottom: .75rem; font-size: 1.35rem; }
.control ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem 2rem; }
.control li { padding-left: 1.2rem; position: relative; color: var(--ink-soft); }
.control li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
@media (max-width: 700px) { .control ul { grid-template-columns: 1fr; } }

/* AI CFO demo */
.cfo { display: flex; flex-direction: column; }
.cfo-body { padding: 1.1rem; display: grid; gap: .85rem; align-content: start; min-height: 420px; max-height: 620px; overflow-y: auto; }
.cfo-body .q { font-weight: 600; padding-left: .9rem; border-left: 3px solid var(--ink); }
.cfo-body .a { color: var(--ink-soft); line-height: 1.55; }
.cfo-steps { list-style: none; margin: 0; padding: .6rem .8rem; display: grid; gap: .3rem; background: var(--paper); border: 1px dashed var(--rule); border-radius: 8px; font-size: .85rem; color: var(--ink-soft); }
.cfo-steps li { display: flex; gap: .5rem; align-items: baseline; }
.cfo-steps li::before { content: ""; flex: none; width: .7rem; height: .7rem; border-radius: 50%; border: 2px solid var(--rule); border-top-color: var(--green); animation: spin .8s linear infinite; transform: translateY(1px); }
.cfo-steps li.done::before { content: "✓"; border: 0; animation: none; color: var(--green); font-weight: 700; width: auto; height: auto; line-height: 1; }
.cfo-steps li.cfo-steps-title::before { display: none; }
.cfo-steps-title { font-weight: 600; color: var(--ink); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
@keyframes spin { to { transform: translateY(1px) rotate(360deg); } }
.cfo-caret::after { content: "▍"; color: var(--green); animation: blink 1s steps(1) infinite; margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }
.cfo-fig { display: grid; gap: .45rem; animation: reveal .3s ease-out; }
.cfo-fig-title { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.cfo-bars { display: grid; gap: .45rem; font-size: .88rem; }
.cfo-bar { display: grid; grid-template-columns: minmax(0, 1fr); gap: .15rem; }
.cfo-bar-top { display: flex; justify-content: space-between; gap: .75rem; }
.cfo-bar-top b { font-variant-numeric: tabular-nums; white-space: nowrap; }
.cfo-bar-track { height: 10px; background: var(--rule-soft); border-radius: 5px; overflow: hidden; }
.cfo-bar-fill { height: 100%; background: var(--green); border-radius: 5px; width: 0; transition: width .6s ease-out; }
.cfo-bar.neg .cfo-bar-fill { background: #B4443A; }
.cfo-bar.neg b { color: #B4443A; }
.cfo-chart svg { width: 100%; height: auto; display: block; }
.cfo-legend { display: flex; flex-wrap: wrap; gap: .3rem 1rem; font-size: .78rem; color: var(--ink-soft); }
.cfo-legend span::before { content: ""; display: inline-block; width: 14px; height: 8px; margin-right: .35rem; border-radius: 2px; vertical-align: 0; }
.cfo-legend .lg-likely::before { background: var(--green); height: 3px; vertical-align: 2px; }
.cfo-legend .lg-range::before { background: color-mix(in srgb, var(--green) 22%, transparent); }
.cfo-legend .lg-safety::before { border-top: 2px dashed #B4443A; height: 0; vertical-align: 3px; }
.cfo .ledger-rows > div { gap: 1rem; font-size: .9rem; }
.cfo .ledger-rows .note { color: var(--ink-soft); font-size: .8rem; margin-left: auto; margin-right: .75rem; white-space: nowrap; }
.cfo .ledger-rows .neg b { color: #B4443A; }
.cfo-sources { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; font-size: .78rem; color: var(--ink-soft); animation: reveal .3s ease-out; }
.cfo-sources span { border: 1px solid var(--rule); border-radius: 999px; padding: .15rem .55rem; background: var(--white); color: var(--ink); }
.cfo-ask select { flex: 1; min-width: 0; font: inherit; font-size: .92rem; padding: .6rem .75rem; border: 1.5px solid var(--rule); border-radius: 8px; background: var(--white); color: var(--ink); }
.cfo-ask select:focus { border-color: var(--ink); outline: none; }
.product-grid { grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr); }
@media (max-width: 900px) { .product-grid { grid-template-columns: minmax(0, 1fr); } .cfo-body { min-height: 0; } }

/* Websites: what to send, domain checker, add-ons */
.send, .domain { margin-top: 3.25rem; display: grid; grid-template-columns: 1fr 1.3fr; gap: 1.5rem 3rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }
@media (max-width: 800px) { .send, .domain { grid-template-columns: minmax(0, 1fr); } }
.send h4, .domain h4 { margin-bottom: .6rem; }
.send > div > p, .domain > div > p { color: var(--ink-soft); }
.send ul { margin: 0; padding: 0; list-style: none; }
.send li { padding: .6rem 0; border-bottom: 1px dotted var(--rule); color: var(--ink-soft); }
.send li b { color: var(--ink); font-weight: 600; }
.domain-form { background: var(--white); border: 1.5px solid var(--ink); border-radius: 12px; padding: 1.25rem; box-shadow: 6px 6px 0 var(--green); display: grid; gap: .75rem; align-self: start; }
.domain-row { display: flex; gap: .5rem; }
.domain-row input { flex: 1; min-width: 0; font: inherit; padding: .65rem .75rem; border: 1.5px solid var(--rule); border-radius: 8px; background: var(--paper); }
.domain-row input:focus { border-color: var(--ink); outline: none; background: var(--white); }
.domain-result { min-height: 1.5em; font-size: .98rem; }
.domain-result .ok { color: var(--green-deep); font-weight: 600; }
.domain-result .bad { color: #B4443A; font-weight: 600; }
.domain-result .price { font-family: var(--display); font-weight: 700; color: var(--ink); margin-left: .35rem; }
.domain-result .muted { color: var(--ink-soft); }
.domain-sugs { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.domain-fine { font-size: .82rem; color: var(--ink-soft); }
.plan .pkg-meta { margin-top: 0; }
.addons ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .4rem 2rem; }
.addons li { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px dotted var(--rule); }
.addons li b { color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
@media (max-width: 700px) { .addons ul { grid-template-columns: 1fr; } .addons li { flex-direction: column; gap: 0; } }

/* Consulting */
.ways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 2.5rem; }
@media (max-width: 640px) { .ways { grid-template-columns: 1fr; } }
.ways .case p { color: var(--ink-soft); }
.plugin h4 { margin-bottom: .6rem; }
.plugin li { display: flex; justify-content: space-between; gap: 1rem; }
.plugin li b { font-family: var(--display); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* "Not sure where to start?" under the offers */
.after { margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; flex-wrap: wrap; padding: 1.25rem 1.5rem; border: 1.5px dashed var(--ink-soft); border-radius: 12px; }
.after p { color: var(--ink-soft); max-width: 48em; }
.after strong { color: var(--ink); font-family: var(--display); }
.after a { font-weight: 600; white-space: nowrap; }

/* Inner pages */
.page-head { padding-bottom: 2rem; }
.page-head h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); max-width: 18em; }
.page-head .lede { max-width: 42em; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
@media (max-width: 900px) { .pillars { grid-template-columns: minmax(0, 1fr); } }
.pillar { background: var(--white); border: 1.5px solid var(--ink); border-radius: 12px; padding: 1.75rem; display: grid; gap: .6rem; align-content: start; }
.pillar:first-child { box-shadow: 6px 6px 0 var(--green); }
.pillar h3 { font-size: 1.4rem; }
.pillar p:last-child { color: var(--ink-soft); }
.founder-grid { display: grid; grid-template-columns: minmax(200px, 280px) minmax(0, 1fr); gap: 2rem 4rem; align-items: start; }
@media (max-width: 800px) { .founder-grid { grid-template-columns: minmax(0, 1fr); } }
.portrait-sm { max-width: 280px; }
.portrait-sm img { box-shadow: 6px 6px 0 var(--green); }
.founder-copy { display: grid; gap: 1rem; max-width: 44em; }
.founder-copy > p { font-size: 1.1rem; }
.erp { margin: .5rem 0; padding: 1.25rem 1.5rem; background: var(--white); border: 1px solid var(--rule); border-left: 4px solid var(--green); border-radius: 10px; }
.erp h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.erp p { color: var(--ink-soft); }
.faq-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.faq-nav a { border: 1px solid var(--rule); border-radius: 999px; padding: .35rem .85rem; text-decoration: none; color: var(--ink); background: var(--white); font-weight: 500; font-size: .95rem; }
.faq-nav a:hover { border-color: var(--ink); }
.faq-page .faq-group { scroll-margin-top: 5rem; }
.faq-page .faq-group + .faq-group { margin-top: 3rem; }
.faq-page .faq-group h2 { margin-bottom: .75rem; color: var(--green-deep); }

/* Footer extras */
.foot-links { margin-top: .5rem; }
.foot-links a { color: var(--ink-soft); }
.foot-fine { font-size: .82rem; margin-top: .25rem; }
.cfo-draw { stroke-dasharray: 1000; animation: draw 1.2s ease-out; }
@keyframes draw { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }
.contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
@media (max-width: 800px) { .contact { grid-template-columns: minmax(0, 1fr); } }
.contact-copy, .contact-copy a { overflow-wrap: anywhere; }
.contact-form { grid-template-columns: minmax(0, 1fr); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; }

/* Round 2: onboarding box, website mockup, CTA without a divider */
.block + .block.cta-block { border-top: 0; padding-top: 0; }
.offer-price-sub { font-size: .85rem; white-space: normal; max-width: 16em; margin-top: -.4rem; }
@media (max-width: 760px) { .offer-price-sub { max-width: none; margin-top: 0; flex-basis: 100%; order: 1; } .offer-side .offer-toggle { order: 2; } }

.start { margin-top: 3.25rem; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); background: var(--white); border: 1.5px solid var(--ink); border-radius: 12px; overflow: hidden; box-shadow: 6px 6px 0 var(--amber); scroll-margin-top: 5rem; }
.start-price { background: var(--ink); color: var(--white); padding: 1.75rem; display: grid; gap: .6rem; align-content: center; }
.start-price .tag { color: #7FD6CC; font-weight: 600; font-size: .9rem; }
.start-price h4 { color: var(--white); }
.start-amount { color: #C7CDD8; }
.start-amount b { font-family: var(--display); font-size: 2.5rem; color: var(--white); margin-right: .35rem; font-variant-numeric: tabular-nums; }
.start-copy { padding: 1.5rem 1.75rem; display: grid; gap: 1rem; align-content: center; }
.start-copy ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .55rem; }
.start-copy li { padding-left: 1.4rem; position: relative; }
.start-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.start-copy li:last-child { font-weight: 600; }
.start-more { font-size: .92rem; color: var(--ink-soft); padding-top: .9rem; border-top: 1px dotted var(--rule); }
@media (max-width: 760px) { .start { grid-template-columns: minmax(0, 1fr); } }

.web-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 1rem 3rem; align-items: center; padding-top: 2rem; }
.web-intro .more-intro { padding: 0; }
@media (max-width: 900px) { .web-intro { grid-template-columns: minmax(0, 1fr); } }
.mock { margin: 0 0 1rem; position: relative; padding: 0 2.5rem 2.2rem 0; }
.mock-browser { background: var(--white); border: 1.5px solid var(--ink); border-radius: 10px; overflow: hidden; box-shadow: 6px 6px 0 var(--green); font-size: .72rem; }
.mock-bar { display: flex; align-items: center; gap: .3rem; padding: .45rem .6rem; background: var(--rule-soft); border-bottom: 1px solid var(--rule); }
.mock-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--rule); }
.mock-bar span { margin-left: .5rem; flex: 1; background: var(--white); border-radius: 4px; padding: .1rem .5rem; color: var(--ink-soft); font-size: .68rem; }
.mock-site { background: #FFF8EF; }
.mock-nav { display: flex; justify-content: space-between; align-items: center; padding: .55rem .8rem; gap: .5rem; }
.mock-nav b { font-family: var(--display); font-size: .85rem; color: #7A3E1D; }
.mock-nav span { display: flex; gap: .6rem; color: #6B5A4E; }
.mock-nav em { font-style: normal; }
.mock-hero { padding: 1rem .8rem 1.1rem; background: linear-gradient(120deg, #F3D9B8, #E9B98A); }
.mock-kicker { color: #7A3E1D; font-weight: 600; font-size: .65rem; }
.mock-title { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: #3B2314; line-height: 1.1; margin: .25rem 0 .6rem; max-width: 12em; }
.mock-cta { display: flex; gap: .4rem; }
.mock-cta span { background: #7A3E1D; color: #FFF8EF; border-radius: 5px; padding: .25rem .55rem; font-weight: 600; }
.mock-cta .ghost { background: transparent; color: #7A3E1D; border: 1px solid #7A3E1D; }
.mock-items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; padding: .7rem .8rem .9rem; }
.mock-item p { margin-top: .3rem; color: #3B2314; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-item b { color: #7A3E1D; }
.mock-img { aspect-ratio: 4 / 3; border-radius: 5px; }
.mock-img-1 { background: radial-gradient(circle at 50% 60%, #F7C6D0 0 38%, #E8A2B0 39% 46%, #F9E7D2 47%); }
.mock-img-2 { background: linear-gradient(#FFFDF8 0 30%, #F3E1C0 30% 70%, #E4C38F 70%); }
.mock-img-3 { background: radial-gradient(ellipse at 30% 55%, #D9A15E 0 28%, transparent 29%), radial-gradient(ellipse at 70% 50%, #CF9450 0 28%, transparent 29%), #F9E7D2; }
.mock-phone { position: absolute; right: 0; bottom: 0; width: 38%; min-width: 130px; background: var(--white); border: 1.5px solid var(--ink); border-radius: 14px; padding: .7rem .6rem .6rem; box-shadow: 4px 4px 0 var(--ink); font-size: .66rem; display: grid; gap: .35rem; }
.mock-pay-title { font-family: var(--display); font-weight: 700; font-size: .8rem; }
.mock-pay-row { display: flex; justify-content: space-between; color: var(--ink-soft); }
.mock-pay-total { color: var(--ink); font-weight: 600; border-top: 1px solid var(--rule); padding-top: .3rem; }
.mock-pay-btn { background: #111; color: #fff; text-align: center; border-radius: 5px; padding: .3rem; font-weight: 600; }
.mock-pay-card { border: 1px solid var(--rule); border-radius: 5px; padding: .3rem .4rem; color: var(--ink-soft); }
.mock-pay-main { background: #635BFF; }
.mock-pay-fine { text-align: center; color: var(--ink-soft); font-size: .6rem; }
.mock figcaption { margin-top: .9rem; font-size: .8rem; color: var(--ink-soft); max-width: 60%; }
@media (max-width: 520px) { .mock { padding-right: 1.25rem; } .mock-phone { width: 46%; } .mock figcaption { max-width: 50%; } }

/* Phone menu: a button opens the page links and "Book a call" under the header */
.menu-book, .menu-toggle { display: none; }
.menu-toggle { width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: transparent; border: 1.5px solid var(--rule); border-radius: 8px; cursor: pointer; padding: 0; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .top .menu { display: none; position: absolute; top: 100%; left: 0; right: 0; margin: 0; flex-direction: column; gap: 0;
    padding: .25rem var(--gutter) 1.25rem; background: var(--paper); border-bottom: 1.5px solid var(--ink); box-shadow: 0 12px 24px rgba(28, 35, 51, .12); }
  .top .menu.open { display: flex; }
  .top .menu a { padding: .9rem 0; border-bottom: 1px solid var(--rule-soft); font-size: 1.1rem; color: var(--ink); }
  .top .menu a.menu-book { display: flex; margin-top: 1rem; border: 0; color: var(--white); padding: .85rem 1rem; }
  .top-actions .top-book { display: none; }
  .top .brand span { display: inline; font-size: 1.05rem; }
}
@media (max-width: 380px) { .top .brand span { display: none; } }
