/* ============================================================================
   Virtual Closer — public marketing + legal site design system
   ----------------------------------------------------------------------------
   Shared by index.html, support.html, privacy.html, terms.html.
   Plain CSS, no build step. Load it with <link rel="stylesheet" href="/styles.css">.

   The look, in one line: a cream sheet of paper floating on a hot red
   background. The red is never a backdrop for text — it is a ~16px RIM showing
   around a rounded cream card (.shell) that holds the whole site.

   Three rules that make it recognizable. Do not break these:
     1. The red rim + the inset white ring around the whole site.
     2. A red uppercase kicker over a 900-weight tight headline, every section.
     3. Border color drives shadow color — red-bordered things bloom red.
   ========================================================================== */

/* ── Tokens ───────────────────────────────────────────────────────────────
   Everything reads from these. Never hardcode a hex in a rule below; a page
   that duplicates tokens as literals can't be re-themed. (The previous build
   did exactly that and got stuck red under every theme.) */
:root {
  /* Color */
  --red: #ff2800;
  --red-deep: #c21a00;
  --ink: #0f0f0f;
  --paper: #ffffff;
  --paper-2: #f7f4ef;      /* the visible canvas */
  --muted: #2b2b2b;
  --muted-2: #525252;
  --blush: #fff5f3;        /* accent-card fill */
  --border-soft: #e6e1d8;
  --text-meta: #6b7280;
  --signal-ok: #16a34a;
  --divider: #e2dccd;      /* ONE dashed-divider color, not three */
  --dark-grad: linear-gradient(135deg, #2a2a2a 0%, #161616 100%);
  --hairline-dark: rgba(255, 255, 255, 0.08);

  /* Red shadow ladder — use these, don't retype the rgba */
  --red-shadow-low: 0 2px 6px rgba(255, 40, 0, 0.12);
  --red-shadow-mid: 0 8px 32px rgba(255, 40, 0, 0.16), 0 2px 6px rgba(255, 40, 0, 0.12);
  --red-shadow-high: 0 6px 18px rgba(255, 40, 0, 0.30);

  --shadow-card: 0 1px 3px rgba(15, 15, 15, 0.04), 0 1px 2px rgba(15, 15, 15, 0.04);
  --shadow-card-lg: 0 8px 24px rgba(15, 15, 15, 0.06), 0 2px 6px rgba(15, 15, 15, 0.04);
  --shadow-slab: 0 20px 48px rgba(15, 15, 15, 0.22);

  /* Radius ladder — pick from this, don't invent */
  --r-pill: 999px;
  --r-cta: 8px;
  --r-card: 9px;
  --r-accent: 11px;
  --r-band: 14px;
  --r-shell: 16px;

  /* Spacing (8pt) */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;  --s-5: 20px;
  --s-6: 24px;  --s-8: 32px;  --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-30: 120px; --s-40: 160px;

  --font-body: "IBM Plex Sans", "Inter", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--red);   /* only ever seen as the rim */
  margin: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; }

/* ── The shell — the cream sheet, and the whole trick ─────────────────────
   The `margin` is what reveals the red rim. The inset box-shadow draws the
   white ring INSIDE the ink border: a matted print / letterpress plate. */
.shell {
  width: min(1296px, calc(100vw - 2rem));
  margin: 1rem auto;
  padding: 1rem 1rem 1.55rem;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-shell);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 0 0 1px rgba(15, 15, 15, 0.03);
}

.wrap { width: min(1186px, 100%); margin: 0 auto; padding: 0 0.45rem; }

/* The header is now in normal flow (see .corner-marks below), so the runway no
   longer needs a tall top pad to clear an absolutely-positioned logo — that pad
   was leaving a big empty gap under the new header. Prose pages use .topbar. */
.wrap--runway { padding: var(--s-4) 0.45rem 2.25rem; }
.wrap--prose  { width: min(820px, 100%); padding: var(--s-12) 0.45rem 2.25rem; }

/* ── Header — logo left, nav right, on ONE baseline ────────────────────
   This used to be two absolutely-positioned "corner marks": the logo pinned
   top-left and the nav top-right, both at top:56px. Because the logo image is
   ~4x taller than the nav text, the nav sat at the logo's TOP edge while the
   logo hung down into the hero — the two never shared a baseline and it read as
   misplaced. It's now a normal flex row, so both are vertically centered to
   each other and the logo can't float. */
.corner-marks {
  /* Match the content wrap's width and centering so the logo's left edge lines
     up with the hero text below it, instead of the shell's edge. */
  width: min(1186px, 100%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6); padding: var(--s-4) 0.45rem var(--s-10);
}
.corner-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; letter-spacing: -0.02em; font-size: 1.05rem;
}
.corner-logo img { width: 84px; height: auto; display: block; }
.corner-nav {
  display: flex; align-items: center; gap: var(--s-6);
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
}
.corner-nav a { color: var(--muted); white-space: nowrap; transition: color 140ms ease; }
.corner-nav a:hover { color: var(--red); }
.corner-nav a[aria-current="page"] { color: var(--red); }
.shell--landing { position: relative; }

/* ── Prose-page header (support / privacy / terms) ────────────────────── */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-2) 0 var(--s-6);
  border-bottom: 1px dashed var(--divider);
}
.topbar .mark { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.02em; }
.topbar .mark img { width: 34px; height: 34px; object-fit: contain; }
.topbar nav { display: flex; gap: var(--s-5); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.topbar nav a { color: var(--muted-2); }
.topbar nav a:hover, .topbar nav a[aria-current="page"] { color: var(--red); }

/* ── Type — a barbell. Heavy + tight, or small + wide. No middle. ─────── */
.kicker {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin: 0;
}
.kicker--hero { font-size: 0.78rem; letter-spacing: 0.2em; }

h1, h2, h3 { margin: 0; }

.h1 {
  font-size: clamp(2.05rem, 5.2vw, 3rem); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.1; margin: 0.7rem 0 0;
}
.h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.15rem); font-weight: 700;
  letter-spacing: -0.028em; line-height: 1.2;
  margin: 0.7rem auto 0; max-width: 780px;
}
.lead { font-size: 1.05rem; color: var(--muted); max-width: 62ch; }
/* margin:0 is load-bearing — this renders in a <p>, and the browser's default
   1em bottom margin at 2.4rem font size was dropping ~38px between every stat
   and its label. Weight 700 because the loaded font tops out there. */
.big-num {
  font-size: 2.4rem; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1; margin: 0;
}

/* ── Section header — ruled and indexed, not floating ──────────────────
   These used to be centered blocks sitting in open space, which is what made
   the page read as a stack of unrelated islands. Now every section opens on a
   hairline rule with its plate number in the margin: the rules line up down the
   page, so the sections read as parts of one document. Left-aligned, because a
   centered headline over left-aligned cards has nothing to hang from. */
/* The hairline rule is what stops sections floating — the rules line up down the
   page so it reads as one document. An earlier version also put a plate number
   in a 58px left gutter, but that pushed every heading inward while the cards
   below stayed flush left, so headings read as mis-aligned and slightly
   centered. Numbers gone; headings are now hard left, flush with the content
   under them. */
.opener {
  text-align: left;
  margin-bottom: var(--s-10);
  padding-top: var(--s-6);
  border-top: 1px solid var(--divider);
}
.opener .h2 { margin: 0.4rem 0 0; max-width: 26ch; }
.opener .lead { margin: var(--s-4) 0 0; }
/* No rule inside a dark slab. The slab's own edge is already the section
   boundary, so the hairline just floated with a stack of empty dark space
   above it. Cream bands keep theirs — there, the rule IS the boundary. */
.band--dark > .opener { border-top: none; padding-top: 0; }

@media (max-width: 720px) {
  .opener .h2 { max-width: none; }
}

/* The red kicker stays red on dark. It's the one constant. */
/* Scope dark-band inversion to the band's OWN copy and to dark cards. An accent
   card is blush-on-red and keeps ink text even when it sits inside a dark slab —
   a blanket `.band--dark p` would paint light grey onto cream. */
.band--dark { color: var(--paper); }
.band--dark > .opener .h2 { color: var(--paper); }
.band--dark > .opener .lead { color: #d9d9d9; }
.card--dark, .card--dark .card-title { color: var(--paper); }
.card--dark p { color: #d9d9d9; }
.card--dark p:last-child { margin-bottom: 0; }
.card--accent, .card--accent .card-title { color: var(--ink); }
.card--accent p { color: var(--muted); }

/* ── Bands — a strict zebra. Cream is invisible rhythm; dark is a slab. ── */
.band { margin-top: var(--s-20); }
.band--cream { padding: var(--s-12) var(--s-2); }
.band--dark {
  /* 120px top/bottom left these slabs looking half-empty. A slab already reads
     as its own block; it doesn't need a cream band's worth of breathing room
     inside it too. */
  padding: var(--s-12) var(--s-10);
  background: var(--dark-grad);
  color: var(--paper);
  border-radius: var(--r-band);
  box-shadow: var(--shadow-slab);
}

/* ── Buttons — ONE system. Not two. ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.7rem 1.4rem; border-radius: var(--r-cta);
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em;
  border: 2px solid var(--red); cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}
.btn--primary { background: var(--red); color: var(--paper); box-shadow: var(--red-shadow-high); }
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--secondary { background: rgba(255, 40, 0, 0.10); color: var(--ink); }
.btn--secondary:hover { background: rgba(255, 40, 0, 0.18); }
.band--dark .btn--secondary { color: var(--paper); background: rgba(255, 40, 0, 0.16); }

/* ── Cards — border color drives shadow color ─────────────────────────── */
.card {
  background: var(--paper); border: 1px solid var(--border-soft);
  border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden;
}
.card--accent {
  background: var(--blush); border: 1.25px solid var(--red);
  border-radius: var(--r-accent); box-shadow: var(--red-shadow-mid);
}
.card--dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-accent);
}
.card-pad { padding: var(--s-6); }
.card-title { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }

.pill {
  display: inline-block; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--red); color: var(--paper);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.pill--quiet { background: transparent; color: var(--red); border: 1.5px solid var(--red); }

/* ── Collapsible card — native <details>, zero JS ─────────────────────── */
details.exp > summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-6);
}
details.exp > summary::-webkit-details-marker { display: none; }
details.exp > summary::marker { display: none; }
/* Fixed min-height keeps collapsed cards in a row flush regardless of title length. */
details.exp > summary .card-title { min-height: 2.6rem; display: flex; align-items: center; }
details.exp .chevron {
  color: var(--red); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.9rem;
  transition: transform 160ms ease;
}
details.exp[open] > summary .chevron { transform: rotate(180deg); }
details.exp .body {
  padding: 0 var(--s-6) var(--s-6);
  border-top: 1px dashed var(--divider);
  margin: 0 var(--s-6);
  padding-left: 0; padding-right: 0;
}
.card--dark details.exp .body, details.exp.on-dark .body { border-top-color: var(--hairline-dark); }
details.exp .body > p:first-child { margin-top: var(--s-4); }

/* ── Lists ───────────────────────────────────────────────────────────── */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.checks li { font-size: 0.92rem; display: flex; align-items: baseline; gap: 10px; line-height: 1.65; }
.checks li::before { content: "✓"; color: var(--signal-ok); font-weight: 700; flex-shrink: 0; }

/* ── Grids — all collapse to 1col at the ONE breakpoint ──────────────── */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ── Prose (legal + support copy) ────────────────────────────────────── */
.prose h2 {
  font-size: 1.25rem; font-weight: 900; letter-spacing: -0.01em;
  margin: var(--s-10) 0 var(--s-3);
}
.prose h2:first-of-type { margin-top: var(--s-6); }
.prose p, .prose li { color: var(--muted); font-size: 0.95rem; }
.prose ul { padding-left: 1.1rem; display: grid; gap: var(--s-2); }
.prose a { color: var(--red); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose b { color: var(--ink); }
.updated { color: var(--text-meta); font-size: 0.85rem; margin: var(--s-3) 0 0; }
.callout {
  background: var(--blush); border: 1.25px solid var(--red); border-radius: var(--r-accent);
  padding: var(--s-5); margin: var(--s-6) 0; box-shadow: var(--red-shadow-mid);
  font-size: 0.92rem; color: var(--ink);
}
.note { color: var(--text-meta); font-size: 0.82rem; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.foot {
  margin-top: var(--s-24); padding-top: var(--s-6);
  border-top: 1px dashed var(--divider);
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  align-items: center; justify-content: space-between;
  color: var(--muted-2); font-size: 0.82rem;
}
.foot nav { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.foot a:hover { color: var(--red); }

/* ── Mobile: the rim is a desktop luxury. Delete the frame. ───────────
   ONE breakpoint. 720px. Everywhere. */
@media (max-width: 720px) {
  .shell {
    width: 100vw; margin: 0; border-width: 0; border-radius: 0;
    box-shadow: none; padding: var(--s-4) var(--s-4) var(--s-8);
  }
  /* The header is already a flex row at every size now; on a phone it just
     needs to be full-bleed, tighter, and allowed to wrap the nav under the
     logo when six items won't fit one line. */
  .corner-marks {
    width: 100%; padding: var(--s-2) 0 var(--s-6);
    gap: var(--s-3); flex-wrap: wrap;
  }
  .corner-logo img { width: 60px; }
  /* Wrap between items, never inside one — "THE / DESK" on two lines reads as
     two nav entries. */
  .corner-nav { font-size: 0.68rem; gap: var(--s-3) var(--s-4); flex-wrap: wrap; }
  .corner-nav a { white-space: nowrap; }
  .wrap--runway { padding: var(--s-6) 0 var(--s-6); }
  .band { margin-top: var(--s-10); }
  .band--dark { padding: var(--s-10) var(--s-5); }
  .band--cream { padding: var(--s-6) 0; }
  .grid--2, .grid--3, .grid--4, .grid--auto { grid-template-columns: 1fr; }
  .foot { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================================
   Landing components — shared by index.html and leads.html
   ----------------------------------------------------------------------------
   These used to live in a <style> block inside index.html. They moved here when
   the lead-buyer one-pager was folded into this site: two landing pages using
   two copies of the same rules is how the brand drifts. Page-specific rules
   still belong inline; anything both pages draw belongs here.
   ========================================================================== */

/* Google's IBM Plex Sans tops out at 700, but display type is 900. Synthesize
   the missing weight so headlines keep their heft. Drop this if a true 900 cut
   is ever self-hosted. */
/* No synthetic stroke. Faking weight 900 with -webkit-text-stroke thickened
   every headline and softened its edges — the exact "bulky" read. Real cuts
   plus tighter tracking carry the weight instead. */

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { padding: var(--s-8) 0 var(--s-4); max-width: 900px; }
.hero .lead { margin-top: var(--s-5); font-size: 1.12rem; }
.hero-cta { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-8); }
.hero-note { margin-top: var(--s-4); color: var(--text-meta); font-size: 0.82rem; }

/* ── Card interior ────────────────────────────────────────────────────── */
.step-n {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  color: var(--red); text-transform: uppercase; margin: 0;
}
.card-copy { color: var(--muted); font-size: 0.92rem; }
.card-pad .card-title + .card-copy { margin-top: var(--s-2); }

/* ── Them vs. us ──────────────────────────────────────────────────────── */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s-5); align-items: center; }
.compare .vs { font-weight: 900; color: var(--red); font-size: 0.9rem; letter-spacing: 0.1em; }

/* The crossed-out column. Deliberately NOT red — red is ours, and painting the
   competitor in our brand color reads as a comparison of two of our own things. */
.strikes { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.strikes li {
  font-size: 0.92rem; color: var(--text-meta); line-height: 1.65;
  display: flex; align-items: baseline; gap: 10px;
}
.strikes li::before { content: "—"; flex-shrink: 0; opacity: 0.55; }

/* ── Origin story — a dark slab that keeps the red border + red bloom ─── */
.story {
  background: var(--dark-grad); border: 1.5px solid var(--red);
  border-radius: var(--r-band); box-shadow: var(--red-shadow-mid);
  padding: var(--s-16) var(--s-10); color: var(--paper);
}
.story .h2 { color: var(--paper); margin: 0.7rem 0 0; max-width: 720px; }
.story p { color: #d9d9d9; max-width: 720px; }
/* The slab is dark but it isn't a .band--dark, so the secondary button doesn't
   inherit that band's inversion — without this it renders ink-on-charcoal. */
.story .btn--secondary { color: var(--paper); background: rgba(255, 40, 0, 0.16); }

/* ── The two doors — the one section that holds the site together ─────── */
.doors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.door { display: flex; flex-direction: column; padding: var(--s-8); }
.door .card-title { font-size: 1.35rem; margin-top: var(--s-4); }
.door .card-copy { margin-top: var(--s-3); }
.door .checks { margin-top: var(--s-5); }
/* Buttons sit on a shared baseline whichever column is taller. */
.door .hero-cta { margin-top: auto; padding-top: var(--s-6); }

/* ── Price line — big number, small qualifier, no table ───────────────── */
.price-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--s-6); margin-top: var(--s-6);
}
.price-cell .big-num { color: var(--red); }
.price-cell .price-label {
  margin: var(--s-2) 0 0; font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.02em; color: var(--ink);
}
.price-cell .price-sub { margin: var(--s-1) 0 0; font-size: 0.82rem; color: var(--text-meta); }
.band--dark .price-cell .price-label { color: var(--paper); }
.band--dark .price-cell .price-sub { color: #a8a8a8; }

/* ── Chips — lead types, integrations ─────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.chips span {
  padding: 9px 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border-soft); background: var(--paper);
  font-size: 0.92rem; font-weight: 700;
}

@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .compare .vs { text-align: center; }
  .story { padding: var(--s-10) var(--s-5); }
  .doors { grid-template-columns: 1fr; }
  .door { padding: var(--s-6); }
}

/* ── Register list — replaces grids of collapsed cards ─────────────────
   A 2-col grid of <details> boxes is a lot of border and a lot of dead air for
   a title and a chevron: it reads bulky and says nothing until you click. As a
   register — full-width rows, hairline between, index in the margin — the same
   content reads as a document, lines up with the section headers above it, and
   stops floating. Same markup, same zero-JS <details>, different frame. */
.exp-list { counter-reset: exp; border-top: 1px solid var(--divider); }
.band--dark .exp-list { border-top-color: var(--hairline-dark); }

.exp-list details.exp {
  counter-increment: exp;
  background: none; border: none; border-radius: 0; box-shadow: none;
  border-bottom: 1px solid var(--divider);
}
.band--dark .exp-list details.exp { border-bottom-color: var(--hairline-dark); }

.exp-list details.exp > summary {
  display: grid; grid-template-columns: 58px minmax(0, 1fr) 20px;
  gap: var(--s-5); align-items: baseline;
  padding: var(--s-5) 0;
}
.exp-list details.exp > summary::before {
  content: counter(exp, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-meta);
}
.band--dark .exp-list details.exp > summary::before { color: #8a8a8a; }
/* The fixed min-height existed to keep a row of boxes flush. There is no row
   any more, so it only added dead space. */
.exp-list details.exp > summary .card-title { min-height: 0; display: block; font-size: 1.05rem; }
.exp-list details.exp .chevron { margin-top: 0; }
.exp-list details.exp[open] > summary { padding-bottom: var(--s-3); }
.exp-list details.exp .body {
  border-top: none; margin: 0; padding: 0 var(--s-5) var(--s-5);
  padding-left: calc(58px + var(--s-5));
}
.exp-list details.exp .body > p:first-child { margin-top: 0; }
.exp-list details.exp .body p { color: var(--muted); }
.band--dark .exp-list details.exp .body p { color: #d9d9d9; }

/* ── Spec table — replaces the floating price columns ──────────────────
   Four big numbers sitting in space read as four unrelated facts. In a ruled
   box with hairlines between them they read as one price sheet. */
.spec {
  border: 1px solid var(--border-soft); border-radius: var(--r-card);
  background: var(--paper); overflow: hidden;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.band--dark .spec { background: rgba(255, 255, 255, 0.03); border-color: var(--hairline-dark); }
.spec > * { padding: var(--s-6); border-right: 1px solid var(--border-soft); }
.spec > *:last-child { border-right: none; }
.band--dark .spec > * { border-right-color: var(--hairline-dark); }

@media (max-width: 860px) {
  .spec { grid-template-columns: repeat(2, 1fr); }
  .spec > *:nth-child(2n) { border-right: none; }
  .spec > *:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
}
@media (max-width: 560px) {
  .spec { grid-template-columns: 1fr; }
  .spec > * { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .spec > *:last-child { border-bottom: none; }
  .exp-list details.exp > summary { grid-template-columns: 34px minmax(0, 1fr) 20px; gap: var(--s-3); }
  .exp-list details.exp .body { padding-left: calc(34px + var(--s-3)); padding-right: 0; }
}
