/* =========================================================
   NEXORA · DOCUMENT DESIGN SYSTEM v1
   Board-grade print/screen layout. 1280 × 800 landscape.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Serif:wght@400;500;600&display=swap');

:root {
  /* Surfaces */
  --paper:        #FAF8F2;
  --paper-2:      #F2EDDF;
  --paper-3:      #EAE3D0;
  --ink:          #131820;
  --ink-2:        #2C333E;
  --ink-3:        #5A6373;
  --ink-4:        #8B93A2;
  --rule:         #D8D2C0;
  --rule-2:       #E7E2D2;
  --hero:         #0F1E3C;
  --hero-2:       #1B2F58;

  /* Brand */
  --brand:        #1F4EE0;
  --brand-soft:   #E5EBFB;
  --brand-dark:   #122E89;

  /* RAG */
  --green:        #1F7A4D;
  --green-soft:   #E0EFE6;
  --amber:        #C28315;
  --amber-soft:   #F6ECD5;
  --red:          #B23320;
  --red-soft:     #F5DFD8;

  /* Type */
  --sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --serif: 'IBM Plex Serif', Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #38383a;
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

/* Stack of pages on screen */
.doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 0 80px;
}

/* PAGE FRAME ------------------------------------------------ */
.page {
  width: 1280px;
  height: 800px;
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.25), 0 2px 6px rgba(0,0,0,.15);
  display: grid;
  grid-template-rows: 56px 1fr 36px;
  padding: 0 56px;
}

.page.hero {
  background: var(--hero);
  color: #F4F1E8;
}

/* HEADER ---------------------------------------------------- */
.p-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.page.hero .p-head { border-bottom-color: rgba(255,255,255,.14); color: rgba(244,241,232,.65); }

.p-head .brandmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.22em;
}
.page.hero .p-head .brandmark { color: #F4F1E8; }
.brandmark .dot {
  width: 9px; height: 9px;
  background: var(--brand);
  border-radius: 1.5px;
  transform: rotate(45deg);
}
.page.hero .brandmark .dot { background: #F4F1E8; }

.p-head .crumb {
  color: var(--ink-3);
}
.p-head .crumb b { color: var(--ink); font-weight: 600; }
.page.hero .p-head .crumb b { color: #F4F1E8; }

/* BODY ------------------------------------------------------ */
.p-body {
  padding: 24px 0 18px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

/* FOOTER ---------------------------------------------------- */
.p-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.page.hero .p-foot {
  border-top-color: rgba(255,255,255,.14);
  color: rgba(244,241,232,.55);
}
.p-foot .pageno {
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.page.hero .p-foot .pageno { color: rgba(244,241,232,.7); }

/* TITLE BLOCK ---------------------------------------------- */
.t-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 10px;
}
.page.hero .t-eyebrow { color: #B6C5F0; }

h1.t-title, h2.t-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.page.hero h1.t-title { color: #F4F1E8; }

.t-sub {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-3);
  margin: 8px 0 0;
  max-width: 920px;
  text-wrap: pretty;
}
.page.hero .t-sub { color: rgba(244,241,232,.78); }

.t-rule {
  height: 1px;
  background: var(--rule);
  margin: 18px 0;
}

.use-for {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 18px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.use-for b {
  color: var(--brand);
  font-weight: 600;
}

/* GENERIC CARD --------------------------------------------- */
.card {
  background: #FFFEFA;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 16px 18px;
  min-width: 0;
}
.card .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 4px 0 6px;
  color: var(--ink);
  line-height: 1.25;
}
.card p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-3);
  margin: 0;
  text-wrap: pretty;
}

/* GRID UTILS ----------------------------------------------- */
.grid { display: grid; gap: 14px; min-width: 0; }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.g-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.g-6 { grid-template-columns: repeat(6, minmax(0,1fr)); }

.row { display: flex; gap: 14px; min-width: 0; }

/* SECTION HEADING ------------------------------------------ */
.s-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 12px;
  gap: 16px;
}
.s-head h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0;
}
.s-head .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* TABLES --------------------------------------------------- */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: fixed;
}
.tbl thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  padding: 8px 10px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.tbl tbody td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--rule-2);
  color: var(--ink-2);
  line-height: 1.4;
  vertical-align: top;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl td b, .tbl td strong { color: var(--ink); font-weight: 600; }
.tbl td.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* RAG PILLS ------------------------------------------------ */
.rag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.rag .bullet {
  width: 6px; height: 6px; border-radius: 50%;
}
.rag.g  { background: var(--green-soft); color: var(--green); }
.rag.a  { background: var(--amber-soft); color: var(--amber); }
.rag.r  { background: var(--red-soft);   color: var(--red); }
.rag.n  { background: var(--paper-2);    color: var(--ink-3); }
.rag.g .bullet { background: var(--green); }
.rag.a .bullet { background: var(--amber); }
.rag.r .bullet { background: var(--red); }
.rag.n .bullet { background: var(--ink-4); }

.trend {
  font-family: var(--mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.trend.up   { color: var(--green); }
.trend.dn   { color: var(--red); }
.trend.flat { color: var(--ink-4); }

/* CHIPS ---------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 3px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}
.chip.solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.chip.brand {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-color: #C9D3F4;
}

/* STEP BOXES (workflow) ------------------------------------ */
.step {
  position: relative;
  background: #FFFEFA;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 16px 14px 14px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step .nbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}
.step h5 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
}
.step ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step ul li {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.35;
  padding-left: 11px;
  position: relative;
}
.step ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 4px; height: 1px;
  background: var(--ink-4);
}

/* CONNECTOR (chevron rail for sequenced steps) ------------- */
.rail {
  display: grid;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.rail > .step {
  position: relative;
}
.rail > .step + .step {
  border-left: 1px dashed var(--rule);
}
.rail.flat {
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  background: #FFFEFA;
}
.rail.flat > .step {
  border: 0;
  border-radius: 0;
}
.rail.flat > .step + .step { border-left: 1px solid var(--rule); }

/* KPI ------------------------------------------------------ */
.kpi {
  background: #FFFEFA;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.kpi .v {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.kpi .v .u {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-3);
  margin-left: 2px;
}
.kpi .l {
  font-size: 11.5px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.25;
}
.kpi .s {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* TIMELINE LIST ------------------------------------------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: baseline;
  font-size: 12px;
  color: var(--ink-2);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule-2);
}
.timeline li:last-child { border-bottom: 0; }
.timeline li .t {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand);
}

/* CHECK LIST ---------------------------------------------- */
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checks li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.checks li::before {
  content: "";
  width: 14px; height: 14px;
  border: 1.5px solid var(--ink-3);
  border-radius: 3px;
  margin-top: 2px;
}
.checks.dot li::before {
  width: 6px; height: 6px;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  margin: 6px 4px 0 4px;
}
.checks.warn li::before {
  border-color: var(--amber);
  background: var(--amber);
  border-radius: 50%;
  width: 8px; height: 8px;
  margin-top: 5px;
}

/* ACK / DISCLAIMER ---------------------------------------- */
.ack {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-4);
  line-height: 1.5;
  text-transform: none;
}

/* HERO COVER ---------------------------------------------- */
.cover {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  height: 100%;
}
.cover .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0 0;
}
.cover .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0 0;
}
.cover .price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #F4F1E8;
  width: fit-content;
}
.cover .price b { font-size: 16px; font-weight: 600; }

.cover h1.huge {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #F4F1E8;
  margin: 0;
}
.cover h1.huge span { color: #92ADF4; }
.cover .tagline {
  font-size: 17px;
  line-height: 1.45;
  color: rgba(244,241,232,.78);
  max-width: 520px;
  margin: 0;
}

.cover .inside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.cover .inside-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: 14px;
  color: #E2E6F2;
}
.cover .inside-list li:last-child { border-bottom: 0; }
.cover .inside-list li .n {
  font-family: var(--mono);
  font-size: 11px;
  color: #8FA4D6;
  letter-spacing: 0.1em;
}

.cover .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.cover .stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 12px 14px;
}
.cover .stat .v {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  color: #F4F1E8;
  letter-spacing: -0.01em;
}
.cover .stat .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,232,.6);
  margin-top: 2px;
}

/* CLOSING -------------------------------------------------- */
.close-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  height: 100%;
  align-items: stretch;
}
.close-grid .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.close-grid .left h1 {
  font-family: var(--sans);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #F4F1E8;
  margin: 0;
}
.close-grid .left h1 span { color: #92ADF4; }
.close-grid .left p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(244,241,232,.78);
  max-width: 540px;
  margin: 0;
}

.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  padding: 22px;
}
.contact-card .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,232,.6);
  margin-bottom: 12px;
}
.contact-card .mail {
  font-family: var(--mono);
  font-size: 18px;
  color: #F4F1E8;
  font-weight: 500;
}
.contact-card hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  margin: 18px 0;
}
.contact-card .row-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(244,241,232,.78);
  padding: 6px 0;
}
.contact-card .row-line b { color: #F4F1E8; font-weight: 500; font-family: var(--mono); font-size: 12px; }

/* BUNDLE PAGE --------------------------------------------- */
.bundle-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tier {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 16px;
  background: #FFFEFA;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  min-width: 0;
}
.tier.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tier .badge {
  position: absolute;
  top: -10px; left: 14px;
  background: var(--brand);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.tier .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tier.featured .k { color: rgba(250,248,242,.65); }
.tier .price-big {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier p { font-size: 12px; color: var(--ink-3); margin: 4px 0 0; line-height: 1.45; }
.tier.featured p { color: rgba(250,248,242,.78); }

/* SYSTEM CARDS (bundle page) ----------------------------- */
.os-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.os-row {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 14px 16px;
  background: #FFFEFA;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.os-row h5 { margin: 0; font-size: 13.5px; font-weight: 600; }
.os-row p  { margin: 3px 0 0; font-size: 12px; color: var(--ink-3); line-height: 1.4; }
.os-row .pp {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* OVERVIEW PAGE 2 patterns ------------------------------- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ba-col {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 16px;
  background: #FFFEFA;
}
.ba-col h5 {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.ba-col.b h5 { color: var(--red); }
.ba-col.a h5 { color: var(--green); }
.ba-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ba-col ul li {
  font-size: 12.5px;
  color: var(--ink-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--rule-2);
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
}
.ba-col ul li:last-child { border-bottom: 0; }
.ba-col ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
}
.ba-col.b ul li::before { background: var(--red); }
.ba-col.a ul li::before { background: var(--green); }

/* META TRIPTYCH ------------------------------------------ */
.meta3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.meta3 .mb {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 14px;
  min-width: 0;
}
.meta3 .mb h6 {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.meta3 .mb ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.meta3 .mb ul li {
  font-size: 11.5px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 3px 8px;
  border-radius: 3px;
}

/* PRINT --------------------------------------------------- */
@page { size: 1280px 800px; margin: 0; }
@media print {
  html, body { background: #fff; }
  .doc { gap: 0; padding: 0; }
  .page {
    box-shadow: none;
    page-break-after: always;
    break-after: page;
  }
  .page:last-child { page-break-after: auto; }
}

/* HELPERS ------------------------------------------------- */
.muted { color: var(--ink-3); }
.tnum { font-variant-numeric: tabular-nums; font-family: var(--mono); }
.text-xs { font-size: 11px; }
.text-sm { font-size: 12.5px; }
.text-md { font-size: 14px; line-height: 1.5; }
.center { text-align: center; }
.between { display: flex; justify-content: space-between; align-items: center; }
.divider { height: 1px; background: var(--rule); margin: 14px 0; }
.spacer-sm { height: 8px; }
.spacer-md { height: 16px; }
.spacer-lg { height: 24px; }

/* Standards strip (regulatory chips) --------------------- */
.std-strip {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.std-strip .lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-right: 4px;
}
