/* ============================================================
   Eau Claire Crawlspace — "The Annotated Spec" design system
   World: measured rule-callout spec sheet. Navy serge + white
   cotton, one red accent, drafted hairline rules, mono
   measurement labels, coded service stripes.
   Direction contract: seed b6c4b1cf — see DIRECTION.md.
   ============================================================ */

/* ---- Fonts (self-hosted latin subsets) ---- */
@font-face {
  font-family: 'Saira Condensed';
  src: url('/fonts/sairacondensed-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Saira Condensed';
  src: url('/fonts/sairacondensed-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/sourcesans3-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/sourcesans3-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Martian Mono';
  src: url('/fonts/martianmono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Martian Mono';
  src: url('/fonts/martianmono-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --serge: #0F1A2E;
  --serge-deep: #0A1220;
  --cotton: #F3F3F0;
  --cotton-deep: #E9E8E3;
  --white: #FFFFFF;
  --ink: #16181B;
  --ink-soft: #3E444C;
  --line: #D5D4CE;
  --line-navy: #2A3A55;
  --red: #C8102E;
  --red-deep: #A30D26;
  --gray: #9AA5B1;
  --on-serge: #F3F3F0;
  --on-serge-soft: #B7C1CE;
  --azure: #3A7BD5;
  --crimson: #B21E2E;
  --emerald: #1E7A56;
  --amber: #C89020;
  --display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --reading: 'Source Sans 3', system-ui, sans-serif;
  --measure: 'Martian Mono', ui-monospace, monospace;
}

/* ---- Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  background: var(--cotton);
  color: var(--ink-soft);
  font-family: var(--reading);
  font-size: 1.0625rem;
  line-height: 1.65;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  color: var(--ink);
}
.h1 { font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem); }
.h2 { font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.8rem); line-height: 1.08; }
h3 { font-size: 1.375rem; letter-spacing: 0.02em; }
p + p { margin-top: 1rem; }

/* ---- Layout ---- */
.shell { max-width: 76rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .shell { padding: 0 1.75rem; } }
.band { padding: 3.5rem 0; }
@media (min-width: 768px) { .band { padding: 5rem 0; } }
.band--serge { background: var(--serge); color: var(--on-serge-soft); }
.band--serge h2, .band--serge h3 { color: var(--white); }
.band--deepcotton { background: var(--cotton-deep); }
.rule-top { border-top: 1px solid var(--line); }
.rule-bottom { border-bottom: 1px solid var(--line); }

/* Margin metadata rail (desktop only; honest metadata: page + version) */
.meta-rail {
  display: none;
  position: fixed; top: 0; bottom: 0; left: 0; width: 2.25rem;
  border-right: 1px solid var(--line);
  z-index: 40;
  background: var(--cotton);
}
@media (min-width: 1280px) {
  .meta-rail { display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 5.5rem 0 1.5rem; }
  .meta-rail span {
    writing-mode: vertical-rl;
    font-family: var(--measure); font-size: 0.5625rem; letter-spacing: 0.12em;
    color: var(--gray); text-transform: uppercase;
  }
}

/* ---- Measurement / annotation vocabulary ---- */
.m-label {
  font-family: var(--measure);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.band--serge .m-label { color: var(--on-serge); }
.m-note { font-family: var(--measure); font-size: 0.6875rem; letter-spacing: 0.06em; color: var(--gray); }

/* Coded service stripes */
.stripe {
  display: inline-block; width: 3.25rem; height: 0.625rem;
  background: linear-gradient(to bottom, currentColor 0 38%, transparent 38% 62%, currentColor 62% 100%);
}
.stripe--azure { color: var(--azure); }
.stripe--crimson { color: var(--crimson); }
.stripe--emerald { color: var(--emerald); }
.stripe--amber { color: var(--amber); }
.stripe--gray { color: var(--gray); }

/* ---- Header ---- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 243, 240, 0.96);
  border-bottom: 1px solid var(--line);
}
.site-head .bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4rem; }
.brand { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; flex-shrink: 0; }
.brand strong {
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--serge); line-height: 1;
}
.brand strong em { font-style: normal; color: var(--red); }
.site-nav { display: none; }
@media (min-width: 1024px) {
  .site-nav { display: flex; align-items: center; gap: 1.5rem; }
  .site-nav a {
    font-family: var(--display); font-weight: 600; font-size: 0.9375rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    text-decoration: none; color: var(--ink-soft);
  }
  .site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red); }
  .head-actions { display: flex; align-items: center; gap: 1.125rem; flex-shrink: 0; }
}
.head-actions { display: none; }
@media (min-width: 1024px) { .head-actions { display: flex; } }
.tel { font-family: var(--measure); font-weight: 500; font-size: 0.8125rem; letter-spacing: 0.02em; color: var(--ink); text-decoration: none; }
.tel:hover { color: var(--red); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.8125rem 1.375rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .15s cubic-bezier(.4,0,.2,1), border-color .15s cubic-bezier(.4,0,.2,1), color .15s cubic-bezier(.4,0,.2,1);
}
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-deep); }
.btn--line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--line:hover { background: var(--ink); color: var(--cotton); }
.btn--online { border-color: var(--on-serge-soft); color: var(--white); background: transparent; }
.btn--online:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--sm { font-size: 0.875rem; padding: 0.625rem 1rem; }

/* Mobile menu */
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.mobile-menu { border-top: 1px solid var(--line); background: var(--cotton); max-height: 80vh; overflow-y: auto; }
.mobile-menu.hidden { display: none; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }
.mobile-menu nav { display: flex; flex-direction: column; padding: 1rem 1.25rem; }
.mobile-menu a {
  font-family: var(--display); font-weight: 600; font-size: 1.0625rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none; color: var(--ink);
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--red); }

/* ---- Hero plate ---- */
.plate { background: var(--serge); color: var(--on-serge-soft); position: relative; }
.plate .plate-grid {
  display: grid; gap: 2.5rem;
  padding: 2.25rem 0 2rem;
}
@media (min-width: 1024px) {
  .plate .plate-grid { grid-template-columns: 1.5fr 1fr; gap: 3rem; padding: 3.5rem 0 3rem; align-items: start; }
}
.plate h1 { color: var(--white); }
.plate .area-line { font-family: var(--measure); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-serge-soft); margin-top: 1rem; }
.plate .drawing { margin-top: 1.25rem; }
.plate .drawing svg { width: 100%; height: auto; }
/* Full-bleed plate drawing row: edge to edge, pannable on small screens */
.plate-drawing { margin-top: 1.75rem; position: relative; }
.plate-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.plate-scroll svg { min-width: 1100px; width: 100%; height: auto; display: block; }
.pan-cue { display: none; }
@media (max-width: 1099px) {
  .plate-drawing::after {
    content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 4rem;
    background: linear-gradient(to right, rgba(15,26,46,0), var(--serge));
    pointer-events: none;
  }
  .pan-cue {
    display: flex; align-items: center; justify-content: center;
    position: absolute; right: 0.625rem; top: 50%; transform: translateY(-50%);
    width: 2.25rem; height: 2.25rem;
    border: 1px solid var(--on-serge-soft); color: var(--on-serge);
    background: rgba(15,26,46,0.85);
    pointer-events: none;
    z-index: 1;
  }
  .pan-cue::after {
    content: "PAN";
    position: absolute; bottom: -1.1rem;
    font-family: var(--measure); font-size: 0.5rem; letter-spacing: 0.14em; color: var(--on-serge-soft);
  }
}

/* Registration marks (plate corners) */
.plate::before, .plate::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
  border: 1px solid var(--line-navy);
}
.plate::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.plate::after { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }

/* Spec panel (white card riding the plate) */
.spec-panel { background: var(--white); color: var(--ink-soft); border: 1px solid var(--line); }
.spec-panel .panel-head {
  border-bottom: 1px solid var(--line);
  padding: 0.875rem 1.5rem;
}
.spec-panel .panel-body { padding: 1.5rem; }
.spec-rows { list-style: none; margin-top: 1.25rem; border-top: 1px solid var(--line); }
.spec-rows li {
  display: flex; align-items: baseline; gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding: 0.625rem 0.125rem;
  font-size: 0.9375rem; color: var(--ink);
}
.spec-rows .tick { color: var(--red); font-family: var(--measure); font-weight: 500; flex-shrink: 0; }
.spec-panel .panel-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.spec-panel .panel-actions .btn { width: 100%; }

/* Legend band (coded services at the plate foot) */
.legend-band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legend-band .legend-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .legend-band .legend-grid { grid-template-columns: repeat(4, 1fr); } }
.legend-band a {
  display: block; text-decoration: none;
  padding: 1rem 1.25rem 1.125rem;
  border-right: 1px solid var(--line);
}
.legend-band a:last-child { border-right: 0; }
.legend-band a:nth-child(2) { border-right: 0; }
@media (min-width: 768px) { .legend-band a:nth-child(2) { border-right: 1px solid var(--line); } }
.legend-band a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .legend-band a:nth-child(-n+2) { border-bottom: 0; } }
.legend-band a:hover .m-label { color: var(--red); }
.legend-band .stripe { margin-bottom: 0.5rem; }

/* ---- Ruled service index (replaces card grids) ---- */
.index { list-style: none; border-top: 1px solid var(--ink); margin-top: 2rem; }
.index li { border-bottom: 1px solid var(--line); }
.index a {
  display: grid; grid-template-columns: auto 1fr; gap: 0.375rem 1.5rem;
  align-items: baseline;
  padding: 1.375rem 0.25rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .index a { grid-template-columns: 9rem 16rem 1fr auto; align-items: baseline; }
}
.index .code { font-family: var(--measure); font-size: 0.6875rem; letter-spacing: 0.08em; color: var(--gray); display: flex; align-items: center; gap: 0.625rem; }
.index .code .stripe { width: 1.75rem; height: 0.3125rem; }
.index h3 { font-size: 1.5rem; color: var(--ink); }
.index a:hover h3 { color: var(--red); }
.index .desc { font-size: 0.9375rem; grid-column: 1 / -1; }
@media (min-width: 768px) { .index .desc { grid-column: auto; } }
.index .go { display: none; font-family: var(--measure); color: var(--red); }
@media (min-width: 768px) { .index .go { display: block; } }

/* ---- Answer blocks: the ruled clause ---- */
.answer-block {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink);
  padding: 1.25rem 1.5rem 1.25rem 2.5rem;
  color: var(--ink);
  font-size: 1.0313rem;
  margin-top: 1.25rem;
}
.answer-block::before {
  content: "";
  position: absolute; left: 0.875rem; top: 1.35rem;
  width: 0.5rem; height: 0.5rem;
  border: 1.5px solid var(--red);
}
.band--serge .answer-block { background: transparent; border-color: var(--on-serge-soft); color: var(--on-serge); }

/* ---- Steps (real sequence: numbers carry order) ---- */
.steps { list-style: none; counter-reset: step; display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--ink); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { border-bottom: 1px solid var(--line); padding: 1.5rem 1.5rem 1.5rem 0; }
@media (min-width: 768px) {
  .steps li { border-bottom: 0; border-right: 1px solid var(--line); padding: 1.5rem; }
  .steps li:first-child { padding-left: 0.25rem; }
  .steps li:last-child { border-right: 0; }
}
.steps .num { font-family: var(--measure); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; color: var(--red); }
.steps h3 { margin-top: 0.625rem; }
.steps p { margin-top: 0.5rem; font-size: 0.9375rem; }

/* ---- Figures / annotated images ---- */
.fig { border: 1px solid var(--line); background: var(--white); padding: 0.625rem; }
.band--serge .fig { border-color: var(--line-navy); background: transparent; }
.fig figcaption { font-family: var(--measure); font-size: 0.6875rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); padding: 0.625rem 0.25rem 0.125rem; }

/* ---- FAQ ruled rows ---- */
.faq-list { border-top: 1px solid var(--ink); margin-top: 1.5rem; }
details.faq-item { border-bottom: 1px solid var(--line); }
details.faq-item > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.125rem 0.25rem;
  font-family: var(--display); font-weight: 600; font-size: 1.125rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--ink);
}
details.faq-item > summary:hover { color: var(--red); }
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item .faq-chevron { flex-shrink: 0; color: var(--red); transition: transform .15s cubic-bezier(.4,0,.2,1); }
details.faq-item[open] .faq-chevron { transform: rotate(180deg); }
details.faq-item .faq-body { padding: 0 0.25rem 1.25rem; font-size: 0.9688rem; max-width: 65ch; }

/* ---- Forms as spec rows ---- */
.form-card { background: var(--white); border: 1px solid var(--line); padding: 1.75rem; }
@media (min-width: 640px) { .form-card { padding: 2.25rem; } }
.form-card label { display: block; font-family: var(--measure); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.375rem; }
.form-card input, .form-card select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cotton);
  padding: 0.8125rem 1rem;
  font-family: var(--reading); font-size: 1rem; color: var(--ink);
}
.form-card input:focus, .form-card select:focus { border-color: var(--serge); outline: none; }
.form-card select { cursor: pointer; }
.form-card .field + .field { margin-top: 1.125rem; }
.form-card .btn { width: 100%; margin-top: 1.375rem; }
.form-card .fine { font-size: 0.75rem; color: var(--gray); margin-top: 0.875rem; }
.form-card .fine a { color: var(--ink-soft); }

/* ---- Links in copy ---- */
.body-link { font-weight: 600; color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.body-link:hover { color: var(--red-deep); }
.band--serge .body-link { color: var(--white); }

/* Drawn marks (SVG icons in the world's stroke) */
.mark { flex-shrink: 0; color: var(--red); }
.spec-rows .tick { display: inline-flex; align-items: center; color: var(--red); flex-shrink: 0; }

/* Inline text arrows (frozen copy) */
.pt { display: flex; gap: 0.5rem; }
.pt span:first-child { color: var(--red); font-weight: 600; flex-shrink: 0; display: inline-flex; align-items: center; margin-top: 0.3125rem; }

/* ---- Footer ---- */
.foot { background: var(--serge-deep); color: var(--on-serge-soft); font-size: 0.9063rem; }
.foot .foot-grid { display: grid; gap: 2rem; padding: 3rem 0; }
@media (min-width: 640px) { .foot .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .foot .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot .m-label { color: var(--on-serge); margin-bottom: 0.875rem; }
.foot ul { list-style: none; }
.foot ul li { margin-top: 0.5rem; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--white); }
.foot .brandline { font-family: var(--display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); }
.foot .brandline em { font-style: normal; color: var(--red); }
.foot .legal-bar { border-top: 1px solid var(--line-navy); padding: 1.25rem 0; display: flex; flex-direction: column; gap: 0.375rem; font-family: var(--measure); font-size: 0.6563rem; letter-spacing: 0.04em; }
@media (min-width: 640px) { .foot .legal-bar { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---- Mobile sticky call bar ---- */
.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line); background: var(--white);
}
@media (min-width: 1024px) { .callbar { display: none; } }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1.05rem 0;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none; color: var(--ink);
}
.callbar a.cta { background: var(--red); color: var(--white); }
body { padding-bottom: 3.75rem; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ---- Breadcrumbs ---- */
.crumbs { font-family: var(--measure); font-size: 0.6875rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); padding: 1rem 0 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { color: var(--line); padding: 0 0.375rem; }

/* Page hero (interior pages) */
.page-hero { border-bottom: 1px solid var(--line); padding: 2.25rem 0 2.5rem; }
.page-hero .h1 { font-size: clamp(2.2rem, 1.6rem + 3vw, 4rem); }

/* ---- Content grids ---- */
@media (min-width: 1024px) {
  .sym-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .mech-grid { grid-template-columns: 1.1fr 1fr; }
}

/* ---- Tables ---- */
.table-scroll { overflow-x: auto; margin-top: 1.5rem; }
table.data { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
table.data th {
  font-family: var(--measure); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  text-align: left; border-bottom: 1px solid var(--ink); padding: 0.625rem 1rem 0.625rem 0.125rem;
}
table.data td { border-bottom: 1px solid var(--line); padding: 0.75rem 1rem 0.75rem 0.125rem; vertical-align: top; }

/* ---- Reveal: the one authored moment (leader lines draw in) ---- */
.reveal, .reveal-group > * { opacity: 0; transform: translateY(10px); transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible, .reveal-group.is-visible > * { opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: .07s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: .14s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: .21s; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: .28s; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: .35s; }
/* Annotation leader lines draw on when the drawing enters the viewport */
.drawing .lead-line { stroke-dasharray: 240; stroke-dashoffset: 240; transition: stroke-dashoffset 1.1s cubic-bezier(.16,1,.3,1) .2s; }
.drawing.is-visible .lead-line { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .drawing .lead-line { stroke-dasharray: none; stroke-dashoffset: 0; } }

/* ---- legal additions ---- */
/* Hairline-ruled clause blocks for /privacy/ and /terms/: quiet, text-only
   re-housing of legal section copy. No cards, no tint, just a rule and a
   smaller in-body heading size than the world's section h2. */
.legal-clause { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 2rem; }
.legal-clause:last-child { padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.legal-clause h2 { font-size: 1.5rem; }

/* ---- Code-clause pin (the differentiator made visible; label text is CSS-generated, true code ref) ---- */
.code-pin {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--white);
  padding: 1.375rem 1.5rem 1.25rem;
}
.code-pin::before {
  content: "";
  position: absolute; left: -0.3125rem; top: 1.4rem;
  width: 0.5rem; height: 0.5rem;
  background: var(--cotton);
  border: 1.5px solid var(--red);
}
.code-pin::after {
  content: "SPS 322.34";
  position: absolute; top: -0.7em; right: 1rem;
  font-family: var(--measure); font-size: 0.6563rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--red);
  background: var(--white);
  border: 1px solid var(--red);
  padding: 0.125rem 0.5rem;
}
