/* ─────────────────────────────────────────────────────────────
   FileDrop · refined minimalism · warm white + beige + coral
   ───────────────────────────────────────────────────────────── */

:root {
  --bg:        #faf6ee;     /* warm cream */
  --surface:   #ffffff;     /* pure white card */
  --beige:     #ede4cd;     /* light beige */
  --beige-2:   #d8c8a4;     /* mid beige */
  --beige-3:   #a89878;     /* deep beige */
  --ink:       #2a2520;     /* near-black warm */
  --ink-2:     #5a5247;     /* mid text */
  --ink-3:     #8a8273;     /* muted text */
  --line:      #ebe4d4;     /* subtle border */
  --signal:    #c97b50;     /* muted warm coral */
  --signal-2:  #fae5d6;     /* coral wash */
  --violet:    #6f5b9c;     /* muted purple, used for CLI/dev affordances */
  --good:      #5a8c5e;

  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.04),
               0 2px 8px rgba(42, 37, 32, 0.04);
  --shadow:    0 1px 3px rgba(42, 37, 32, 0.04),
               0 6px 24px rgba(42, 37, 32, 0.07);
  --shadow-lg: 0 2px 6px rgba(42, 37, 32, 0.04),
               0 16px 48px rgba(42, 37, 32, 0.10);

  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { background: var(--bg); -webkit-tap-highlight-color: transparent; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

/* The hidden attribute uses display:none from the UA stylesheet, but author
   rules with equal specificity (e.g. .paired-pill { display: flex }) win.
   Force [hidden] to always hide. */
[hidden] { display: none !important; }

button { font: inherit; }
input  { font: inherit; }

/* ─── topbar ─────────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand img {
  width: 60px;
  height: 60px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}

.icon-btn {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 150ms ease, color 150ms ease;
}
.icon-btn:hover {
  background: rgba(42, 37, 32, 0.05);
  color: var(--ink);
}

/* ─── stage ──────────────────────────────────────────────── */
.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 24px;
  width: 100%;
}

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  max-width: 480px;
  padding: 4vh 0;
}

/* ─── handle ─────────────────────────────────────────────── */
.my-handle {
  text-align: center;
}

.handle-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-variation-settings: "WONK" 1;
}

.handle-id {
  display: inline-block;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 10px;
  margin: -4px -10px;
  border-radius: 8px;
  transition: background 150ms ease, color 150ms ease;
}
.handle-id:hover         { background: rgba(42, 37, 32, 0.04); }
.handle-id:focus-visible { outline: 2px solid var(--beige-3); outline-offset: 2px; }

.handle-id.placeholder {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-3);
  cursor: default;
}
.handle-id.placeholder:hover { background: transparent; }

@media (max-width: 480px) {
  .handle-id { font-size: 22px; }
  .handle-id.placeholder { font-size: 18px; }
}

/* ─── connect form ───────────────────────────────────────── */
.connect-form {
  display: flex;
  align-items: center;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 5px;
  width: min(420px, 100%);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.connect-form:focus-within {
  box-shadow: var(--shadow-lg);
}

.connect-form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 18px;
  background: transparent;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
  min-width: 0;
}
.connect-form input::placeholder {
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: 0;
  font-size: 15px;
}

/* Prevent iOS Safari zoom-in on focus by using >=16px on touch devices */
@media (hover: none) and (pointer: coarse) {
  .connect-form input { font-size: 16px; }
}

.connect-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 150ms ease, transform 100ms ease;
}
.connect-btn:hover  { background: var(--signal); }
.connect-btn:active { transform: scale(0.92); }
.connect-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ─── paired pill ────────────────────────────────────────── */
.paired-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  padding: 9px 9px 9px 18px;
  width: min(420px, 100%);
  box-shadow: var(--shadow);
  font-family: var(--mono);
  font-size: 13px;
}

.paired-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
  animation: dot-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(201, 123, 80, 0.7);
}

.paired-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.paired-pill strong {
  font-weight: 500;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.paired-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 150ms ease;
}
.paired-close:hover { background: var(--signal); }
.paired-close:focus { outline: none; }

/* When the pill is in "waiting for" mode (pre-accept), use a more neutral
   beige dot to distinguish from the active coral one shown when paired. */
.paired-pill[data-state="pending"] .paired-dot {
  background: var(--beige-3);
  animation-duration: 1.8s;
}

/* ─── pair request modal ─────────────────────────────────── */
.pair-request-card {
  text-align: center;
}
.pair-request-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
  margin-bottom: 14px;
}
.pair-request-handle {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.pair-request-msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.pair-request-actions {
  display: flex;
  gap: 8px;
}
.btn-decline,
.btn-accept {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 80ms ease;
}
.btn-decline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-decline:hover { background: var(--ink); color: var(--bg); }
.btn-accept {
  background: var(--ink);
  color: var(--bg);
}
.btn-accept:hover { background: var(--signal); }
.btn-decline:active,
.btn-accept:active  { transform: scale(0.97); }
.btn-decline:focus,
.btn-accept:focus   { outline: none; }

/* ─── feedback ───────────────────────────────────────────── */
.feedback {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
  min-height: 1.4em;
  max-width: 380px;
  line-height: 1.55;
}
.feedback:empty   { min-height: 0; }
.feedback.error   { color: var(--signal); }
.feedback.success { color: var(--good); }

/* ─── airdrop glyph ──────────────────────────────────────── */
.airdrop {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  user-select: none;
  flex-shrink: 0;
}

.airdrop-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  color: var(--beige-3);
  background: var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition:
    color 250ms ease,
    background 250ms ease,
    transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 220ms ease;
}
.airdrop-icon svg {
  width: 42%;
  height: 42%;
}

/* paired state — coral icon, slightly lifted */
.airdrop.paired { cursor: pointer; }
.airdrop.paired .airdrop-icon {
  color: var(--signal);
  background: var(--signal-2);
}
.airdrop.paired:hover .airdrop-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--shadow-lg);
}
.airdrop.paired:active .airdrop-icon {
  transform: scale(0.96);
}

/* drag-over: airdrop becomes solid ink target */
body.drag-over .airdrop .airdrop-icon {
  background: var(--ink);
  color: var(--bg);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

@media (max-height: 720px) {
  .airdrop { width: 100px; height: 100px; margin-bottom: 14px; }
  .airdrop-icon { width: 68px; height: 68px; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .paired-dot { animation: none; }
}

/* ─── privacy note ───────────────────────────────────────── */
.privacy-note {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.55;
  color: var(--beige-3);
  text-align: center;
  max-width: 380px;
  margin: 0 auto max(20px, 3vh);
  padding: 0 24px;
  letter-spacing: 0.005em;
}

/* ─── transfers ──────────────────────────────────────────── */
.transfers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(440px, 100%);
  max-height: 30vh;
  overflow-y: auto;
  padding: 2px;
}
.transfers > #outList,
.transfers > #inList {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Action row above the transfer lists — shown once any transfer exists */
.transfer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 4px;
}

/* "Save all" button — appears when 2+ files have been received */
.save-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 150ms ease, transform 80ms ease;
  box-shadow: var(--shadow-sm);
}
.save-all-btn:hover  { background: var(--signal); }
.save-all-btn:active { transform: scale(0.96); }
.save-all-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.save-all-btn span { white-space: nowrap; }
.save-all-btn #saveAllCount { color: var(--ink-3); font-weight: 400; }
.save-all-btn:hover #saveAllCount { color: rgba(255,255,255,0.7); }

/* "Clear" button — small dark pill matching save-all's style */
.clear-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;     /* always pushes to the far right when alone */
  transition: background 150ms ease, transform 80ms ease;
  box-shadow: var(--shadow-sm);
}
.clear-all-btn:hover  { background: var(--signal); }
.clear-all-btn:active { transform: scale(0.92); }
.clear-all-btn:focus  { outline: none; }

.transfer {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  font-family: var(--mono);
}

.transfer .arrow {
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}
.transfer.outgoing .arrow { color: var(--signal); }
.transfer.incoming .arrow { color: var(--good); }

.transfer .info { min-width: 0; }
.transfer .name {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.transfer .meta {
  color: var(--ink-3);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  margin-top: 3px;
}
.transfer progress {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border: 0;
  background: var(--beige);
  border-radius: 1px;
}
.transfer progress::-webkit-progress-bar   { background: var(--beige); border-radius: 1px; }
.transfer progress::-webkit-progress-value { background: var(--signal); transition: width 120ms ease; border-radius: 1px; }
.transfer progress::-moz-progress-bar      { background: var(--signal); border-radius: 1px; }

.transfer .action {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.transfer .action a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.transfer .action a:hover {
  color: var(--signal);
  border-color: var(--signal);
}

/* ─── settings popover ───────────────────────────────────── */
.popover {
  position: fixed;
  top: 58px;
  right: 24px;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 264px;
  z-index: 100;
  overflow: hidden;
  transform-origin: top right;
  transform: scale(0.96) translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms cubic-bezier(0.34, 1.4, 0.64, 1), opacity 160ms ease;
}
.popover.show {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.popover-action {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background 120ms ease;
  line-height: 1.4;
}
.popover-action:hover,
.popover-action:focus-visible {
  background: var(--bg);
  outline: none;
}
.popover-action:active {
  background: var(--beige);
}

/* Chamfered "tag" component for the CLI affordance. */
.cli-tag {
  display: inline-block;
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  margin: 0 2px;
  border: 0;
  line-height: 1.4;
  /* chamfered corners — clip the four corners at 3px each */
  clip-path: polygon(
    3px 0, calc(100% - 3px) 0, 100% 3px,
    100% calc(100% - 3px), calc(100% - 3px) 100%,
    3px 100%, 0 calc(100% - 3px), 0 3px
  );
  vertical-align: 1px;
}
.cli-tag { background: var(--violet); }

/* Tag becomes a clickable button when wrapped in <button.cli-tag> */
button.cli-tag {
  cursor: pointer;
  font-style: normal;       /* override inherited italic from .feedback */
  transition: background 120ms ease, transform 80ms ease;
}
button.cli-tag:hover  { background: var(--ink); }
button.cli-tag:active { transform: translateY(1px); }
button.cli-tag:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .popover { right: 16px; left: 16px; width: auto; }
}

/* ─── modal popups (QR, contact, etc.) ──────────────────── */
.qr-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 37, 32, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 300;
  opacity: 0;
  transition: opacity 200ms ease;
  padding: 24px;
}
.qr-overlay.show,
.modal-overlay.show { opacity: 1; }

.qr-card,
.modal-card {
  position: relative;
  background: var(--signal-2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 300px;
  transform: scale(0.92);
  transition: transform 220ms cubic-bezier(0.34, 1.4, 0.64, 1);
}
.qr-overlay.show .qr-card,
.modal-overlay.show .modal-card { transform: scale(1); }

.qr-close,
.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(42, 37, 32, 0.06);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 150ms ease, color 150ms ease;
  z-index: 1;
}
.qr-close:hover,
.modal-close:hover {
  background: var(--ink);
  color: var(--bg);
}
.qr-close:focus,
.modal-close:focus { outline: none; }

.qr-canvas-wrap {
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  place-items: center;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.qr-canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 220px;
}

.qr-handle {
  font-family: var(--mono);
  font-size: 13px;
  text-align: center;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: -0.01em;
}

/* contact modal body — text-only card */
.modal-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  text-align: center;
  margin-top: 28px;
  padding: 0 4px;
}
.modal-body a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  padding-bottom: 1px;
  transition: color 120ms ease, border-color 120ms ease;
}
.modal-body a:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

/* ─── toast ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  box-shadow: var(--shadow);
  transition:
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 200ms ease;
  z-index: 200;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── CLI docs page ──────────────────────────────────────── */
.docs {
  max-width: 720px;
  margin: 32px auto 80px;
  padding: 0 24px;
  flex: 1;
  width: 100%;
}

.docs-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}
.docs-title .cli-tag {
  font-size: 11px;
  vertical-align: 6px;
  margin-left: 10px;
}

.docs-subtitle {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-2);
  margin: 0 0 56px;
  line-height: 1.5;
}

.docs-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  margin-bottom: 36px;
  align-items: start;
}

.docs-content {
  /* Required so the 1fr track actually shrinks instead of growing to
     fit overflow content like long command lines. */
  min-width: 0;
}

.docs-label {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 14px;
}

.docs-content pre {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  overflow-x: auto;
  margin: 0;
  box-shadow: var(--shadow-sm);
  /* Without this, long single-line commands stretch the grid cell instead
     of triggering the horizontal scroll. */
  min-width: 0;
  max-width: 100%;
}
/* Render a dim "$" prompt that isn't part of the copyable text. */
.docs-content pre code::before {
  content: "$";
  color: var(--ink-3);
  margin-right: 10px;
  user-select: none;
}
.docs-content p {
  font-family: var(--serif);
  color: var(--ink-2);
  line-height: 1.6;
  font-size: 15px;
  margin: 14px 0 0;
}
.docs-content p code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--beige);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.docs-foot {
  margin-top: 72px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.docs-foot a {
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px dashed var(--beige-2);
  padding-bottom: 2px;
  transition: color 150ms ease, border-bottom-color 150ms ease;
}
.docs-foot a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink-3);
}

@media (max-width: 560px) {
  .docs        { margin-top: 16px; }
  .docs-title  { font-size: 24px; margin-bottom: 6px; }
  .docs-subtitle { font-size: 14px; margin-bottom: 40px; }
  .docs-row    { grid-template-columns: 1fr; gap: 8px; margin-bottom: 28px; }
  .docs-label  { padding-top: 0; font-size: 11px; }
}
