/* Freq Match — aircraft-frequency hangar. System faces only. */
:root {
  --fm-void: #0b0d0f;
  --fm-hangar: #12151a;
  --fm-panel: #1c2128;
  --fm-al: #c8ced4;
  --fm-al-hot: #eef1f4;
  --fm-ink: #d8dce1;
  --fm-mute: #8d949c;
  --fm-warn: #f5c400;
  --fm-warn-deep: #c9a000;
  --fm-crt: #ffb000;
  --fm-rivet: #5c636b;
  --fm-black: #050607;
  --fm-display: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --fm-body: "Segoe UI", "Avenir Next", system-ui, sans-serif;
  --fm-mono: "SF Mono", Menlo, "Cascadia Mono", ui-monospace, monospace;
  --fm-max: 1180px;
  --fm-gutter: 22px;
  --fm-rail: 14px;
  --fm-drop: 0 24px 48px -28px rgba(0, 0, 0, 0.72);
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body.fm-body {
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(245, 196, 0, 0.08), transparent 58%),
    radial-gradient(700px 380px at 8% 12%, rgba(255, 176, 0, 0.05), transparent 52%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 71px,
      rgba(200, 206, 212, 0.035) 71px,
      rgba(200, 206, 212, 0.035) 72px
    ),
    var(--fm-void);
  color: var(--fm-ink);
  font-family: var(--fm-body);
  font-size: 16.5px;
  line-height: 1.64;
  letter-spacing: 0.01em;
  padding-left: 0;
}

@media (min-width: 880px) {
  body.fm-body { padding-left: var(--fm-rail); }
}

body.fm-locked { overflow: hidden; }

img { max-width: 100%; display: block; }

a {
  color: var(--fm-warn);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--fm-al-hot); }

h1, h2, h3, h4 {
  font-family: var(--fm-display);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--fm-al-hot);
  margin: 0 0 0.55em;
}

h1 { font-size: clamp(2.05rem, 5.6vw, 3.55rem); }
h2 { font-size: clamp(1.38rem, 3vw, 2.05rem); }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1em; }

.fm-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--fm-warn);
  color: var(--fm-black);
  padding: 0.5rem 0.8rem;
  z-index: 80;
  font-family: var(--fm-mono);
  font-size: 0.78rem;
  text-decoration: none;
}

.fm-skip:focus { left: 12px; }

/* Left hangar hazard rail — desktop only */
.fm-hazard {
  display: none;
}

@media (min-width: 880px) {
  .fm-hazard {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--fm-rail);
    height: 100vh;
    z-index: 40;
    background: repeating-linear-gradient(
      -45deg,
      var(--fm-warn) 0 8px,
      var(--fm-black) 8px 16px
    );
    box-shadow: 2px 0 0 rgba(0, 0, 0, 0.4);
  }
}

/* Scope ticker */
.fm-ticker {
  overflow: hidden;
  background: var(--fm-black);
  border-bottom: 1px solid rgba(245, 196, 0, 0.35);
  color: var(--fm-crt);
  font-family: var(--fm-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fm-ticker__run {
  display: inline-flex;
  gap: 1.4rem;
  padding: 0.42rem 0;
  animation: fm-scroll 38s linear infinite;
}

.fm-ticker__pip { color: var(--fm-warn); opacity: 0.7; }

@keyframes fm-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .fm-ticker__run { animation: none; }
  html { scroll-behavior: auto; }
}

/* Mast */
.fm-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 13, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 206, 212, 0.12);
}

.fm-bar.is-pinned {
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(245, 196, 0, 0.28);
}

.fm-frame {
  width: min(var(--fm-max), calc(100% - 2 * var(--fm-gutter)));
  margin-inline: auto;
}

.fm-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.fm-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--fm-al-hot);
}

.fm-mark__wave {
  color: var(--fm-warn);
  display: grid;
  place-items: center;
  width: 56px;
  height: 36px;
  background: var(--fm-panel);
  border: 1px solid rgba(245, 196, 0, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.12);
}

.fm-mark__copy { display: flex; flex-direction: column; line-height: 1.15; }

.fm-mark__id {
  font-family: var(--fm-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
}

.fm-mark__city {
  font-family: var(--fm-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fm-mute);
}

.fm-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 196, 0, 0.5);
  background: var(--fm-panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.fm-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fm-warn);
}

.fm-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fm-toggle.is-open span:nth-child(2) { opacity: 0; }
.fm-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.fm-nav {
  display: none;
}

@media (max-width: 1079px) {
  .fm-nav {
    position: fixed;
    inset: 96px 0 0 0;
    background: rgba(11, 13, 15, 0.97);
    padding: 1.4rem 1.4rem 3rem;
    overflow: auto;
  }

  .fm-nav.is-open { display: block; }

  .fm-nav__list {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    display: grid;
    gap: 0.2rem;
  }

  .fm-nav__list a {
    display: block;
    padding: 0.85rem 0.4rem;
    color: var(--fm-al-hot);
    text-decoration: none;
    font-family: var(--fm-display);
    font-size: 1.35rem;
    border-bottom: 1px solid rgba(200, 206, 212, 0.08);
  }

  .fm-nav__list .is-here a { color: var(--fm-warn); }
}

@media (min-width: 1080px) {
  .fm-toggle { display: none; }

  .fm-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
  }

  .fm-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.15rem 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .fm-nav__list a {
    color: var(--fm-mute);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--fm-mono);
  }

  .fm-nav__list a:hover,
  .fm-nav__list .is-here a { color: var(--fm-warn); }
}

.fm-hold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fm-warn);
  color: var(--fm-black) !important;
  text-decoration: none !important;
  font-family: var(--fm-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.72rem 1rem;
  border: 1px solid var(--fm-warn-deep);
  box-shadow: 3px 3px 0 var(--fm-black);
}

.fm-hold:hover { background: var(--fm-al-hot); }

.fm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fm-warn);
  color: var(--fm-black);
  text-decoration: none;
  font-family: var(--fm-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--fm-warn-deep);
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
}

.fm-btn:hover { background: var(--fm-al-hot); color: var(--fm-black); }

.fm-btn--ghost {
  background: transparent;
  color: var(--fm-warn);
  box-shadow: none;
}

.fm-btn--ghost:hover { background: rgba(245, 196, 0, 0.1); color: var(--fm-al-hot); }

.fm-btn--block { width: 100%; }

.fm-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.fm-stamp {
  font-family: var(--fm-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fm-warn);
  margin: 0 0 0.65rem;
}

.fm-lead {
  font-size: 1.08rem;
  color: var(--fm-ink);
  max-width: 42rem;
}

/* Work-order hero — perforated plate, not a banner */
.fm-wo {
  display: grid;
  gap: 1.4rem;
  padding: 2.2rem 0 1.6rem;
}

@media (min-width: 920px) {
  .fm-wo {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
    align-items: stretch;
    padding-top: 2.8rem;
  }
}

.fm-wo__plate {
  position: relative;
  background:
    linear-gradient(180deg, #2a3138 0%, #1a1f25 100%);
  border: 1px solid rgba(200, 206, 212, 0.22);
  padding: 1.6rem 1.4rem 1.7rem 1.7rem;
  box-shadow: var(--fm-drop);
  overflow: hidden;
}

.fm-wo__plate::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background:
    radial-gradient(circle at 9px 12px, var(--fm-void) 4px, transparent 4.5px),
    radial-gradient(circle at 9px 36px, var(--fm-void) 4px, transparent 4.5px),
    radial-gradient(circle at 9px 60px, var(--fm-void) 4px, transparent 4.5px),
    radial-gradient(circle at 9px 84px, var(--fm-void) 4px, transparent 4.5px),
    linear-gradient(180deg, #3a424a, #242a30);
  background-size: 18px 24px, 18px 24px, 18px 24px, 18px 24px, auto;
}

.fm-wo__meta {
  font-family: var(--fm-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fm-mute);
  margin: 0 0 0.8rem 0.6rem;
}

.fm-wo__plate h1,
.fm-wo__plate .fm-lead,
.fm-wo__plate .fm-row { margin-left: 0.6rem; }

.fm-wo__scope {
  background:
    linear-gradient(rgba(18, 21, 26, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 21, 26, 0.2) 1px, transparent 1px),
    #0a120c;
  background-size: 16px 16px, 16px 16px, auto;
  border: 1px solid rgba(255, 176, 0, 0.35);
  padding: 1.1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  position: relative;
}

.fm-wo__scope canvas {
  width: 100%;
  height: 110px;
  display: block;
}

.fm-cpm {
  font-family: var(--fm-mono);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--fm-crt);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 176, 0, 0.45);
}

.fm-cpm small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--fm-warn);
  margin-top: 0.35rem;
  text-shadow: none;
}

.fm-wo__readouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-family: var(--fm-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8dff9a;
}

.fm-wo__readouts span {
  border: 1px solid rgba(141, 255, 154, 0.25);
  padding: 0.35rem 0.4rem;
}

/* Sections */
.fm-bay {
  padding: 2.4rem 0;
}

.fm-bay--dim {
  background: linear-gradient(180deg, rgba(28, 33, 40, 0.55), rgba(18, 21, 26, 0.2));
  border-block: 1px solid rgba(200, 206, 212, 0.08);
}

.fm-split {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 860px) {
  .fm-split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .fm-split--flip { grid-template-columns: 0.85fr 1.15fr; }
  .fm-split--flip > :first-child { order: 2; }
  .fm-split--7 { grid-template-columns: 1.4fr 0.7fr; }
}

.fm-plate {
  background: linear-gradient(180deg, #2b3239, #1a1f25);
  border: 1px solid rgba(200, 206, 212, 0.16);
  padding: 1.25rem 1.2rem 1.3rem;
  position: relative;
  box-shadow: var(--fm-drop);
}

.fm-plate::after,
.fm-plate::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #9aa1a8, #3a4046 70%);
  box-shadow: inset 0 0 0 1px #1a1e22;
}

.fm-plate::before { top: 8px; left: 8px; }
.fm-plate::after { top: 8px; right: 8px; }

.fm-plate h2, .fm-plate h3 { padding-top: 0.3rem; }

.fm-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .fm-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .fm-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.fm-stair {
  counter-reset: fm-step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.fm-stair li {
  counter-increment: fm-step;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.fm-stair li::before {
  content: counter(fm-step, decimal-leading-zero);
  font-family: var(--fm-mono);
  color: var(--fm-warn);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}

.fm-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fm-check li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  border-bottom: 1px dashed rgba(200, 206, 212, 0.12);
}

.fm-check li::before {
  content: "Δ";
  position: absolute;
  left: 0;
  color: var(--fm-warn);
  font-family: var(--fm-mono);
  font-size: 0.78rem;
}

.fm-hours {
  display: grid;
  gap: 0.35rem;
  font-family: var(--fm-mono);
  font-size: 0.78rem;
}

.fm-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(200, 206, 212, 0.1);
  padding: 0.35rem 0;
}

.fm-hours .is-shut { color: var(--fm-mute); }

.fm-quote {
  margin: 0;
  padding: 1.1rem 1.1rem 1.1rem 1.3rem;
  border-left: 3px solid var(--fm-warn);
  background: rgba(245, 196, 0, 0.05);
  font-size: 1.02rem;
}

.fm-quote footer {
  margin-top: 0.7rem;
  font-family: var(--fm-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fm-mute);
}

.fm-stat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

@media (min-width: 640px) {
  .fm-stat { grid-template-columns: repeat(4, 1fr); }
}

.fm-stat__cell {
  background: var(--fm-panel);
  border: 1px solid rgba(245, 196, 0, 0.22);
  padding: 0.9rem 0.75rem;
  text-align: left;
}

.fm-stat__n {
  font-family: var(--fm-mono);
  font-size: 1.45rem;
  color: var(--fm-crt);
  display: block;
}

.fm-stat__l {
  font-size: 0.72rem;
  color: var(--fm-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fm-folio {
  padding: 2.2rem 0 0.4rem;
}

.fm-folio h1 { max-width: 18ch; }

.fm-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(200, 206, 212, 0.16);
}

table.fm-sheet {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 520px;
}

.fm-sheet th,
.fm-sheet td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(200, 206, 212, 0.1);
}

.fm-sheet th {
  font-family: var(--fm-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fm-warn);
  background: #15181d;
}

.fm-sheet tr:nth-child(even) td { background: rgba(28, 33, 40, 0.45); }

.fm-bio {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .fm-bio { grid-template-columns: 140px 1fr; }
}

.fm-bio__mark {
  width: 140px;
  height: 140px;
  background:
    repeating-linear-gradient(-45deg, var(--fm-warn) 0 6px, var(--fm-black) 6px 12px),
    var(--fm-panel);
  border: 1px solid rgba(245, 196, 0, 0.4);
  display: grid;
  place-items: center;
  font-family: var(--fm-mono);
  font-size: 1.6rem;
  color: var(--fm-al-hot);
  mix-blend-mode: normal;
  position: relative;
}

.fm-bio__mark span {
  background: var(--fm-void);
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.4);
}

.fm-form {
  background: linear-gradient(180deg, #262c33, #171b20);
  border: 1px solid rgba(245, 196, 0, 0.28);
  padding: 1.3rem 1.2rem 1.4rem;
}

.fm-fields {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .fm-fields { grid-template-columns: 1fr 1fr; }
  .fm-field--full { grid-column: 1 / -1; }
}

.fm-field label {
  display: block;
  font-family: var(--fm-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fm-warn);
  margin-bottom: 0.35rem;
}

.fm-field input,
.fm-field select,
.fm-field textarea {
  width: 100%;
  background: var(--fm-void);
  color: var(--fm-al-hot);
  border: 1px solid rgba(200, 206, 212, 0.22);
  padding: 0.65rem 0.7rem;
  font-family: var(--fm-body);
  font-size: 1rem;
}

.fm-field input:focus,
.fm-field select:focus,
.fm-field textarea:focus {
  outline: 2px solid var(--fm-warn);
  outline-offset: 1px;
}

.fm-form-note {
  font-size: 0.85rem;
  color: var(--fm-mute);
  margin-top: 0.9rem;
}

.fm-map {
  min-height: 220px;
  background:
    linear-gradient(rgba(245, 196, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 196, 0, 0.05) 1px, transparent 1px),
    #14181d;
  background-size: 24px 24px;
  border: 1px solid rgba(245, 196, 0, 0.25);
  padding: 1.1rem;
  font-family: var(--fm-mono);
  font-size: 0.78rem;
  color: var(--fm-crt);
}

.fm-log {
  display: grid;
  gap: 0.6rem;
}

.fm-log a {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem 1rem 1rem 1.1rem;
  background: var(--fm-panel);
  border: 1px solid rgba(200, 206, 212, 0.12);
}

.fm-log a:hover { border-color: var(--fm-warn); }

.fm-log time {
  font-family: var(--fm-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fm-warn);
}

.fm-log strong {
  display: block;
  color: var(--fm-al-hot);
  font-family: var(--fm-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 620px) {
  .fm-log a { grid-template-columns: 1fr; gap: 0.3rem; }
}

.fm-article {
  max-width: 42rem;
}

.fm-article h2 { margin-top: 1.6rem; }

.fm-lost {
  padding: 4rem 0 5rem;
  text-align: left;
}

.fm-lost__code {
  font-family: var(--fm-mono);
  color: var(--fm-warn);
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

/* Footer */
.fm-end {
  margin-top: 2rem;
  background: var(--fm-black);
  border-top: 1px solid rgba(245, 196, 0, 0.2);
}

.fm-chevron {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--fm-warn) 0 10px,
    var(--fm-black) 10px 20px
  );
}

.fm-end__grid {
  display: grid;
  gap: 1.6rem;
  padding: 2.2rem 0 1.8rem;
}

@media (min-width: 900px) {
  .fm-end__grid {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  }
}

.fm-end__name {
  font-family: var(--fm-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fm-al-hot);
  margin: 0 0 0.5rem;
}

.fm-end__chips {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--fm-mute);
}

.fm-end__chips li { padding: 0.2rem 0; }

.fm-end h2 {
  font-family: var(--fm-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fm-warn);
}

.fm-end address { font-style: normal; }

.fm-clock {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--fm-mono);
  font-size: 0.72rem;
}

.fm-clock li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(200, 206, 212, 0.08);
}

.fm-end__links {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
}

.fm-end__links a {
  color: var(--fm-al);
  text-decoration: none;
  font-size: 0.92rem;
}

.fm-end__links a:hover { color: var(--fm-warn); }

.fm-end__floor {
  border-top: 1px solid rgba(200, 206, 212, 0.1);
  padding: 0.85rem 0 1.1rem;
  color: var(--fm-mute);
  font-size: 0.78rem;
  font-family: var(--fm-mono);
}

.fm-end__floor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
}

/* Reveal */
.fm-enter {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fm-enter.is-in,
.fm-ready.no-js .fm-enter {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 480px) {
  .fm-stat { grid-template-columns: 1fr 1fr; }
  .fm-wo__plate { padding-left: 1.4rem; }
  .fm-wo__plate::before { width: 12px; }
}
