/* ============================================================================
   theme.css — the shared "TEST BENCH" component kit (canonical: packages/ui).
   ----------------------------------------------------------------------------
   Loaded after tokens.css on marketing pages and the workbench. Owns the
   components that repeat across surfaces: nav, footer, cards + registration
   ticks, traces, chips, buttons, gauges, form fields, the telemetry ticker,
   and the motion layer (scroll reveals + micro-interactions). Page / route
   files keep only their surface-specific layout.
   Marketing HTML keeps the stable URL /assets/theme.css via
   tools/deploy/sync-ui-tokens.mjs — edit this file, then re-sync.
   ========================================================================== */

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

body {
  margin: 0;
  background: rgb(var(--canvas));
  color: rgb(var(--ink));
  font-family: var(--font-ui);
  font-size: var(--fs-base);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgb(var(--amber) / 0.22); }

.num, .spec, .dim, code, kbd {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* faint drafting grid — apply to a full-bleed background element */
.grid-bg {
  background-image:
    linear-gradient(rgb(var(--ink) / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--ink) / 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* route boundary fade+rise (guidelines/route-transition.html) */
.page-main {
  animation: route-in var(--dur-base) var(--ease) both;
}

@keyframes route-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .page-main { animation: none; }
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: rgb(var(--ink));
}

.prose {
  font-family: var(--font-ui);
  color: rgb(var(--ink-dim));
  max-width: 56ch;
}

/* In-prose links need a non-color cue (WCAG 1.4.1 / axe link-in-text-block). */
.prose a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

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

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* a consistent, visible focus ring across all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid rgb(var(--cyan));
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* --- top nav ---------------------------------------------------------------
   Bone glass over the bench; gains a shadow once you scroll (.scrolled is
   toggled by theme.js). The 2px orange rule under it is the scroll-progress
   meter (scaleX driven by theme.js via --progress). */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: var(--glass-bg);
  border-bottom: 1px solid rgb(var(--hairline));
  transition: box-shadow var(--dur-base) var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgb(28 26 21 / 0.08);
}

.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: rgb(var(--amber));
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  pointer-events: none;
}

.nav .wrap {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 60px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: var(--fs-md);
  color: rgb(var(--ink));
}

.brand .dot {
  color: rgb(var(--amber));
}

.nav-links {
  display: flex;
  gap: var(--space-5);
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(var(--ink-dim));
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 100%;
  background: rgb(var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: rgb(var(--ink));
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgb(var(--green));
  letter-spacing: 0.06em;
}

.status .led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--green));
  box-shadow: 0 0 0 3px rgb(var(--green) / 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* --- eyebrow with the leading index tick ---------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: rgb(var(--amber));
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: rgb(var(--amber));
}

/* --- card + registration corner ticks (the drafting-mark motif) ----------- */
.card {
  position: relative;
  background: rgb(var(--surface));
  border: 1px solid rgb(var(--hairline));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card.screen {
  background: rgb(var(--screen));
  color: rgb(var(--screen-ink));
  border-color: rgb(var(--screen-edge));
  box-shadow: inset 0 1px 0 rgb(var(--screen-edge) / 0.45);
}

/* Screen-backed components stay dark in both themes, so the light-theme
   --amber (tuned for paper) fails AA on them — remap to the screen variant. */
.card.screen,
.ticker,
footer.bench {
  --amber: var(--screen-amber);
}

.card.ticks::before,
.card.ticks::after,
.card.ticks>.tick-bl,
.card.ticks>.tick-br {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-color: rgb(var(--ink) / 0.30);
  pointer-events: none;
  transition: border-color var(--dur-base) var(--ease);
}

.card.ticks::before {
  top: 7px;
  left: 7px;
  border-top: 1.5px solid;
  border-left: 1.5px solid;
}

.card.ticks::after {
  top: 7px;
  right: 7px;
  border-top: 1.5px solid;
  border-right: 1.5px solid;
}

.card.ticks>.tick-bl {
  bottom: 7px;
  left: 7px;
  border-bottom: 1.5px solid;
  border-left: 1.5px solid;
}

.card.ticks>.tick-br {
  bottom: 7px;
  right: 7px;
  border-bottom: 1.5px solid;
  border-right: 1.5px solid;
}

.card.ticks:hover::before,
.card.ticks:hover::after,
.card.ticks:hover>.tick-bl,
.card.ticks:hover>.tick-br {
  border-color: rgb(var(--amber) / 0.8);
}

/* --- trace divider (PCB line + via dots) ----------------------------------- */
.trace {
  display: flex;
  align-items: center;
  gap: 0;
  margin: var(--space-10) 0;
  color: rgb(var(--ink) / 0.28);
}

.trace .line {
  height: 1px;
  background: currentColor;
  flex: 1;
}

.trace .via {
  width: 7px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex: none;
}

.trace .seg {
  width: 14px;
  height: 14px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-7px);
  flex: none;
}

.trace .label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgb(var(--ink-mute));
  padding: 0 var(--space-3);
  white-space: nowrap;
  letter-spacing: 0.08em;
}

/* --- BOM rows --------------------------------------------------------------- */
.bom {
  display: flex;
  flex-direction: column;
}

.bomrow {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) var(--space-4);
  border-top: 1px solid rgb(var(--hairline));
  transition: background var(--dur-fast);
  cursor: default;
}

.bomrow:first-child {
  border-top: none;
}

.bomrow:hover,
.bomrow.hot {
  background: rgb(var(--cyan) / 0.06);
}

.bomrow-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.bomrow .idx {
  font-family: var(--font-mono);
  color: rgb(var(--ink-mute));
  font-size: var(--fs-xs);
  padding-top: 3px;
}

.bomrow .part {
  font-family: var(--font-mono);
  font-weight: 700;
  color: rgb(var(--ink));
}

.bomrow .why {
  font-family: var(--font-ui);
  color: rgb(var(--ink-dim));
  font-size: var(--fs-sm);
  margin-top: 3px;
  max-width: 60ch;
}

.bomrow .tag {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgb(var(--cyan));
  white-space: nowrap;
  padding-top: 3px;
}

/* --- chips (status pills) --------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  border: 1px solid;
}

.chip.ok {
  color: rgb(var(--green));
  border-color: rgb(var(--green) / 0.45);
  background: var(--green-soft);
}

.chip.warn {
  color: rgb(var(--warn));
  border-color: rgb(var(--warn) / 0.45);
  background: var(--warn-soft);
}

.chip.bad {
  color: rgb(var(--red));
  border-color: rgb(var(--red) / 0.45);
  background: var(--red-soft);
}

.chip.mute {
  color: rgb(var(--ink-mute));
  border-color: rgb(var(--hairline));
  background: rgb(var(--elevated));
}

/* --- buttons ----------------------------------------------------------------
   Primary = the orange tool. Ghost = inked outline. Data = cobalt. */
.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: rgb(var(--paper-hi));
  background: rgb(var(--amber));
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgb(var(--amber) / 0.32);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn>span:last-child {
  transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover>span:last-child {
  transform: translateX(3px);
}

.btn.ghost {
  background: transparent;
  color: rgb(var(--ink));
  border: 1px solid rgb(var(--ink) / 0.35);
}

.btn.ghost:hover {
  border-color: rgb(var(--ink));
  box-shadow: none;
  background: rgb(var(--ink) / 0.04);
}

.btn.cyan,
.btn.data {
  background: rgb(var(--cyan));
}

.btn.cyan:hover,
.btn.data:hover {
  box-shadow: 0 10px 28px rgb(var(--cyan) / 0.30);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* in-flight submit/save: the button itself carries the pending state
   (distinct from disabled 0.45 — pending stays legible as "working") */
.btn.pending {
  opacity: 0.7;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.btn.pending::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  display: inline-block;
  flex: none;
  animation: btn-spin calc(var(--dur-slow) + var(--dur-base)) linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .btn.pending::before { animation: none; }
}

/* --- gauge / meter ----------------------------------------------------------- */
.gauge {
  padding: var(--space-4);
}

.gauge .lab {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(var(--ink-mute));
}

.gauge .big {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.1;
  margin-top: 4px;
  color: rgb(var(--ink));
}

.gauge .big .unit {
  font-size: var(--fs-sm);
  color: rgb(var(--ink-mute));
  font-weight: 500;
}

.bar {
  height: 5px;
  border-radius: var(--radius-sm);
  background: rgb(var(--ink) / 0.12);
  margin-top: 8px;
  overflow: hidden;
}

.bar>i {
  display: block;
  height: 100%;
  border-radius: var(--radius-sm);
  transition: width var(--dur-slow) var(--ease), background var(--dur-base);
}

/* meters: width animates in when revealed (target carried in --w) */
.bar>i.meter {
  width: 0;
  transition: width var(--dur-slow) var(--ease);
}

.in .bar>i.meter,
.bar>i.meter.in {
  width: var(--w, 0%);
}

/* --- form fields ------------------------------------------------------------- */
.field label,
.auth-form label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(var(--ink-mute));
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.auth-form input {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: rgb(var(--ink));
  background: rgb(var(--paper-hi));
  border: 1px solid rgb(var(--hairline));
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.field input:hover,
.auth-form input:hover {
  border-color: rgb(var(--ink) / 0.35);
}

.field input:focus,
.auth-form input:focus {
  outline: none;
  border-color: rgb(var(--cyan));
  box-shadow: var(--ring-data);
}

.field label:focus-within,
.auth-form label:focus-within {
  color: rgb(var(--cyan));
}

.form-err,
.form-note {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  line-height: 1.5;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  margin: 0;
}

.form-err {
  color: rgb(var(--red));
  background: var(--red-soft);
  border: 1px solid rgb(var(--red) / 0.4);
}

.form-note {
  color: rgb(var(--green));
  background: var(--green-soft);
  border: 1px solid rgb(var(--green) / 0.4);
}

/* notes pop in next to the control that settled them (mirrors the design
   system's FormNote of-note-pop) */
.form-err:not([hidden]),
.form-note:not([hidden]) {
  animation: note-pop var(--dur-base) var(--ease-out) both;
}

@keyframes note-pop {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .form-err:not([hidden]),
  .form-note:not([hidden]) {
    animation: none;
  }
}

/* --- telemetry ticker --------------------------------------------------------
   A graphite conveyor strip. Markup: .ticker > .ticker-belt > 2× .ticker-run
   (the duplicate run makes the loop seamless). Pauses on hover; static when
   the user prefers reduced motion. */
.ticker {
  overflow: hidden;
  background: rgb(var(--screen));
  border-block: 1px solid rgb(var(--screen-edge));
}

.ticker-belt {
  display: flex;
  width: max-content;
  animation: belt 46s linear infinite;
}

.ticker:hover .ticker-belt {
  animation-play-state: paused;
}

.ticker-run {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: 10px var(--space-3) 10px var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgb(var(--screen-dim));
  white-space: nowrap;
}

.ticker-run b {
  color: rgb(var(--screen-ink));
  font-weight: 600;
}

.ticker-run .tick-sep {
  color: rgb(var(--amber));
}

@keyframes belt {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-belt {
    animation: none;
  }
}

/* --- scroll reveals -----------------------------------------------------------
   theme.js flips .in when an element enters the viewport. Stagger with
   --d (e.g. style="--d:120ms"). Falls back to visible when scripting is off. */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease) var(--d, 0ms), transform var(--dur-slow) var(--ease) var(--d, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* already revealed this session (theme.js adds .seen with .in): re-apply
   instantly instead of replaying the entrance — content, never motion */
.reveal.seen {
  transition: none !important;
}

.reveal.seen .bar>i.meter {
  transition: none;
}

@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .bar>i.meter {
    width: var(--w, 0%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .bar>i.meter {
    width: var(--w, 0%);
  }
}

/* --- footer: the bench's anodized base plate ---------------------------------- */
footer.bench {
  margin-top: var(--space-10);
  background: rgb(var(--screen));
  border-top: 2px solid rgb(var(--amber));
  color: rgb(var(--screen-dim));
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  padding: var(--space-6) 0;
}

footer.bench .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

footer.bench .brandline {
  color: rgb(var(--screen-ink));
}

footer.bench .brandline .dot {
  color: rgb(var(--amber));
}

footer.bench a {
  color: rgb(var(--screen-dim));
  transition: color var(--dur-fast) var(--ease);
}

footer.bench a:hover,
footer.bench a:focus-visible {
  color: rgb(var(--screen-ink));
}

footer.bench .links a {
  margin-left: var(--space-4);
}

/* --- live row (dashboard telemetry strip) -------------------------------------- */
.live-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgb(var(--ink-mute));
}

.live-row .clock {
  font-weight: 600;
  color: rgb(var(--ink));
  font-variant-numeric: tabular-nums;
}

.live-row .feed {
  color: rgb(var(--ink-dim));
  transition: opacity var(--dur-base) var(--ease);
}

.live-row .feed.swap {
  opacity: 0;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
}
/* --- nav search + command palette (nav.js) --------------------------------- */

.nav-search {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgb(var(--ink-dim));
  background: rgb(var(--elevated) / 0.6);
  border: 1px solid rgb(var(--hairline));
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.nav-search:hover,
.nav-search:focus-visible {
  color: rgb(var(--ink));
  border-color: rgb(var(--accent) / 0.6);
}

.nav-search svg {
  width: 13px;
  height: 13px;
}

.nav-search kbd,
.palette kbd {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgb(var(--ink-mute));
  border: 1px solid rgb(var(--hairline));
  border-radius: var(--radius-sm);
  background: rgb(var(--surface));
  padding: 1px 5px;
}

.nav .nav-auth {
  margin-left: 0;
}

.palette-overlay[hidden] {
  display: none; /* the class's display:flex would otherwise beat the UA [hidden] rule */
}

.palette-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgb(var(--canvas) / 0.65);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16vh var(--space-4) 0;
}

.palette {
  width: min(92vw, 560px);
  background: rgb(var(--surface));
  border: 1px solid rgb(var(--hairline));
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.25);
  overflow: hidden;
}

.palette-input {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgb(var(--hairline));
}

.palette-input input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: rgb(var(--ink));
  background: none;
  border: none;
  outline: none;
}

.palette-input input::placeholder {
  color: rgb(var(--ink-mute));
}

.palette-results {
  list-style: none;
  margin: 0;
  padding: var(--space-2) 0;
  max-height: 46vh;
  overflow-y: auto;
}

.palette-section {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(var(--ink-mute));
  padding: var(--space-2) var(--space-4) var(--space-1);
}

.palette-item a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  text-decoration: none;
  border-left: 2px solid transparent;
}

.palette-item.is-active a {
  background: rgb(var(--accent) / 0.08);
  border-left-color: rgb(var(--accent));
}

.palette-title {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgb(var(--ink));
}

.palette-path {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: rgb(var(--ink-mute));
}

.palette-empty {
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  color: rgb(var(--ink-dim));
  padding: var(--space-4);
}

.palette-foot {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border-top: 1px solid rgb(var(--hairline));
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: rgb(var(--ink-mute));
}

.palette-foot span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

@media (max-width: 640px) {
  .nav-search-label,
  .nav-search kbd {
    display: none;
  }
}
