/* ==========================================================================
   Brass on black. Kodex & Co
   Ground: near-black. Accent: brass, used once per viewport.
   Type:   Archivo Black (display, uppercase) / Archivo (body) / system mono.
   ========================================================================== */

/* ---- Tokens: dark (primary) ---- */
:root {
  --ground:       #0C0E10;
  --surface:      #15181C;
  --raised:       #1D2228;
  --line:         #2A3138;
  --line-strong:  #3C454E;
  --text:         #F5F7F8;
  --muted:        #98A2AC;
  --dim:          #697480;
  --brass:        #E9A81C;
  --brass-deep:   #B07E0C;
  --brass-wash:   rgba(233,168,28,.12);
  --on-brass:     #0B0D0F;
  --green:        #3FB27F;
  --red:          #E2564A;

  --measure: 68ch;
  --page:    1120px;

  --display: "Archivo Black", "Segoe UI Black", "Helvetica Neue", system-ui, sans-serif;
  --body:    "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono:    ui-monospace, "Cascadia Mono", Consolas, "SF Mono", monospace;
}

/* ---- Tokens: light ---- */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --ground:      #F7F8F8;
    --surface:     #FFFFFF;
    --raised:      #EAEEF0;
    --line:        #D8DEE2;
    --line-strong: #AEB8C0;
    --text:        #0B0D0F;
    --muted:       #4A555F;
    --dim:         #78838D;
    --brass:       #96650A;
    --brass-deep:  #8A6008;
    --brass-wash:  rgba(168,118,10,.10);
    --on-brass:    #FFFFFF;
  }
}
:root[data-theme="light"] {
  --ground:      #F7F8F8;
  --surface:     #FFFFFF;
  --raised:      #EAEEF0;
  --line:        #D8DEE2;
  --line-strong: #AEB8C0;
  --text:        #0B0D0F;
  --muted:       #4A555F;
  --dim:         #78838D;
  --brass:       #96650A;
  --brass-deep:  #8A6008;
  --brass-wash:  rgba(168,118,10,.10);
  --on-brass:    #FFFFFF;
}
:root[data-theme="dark"] {
  --ground:      #0C0E10;
  --surface:     #15181C;
  --raised:      #1D2228;
  --line:        #2A3138;
  --line-strong: #3C454E;
  --text:        #F5F7F8;
  --muted:       #98A2AC;
  --dim:         #697480;
  --brass:       #E9A81C;
  --brass-deep:  #B07E0C;
  --brass-wash:  rgba(233,168,28,.12);
  --on-brass:    #0B0D0F;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass); text-underline-offset: .18em; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Shell ---- */
.page   { width: 100%; max-width: var(--page);    margin-inline: auto; padding-inline: 24px; }
.column { width: 100%; max-width: 780px;          margin-inline: auto; padding-inline: 24px; }

.eyebrow {
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 12px;
}

/* ---- Header ---- */
.masthead { border-bottom: 1px solid var(--line); background: var(--ground); position: relative; }
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding-block: 18px;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--text);
  line-height: 1.1;
}
.wordmark span {
  display: block;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}
.nav {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  font-family: var(--body); font-size: .88rem; font-weight: 500;
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--text); border-bottom: 2px solid var(--brass); padding-bottom: 2px; }
.nav .nav-cta {
  background: var(--brass); color: var(--on-brass);
  padding: 10px 18px; border-radius: 5px; font-weight: 700;
  border-bottom: none !important;
}
.nav .nav-cta:hover { background: var(--brass-deep); color: var(--on-brass); }

/* ---- Headings ---- */
h1, h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.02;
  text-wrap: balance;
  margin: 0 0 18px;
}
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-top: 0; }
h3 {
  font-family: var(--body); font-weight: 700;
  font-size: 1.12rem; letter-spacing: -.005em;
  margin: 30px 0 8px; text-wrap: balance;
}
.lede { font-size: 1.16rem; color: var(--muted); margin: 0; max-width: 58ch; }
.brass { color: var(--brass); }

/* ---- Hero ---- */
.hero { padding-block: 84px 52px; border-bottom: 1px solid var(--line); }
.hero-meta {
  display: flex; gap: 26px; flex-wrap: wrap; margin-top: 28px;
  font-family: var(--mono); font-size: .76rem; color: var(--dim);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--body); font-weight: 700; font-size: 1.02rem;
  padding: 15px 30px; border: none; border-radius: 6px; cursor: pointer;
  text-decoration: none; letter-spacing: .005em;
  background: var(--brass); color: var(--on-brass);
  transition: background .13s ease, transform .13s ease;
}
.btn:hover { background: var(--brass-deep); transform: translateY(-1px); }
.btn-quiet {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--line-strong);
}
.btn-quiet:hover { background: var(--surface); border-color: var(--brass); color: var(--text); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 26px 0; }

/* ---- Bands ---- */
.band { padding-block: 60px; border-bottom: 1px solid var(--line); }
.band-sunk { background: var(--surface); }
.section-head { margin-bottom: 30px; }
.section-head p { color: var(--muted); max-width: 60ch; margin: 0; }

/* ---- Proof bar ---- */
.proof {
  display: flex; gap: 34px; flex-wrap: wrap; align-items: center;
  padding: 20px 24px; background: var(--surface);
  border-left: 3px solid var(--brass); border-radius: 0 6px 6px 0;
  margin: 30px 0 0;
}
.proof div { font-size: .84rem; color: var(--muted); }
.proof b {
  display: block; font-family: var(--display); font-size: 1.35rem;
  color: var(--text); font-variant-numeric: tabular-nums; line-height: 1.2;
}

/* ---- Stats ---- */
.stat-row, .stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px; margin: 28px 0;
}
.stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 24px 22px;
}
.stat b {
  display: block; font-family: var(--display); font-size: 2.5rem;
  line-height: 1; color: var(--brass); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: 10px; font-size: .82rem; color: var(--muted); line-height: 1.45; }

/* ---- Cards ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 16px; margin-top: 22px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.card .num {
  display: block; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .13em; color: var(--brass); margin-bottom: 10px;
}
.card h3 { margin: 0 0 6px; font-size: 1.04rem; }
.card p { margin: 0; font-size: .93rem; color: var(--muted); }

/* ---- Prose ---- */
.prose > * { max-width: var(--measure); }
.prose p { margin: 0 0 18px; color: var(--muted); }
.prose p strong, .prose li strong { color: var(--text); font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; color: var(--muted); }
.prose li { margin-bottom: 9px; }

.pull {
  border-left: 3px solid var(--brass); padding: 2px 0 2px 22px;
  margin: 32px 0; font-size: 1.2rem; line-height: 1.42;
  color: var(--text); font-weight: 500;
}

.callout {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 24px; margin: 30px 0;
}
.callout p:last-child { margin-bottom: 0; }

/* Author notes. Hidden from visitors - they carry pricing strategy, open legal
   questions and unfinished-copy reminders no customer should read. Add ?todo=1
   to any URL, or browse from localhost, to see them again. */
.todo { display: none; }
[data-todo] .todo {
  display: block; background: var(--brass-wash); border: 1px dashed var(--brass);
  border-radius: 6px; padding: 14px 16px; margin: 24px 0;
  font-family: var(--mono); font-size: .8rem; line-height: 1.55; color: var(--brass);
}

.disclosure {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; margin: 30px 0; font-size: .87rem; color: var(--dim);
  max-width: var(--measure);
}
.disclosure strong { color: var(--muted); }

/* ---- Tables ---- */
.table-scroll { overflow-x: auto; margin: 26px 0; max-width: 100%; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .94rem; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--muted); }
thead th {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brass);
  border-bottom: 2px solid var(--line-strong); white-space: nowrap;
}
tbody th { font-weight: 700; color: var(--text); }
td.num, th.num { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
tfoot th, tfoot td { border-top: 2px solid var(--line-strong); border-bottom: none; font-weight: 700; color: var(--text); }

/* ---- Numbered steps ---- */
.ledger-list { list-style: none; margin: 0; padding: 0; max-width: var(--measure); }
.ledger-list li {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  padding-block: 20px; border-bottom: 1px solid var(--line); margin: 0;
}
.tick {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--brass-wash); border: 1.5px solid var(--brass); border-radius: 6px;
  font-family: var(--mono); font-size: .8rem; font-variant-numeric: tabular-nums;
  color: var(--brass); margin-top: 2px;
}
.ledger-list b { display: block; margin-bottom: 4px; color: var(--text); font-size: 1.03rem; }
.ledger-list p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---- Post rows ---- */
.post-list { display: grid; border-top: 1px solid var(--line); }
.post-row {
  display: grid; grid-template-columns: 136px 1fr; gap: 24px;
  padding-block: 26px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
}
.post-row:hover .post-title { color: var(--brass); }
.post-tag {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--brass); padding-top: 5px;
}
.post-title { display: block; font-family: var(--body); font-weight: 700; font-size: 1.14rem; margin-bottom: 6px; line-height: 1.28; }
.post-dek { margin: 0; color: var(--muted); font-size: .95rem; max-width: 62ch; }
.post-meta { display: block; font-family: var(--mono); font-size: .7rem; color: var(--dim); margin-top: 9px; }
@media (max-width: 620px) {
  .post-row { grid-template-columns: 1fr; gap: 8px; }
  .post-tag { padding-top: 0; }
}

/* ---- Article ---- */
.article { padding-block: 60px 40px; }
.article-head { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 34px; }
.byline { display: flex; align-items: center; gap: 13px; margin-top: 24px; font-size: .9rem; color: var(--muted); }
.byline-mark {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--brass); color: var(--on-brass);
  display: grid; place-items: center;
  font-family: var(--display); font-size: .88rem;
}
.byline b { color: var(--text); }

/* ---- Capture ---- */
.capture { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 32px; margin-block: 40px; }
.capture p { color: var(--muted); max-width: 56ch; }
.form-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.form-row input[type="email"] {
  flex: 1 1 260px; font-family: var(--body); font-size: 1rem;
  padding: 14px 15px; border: 1px solid var(--line-strong); border-radius: 5px;
  background: var(--ground); color: var(--text);
}
.form-row input[type="email"]::placeholder { color: var(--dim); }
.form-note { font-size: .81rem; color: var(--dim); margin: 12px 0 0; }

/* ---- FAQ ---- */
.faq { max-width: var(--measure); border-top: 1px solid var(--line); margin-top: 18px; }
.faq details { border-bottom: 1px solid var(--line); padding-block: 15px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.02rem; color: var(--text); }
.faq summary::marker { color: var(--brass); }
.faq details p { margin: 10px 0 0; color: var(--muted); }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--line); margin-top: 0; padding-block: 44px 60px; font-size: .87rem; color: var(--dim); background: var(--surface); }
.footer-grid { display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--brass); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: .84rem; }
.footer-fine { margin-top: 28px; max-width: 72ch; line-height: 1.6; font-size: .79rem; color: var(--dim); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   Redesign additions. DESIGN_VARIANCE 8 / MOTION_INTENSITY 5 / DENSITY 5
   Rules held: one accent, one radius system, no section-number eyebrows,
   no three equal feature cards, zero em-dashes in content.
   ========================================================================== */

/* ---- Theme toggle ---- */
.theme-btn {
  background: transparent; border: 1px solid var(--line-strong);
  color: var(--muted); border-radius: 5px; cursor: pointer;
  width: 34px; height: 34px; display: grid; place-items: center;
  font-size: .95rem; line-height: 1; padding: 0;
}
.theme-btn:hover { border-color: var(--brass); color: var(--text); }

/* ---- Hero, editorial asymmetric ---- */
.hero-x { padding-block: 72px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.35fr .8fr; gap: 56px; } }
.hero-x h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1; margin-bottom: 22px; }
.hero-x .lede { font-size: clamp(1.05rem, 2vw, 1.2rem); max-width: 44ch; }
.hero-figure {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  background: var(--surface); aspect-ratio: 4 / 5; display: grid; place-items: center;
  text-align: center; padding: 26px;
}
.hero-figure p { font-family: var(--mono); font-size: .74rem; color: var(--dim); line-height: 1.7; margin: 0; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Proof strip, below the hero, never inside it ---- */
.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.proof-strip .page {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
}
.proof-cell { padding: 26px 0; }
@media (min-width: 700px) {
  .proof-cell + .proof-cell { border-left: 1px solid var(--line); padding-left: 30px; }
}
.proof-cell b {
  display: block; font-family: var(--display); font-size: 1.8rem;
  color: var(--text); line-height: 1; letter-spacing: -.02em;
}
.proof-cell span { display: block; margin-top: 8px; font-size: .86rem; color: var(--muted); max-width: 30ch; }

/* ---- Packages. Middle tier deliberately elevated, not three equal cards ---- */
.tiers { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 34px; align-items: start; }
@media (min-width: 900px) { .tiers { grid-template-columns: 1fr 1.14fr 1fr; gap: 20px; } }
.tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 30px 26px; display: flex; flex-direction: column;
}
.tier-mid {
  border-color: var(--brass); background: var(--raised);
  box-shadow: 0 18px 44px -30px rgba(0,0,0,.7);
}
@media (min-width: 900px) { .tier-mid { padding: 40px 30px; margin-top: -14px; } }
.tier-name {
  font-family: var(--display); text-transform: uppercase; font-size: 1.15rem;
  letter-spacing: -.01em; margin: 0 0 4px; color: var(--text);
}
.tier-speed { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); }
.tier-price {
  font-family: var(--display); font-size: 2.7rem; line-height: 1;
  color: var(--text); margin: 20px 0 4px; font-variant-numeric: tabular-nums;
}
.tier-mid .tier-price { color: var(--brass); font-size: 3.1rem; }
.tier-note { font-size: .82rem; color: var(--dim); margin: 0 0 20px; }
.tier ul { list-style: none; margin: 0 0 24px; padding: 0; }
.tier li {
  font-size: .93rem; color: var(--muted); padding: 8px 0 8px 24px; position: relative; margin: 0;
}
.tier li::before {
  content: "+"; position: absolute; left: 0; top: 8px;
  font-family: var(--mono); color: var(--brass); font-size: .9rem;
}
.tier .btn, .tier .btn-quiet { margin-top: auto; text-align: center; }
.tier-flag {
  align-self: flex-start; font-family: var(--mono); font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--on-brass);
  background: var(--brass); padding: 4px 10px; border-radius: 3px; margin-bottom: 14px;
}

/* ---- Add-on block, two column ---- */
.addon { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .addon { grid-template-columns: 1.1fr .9fr; gap: 52px; } }
.addon-card {
  background: var(--surface); border: 1px solid var(--brass);
  border-radius: 12px; padding: 28px;
}
.addon-card h3 { margin-top: 0; }
.addon-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--muted);
}
.addon-row:last-of-type { border-bottom: none; }
.addon-row b { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--text); white-space: nowrap; }
.proof-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: var(--mono); font-size: .76rem; color: var(--brass);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---- Process, verb labels not numbers ---- */
.flow { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 30px; }
@media (min-width: 820px) { .flow { grid-template-columns: repeat(4, 1fr); } }
.flow-step { padding: 24px 0; border-top: 2px solid var(--line); }
@media (min-width: 820px) { .flow-step { padding: 24px 24px 24px 0; } }
.flow-step:first-child { border-top-color: var(--brass); }
.flow-step h3 {
  font-family: var(--display); text-transform: uppercase; font-size: 1.02rem;
  margin: 0 0 8px; letter-spacing: -.01em; color: var(--text);
}
.flow-step p { margin: 0; font-size: .9rem; color: var(--muted); }
.flow-when { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); display: block; margin-bottom: 10px; }

/* ---- Plain list, no double borders ---- */
.plain { list-style: none; margin: 24px 0 0; padding: 0; max-width: 64ch; }
.plain li { padding: 0 0 22px 0; margin: 0; color: var(--muted); font-size: .97rem; }
.plain li b { display: block; color: var(--text); margin-bottom: 5px; font-size: 1.04rem; }

/* ---- Closing panel ---- */
.close-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: clamp(30px, 5vw, 56px);
  display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center;
}
@media (min-width: 860px) { .close-panel { grid-template-columns: 1.3fr .7fr; gap: 44px; } }
.close-panel h2 { margin-bottom: 10px; }

/* Visually hidden, still read by screen readers. */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* ---- Motion, justified: entrance hierarchy only ----
   The hidden state is gated on .js-reveal, which the entrance script sets on
   <html> before it starts observing. A page without that script, or a visitor
   without JavaScript, gets the content rather than a blank gap. ---- */
.rise { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.js-reveal .rise { opacity: 0; transform: translateY(16px); }
.js-reveal .rise.seen { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise, .js-reveal .rise { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ---- Hero figure. Typographic plate standing in for a real photograph.
   Deliberately not a fake screenshot and not decorative SVG: it is a
   document-inspired composition that reads as intentional while the slot
   is empty, and gets replaced by an img the moment a real photo exists. ---- */
.hero-figure { position: relative; flex-direction: column; }
.figure-plate {
  width: 100%; height: 100%;
  display: grid; grid-template-rows: auto auto 1fr auto;
  gap: 14px; align-content: center; justify-items: center;
  padding: 34px 28px; text-align: center;
  background:
    repeating-linear-gradient(0deg, transparent 0 27px, var(--line) 27px 28px),
    var(--surface);
}
.plate-mark {
  font-family: var(--display); font-size: 2.6rem; line-height: 1;
  color: var(--brass); letter-spacing: -.02em;
}
.plate-line { width: 54px; height: 2px; background: var(--line-strong); }
.plate-cap {
  font-family: var(--display); text-transform: uppercase;
  font-size: 1.1rem; line-height: 1.25; color: var(--text); letter-spacing: -.01em;
}
.plate-foot {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim);
}
.hero-figure figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
  background: var(--ground); border-top: 1px solid var(--line);
  padding: 8px 0;
}
