/* =============================================================
   Battuta Aviation — Global Stylesheet
   Palette: navy / white / silver / restrained sky-blue
   Type: Saira (display) · Public Sans (body) · IBM Plex Mono (data)
   ============================================================= */

:root {
  --navy-950: #071224;
  --navy-900: #0A1A30;
  --navy-800: #0F2445;
  --navy-700: #16325F;
  --navy-600: #1F4179;
  --paper:    #F4F6F9;
  --white:    #FFFFFF;
  --silver:   #C9D1DC;
  --steel:    #6E7D93;
  --ink:      #16202E;
  --sky:      #5AA7E6;
  --sky-deep: #2F79BD;
  --sky-tint: #E8F2FB;
  --ok:       #2E9E6B;
  --warn:     #C98A2D;
  --line:     rgba(15, 36, 69, 0.12);
  --line-inv: rgba(255, 255, 255, 0.14);

  --font-display: "Saira", "Segoe UI", Arial, sans-serif;
  --font-body: "Public Sans", "Segoe UI", Arial, sans-serif;
  --font-data: "IBM Plex Mono", "Courier New", monospace;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 10px 30px rgba(7, 18, 36, 0.10);
  --shadow-soft: 0 4px 14px rgba(7, 18, 36, 0.07);
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--sky-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-900); color: var(--silver); }
.section--navy h2, .section--navy h3 { color: var(--white); }

/* Eyebrow: mono, like an ops-document field label */
.eyebrow {
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 12px;
}
.section--navy .eyebrow { color: var(--sky); }

.lead { font-size: 1.12rem; color: var(--steel); max-width: 68ch; }
.section--navy .lead { color: var(--silver); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy-800); color: var(--white); }
.btn--primary:hover { background: var(--navy-700); }
.btn--sky { background: var(--sky-deep); color: var(--white); }
.btn--sky:hover { background: var(--sky); }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn--ghost:hover { background: var(--navy-800); color: var(--white); }
.btn--ghost-inv { background: transparent; color: var(--white); border-color: var(--line-inv); }
.btn--ghost-inv:hover { border-color: var(--sky); color: var(--sky); }
.btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.btn--whatsapp { background: #1E8E5A; color: var(--white); }
.btn--whatsapp:hover { background: #23A468; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy-900);
  border-bottom: 1px solid var(--line-inv);
}
.topbar {
  background: var(--navy-950);
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--silver);
  letter-spacing: 0.06em;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding-top: 7px; padding-bottom: 7px; }
.topbar a { color: var(--sky); }
.topbar__regions { display: none; }
@media (min-width: 720px) { .topbar__regions { display: block; } }

.navbar { display: flex; align-items: center; gap: 28px; padding: 14px 22px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none !important; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--white); letter-spacing: 0.02em; line-height: 1.1; }
.brand__name span { display: block; font-family: var(--font-data); font-weight: 400; font-size: 0.6rem; letter-spacing: 0.28em; color: var(--sky); text-transform: uppercase; }

.nav { display: none; align-items: center; gap: 4px; margin-left: auto; }
.nav a, .nav .nav__toggle-btn {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 500;
  color: var(--silver); padding: 10px 12px; border-radius: var(--radius);
  background: none; border: 0; cursor: pointer; text-decoration: none !important;
}
.nav a:hover, .nav .nav__toggle-btn:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav a.is-active { color: var(--sky); }
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 8px; display: none; border: 1px solid var(--line);
}
.nav__item.is-open .nav__dropdown { display: block; }
.nav__dropdown a { display: block; color: var(--navy-800); font-weight: 500; padding: 9px 12px; }
.nav__dropdown a:hover { background: var(--sky-tint); color: var(--navy-900); }
.nav__cta { margin-left: 10px; }

.nav-burger {
  margin-left: auto; background: none; border: 1px solid var(--line-inv); border-radius: var(--radius);
  color: var(--white); padding: 8px 12px; font-size: 1.1rem; cursor: pointer;
}
@media (min-width: 1024px) {
  .nav { display: flex; }
  .nav-burger { display: none; }
}

/* Mobile nav panel */
.mobile-nav { display: none; background: var(--navy-950); border-top: 1px solid var(--line-inv); }
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 22px; color: var(--silver);
  font-family: var(--font-display); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none !important;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.mobile-nav__group { padding: 10px 22px 4px; font-family: var(--font-data); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; padding: 88px 0 96px; }
.hero h1 { color: var(--white); max-width: 18ch; }
.hero .lead { color: var(--silver); }
.hero__arc { position: absolute; inset: 0; z-index: 1; opacity: 0.55; pointer-events: none; }
.hero--page .hero__inner { padding: 60px 0 64px; }

/* Route-arc strip used as a section divider motif */
.routeline { height: 4px; background: linear-gradient(90deg, var(--sky-deep), var(--sky) 40%, transparent); border-radius: 2px; width: 96px; margin-bottom: 22px; }

/* ---------------- Cards ---------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 10px;
}
.card--flush { padding: 0; overflow: hidden; }
.card__icon { width: 42px; height: 42px; color: var(--sky-deep); }
.card .btn { align-self: flex-start; margin-top: auto; }
.card p { color: var(--steel); font-size: 0.96rem; }

/* Spec strip — signature element: ops-document style data rows */
.spec-strip { border-top: 1px solid var(--line); font-family: var(--font-data); font-size: 0.82rem; }
.spec-strip__row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 7px 0; border-bottom: 1px solid var(--line);
}
.spec-strip__row dt { color: var(--steel); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.7rem; padding-top: 2px; }
.spec-strip__row dd { margin: 0; color: var(--navy-900); text-align: right; font-weight: 500; }
.section--navy .spec-strip__row dt { color: var(--silver); }
.section--navy .spec-strip__row dd { color: var(--white); }
.section--navy .spec-strip, .section--navy .spec-strip__row { border-color: var(--line-inv); }

/* Status chips */
.chip {
  display: inline-block; font-family: var(--font-data); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 999px; border: 1px solid var(--line); color: var(--steel); background: var(--paper);
}
.chip--available { color: var(--ok); border-color: rgba(46,158,107,0.4); background: rgba(46,158,107,0.08); }
.chip--soon { color: var(--sky-deep); border-color: rgba(47,121,189,0.4); background: var(--sky-tint); }
.chip--offer, .chip--contract { color: var(--warn); border-color: rgba(201,138,45,0.45); background: rgba(201,138,45,0.08); }
.chip--offmarket, .chip--enquire { color: var(--steel); }
.chip--sale { color: #7A4FBF; border-color: rgba(122,79,191,0.4); background: rgba(122,79,191,0.07); }

/* Aircraft cards */
.ac-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.ac-card__img { aspect-ratio: 16/9; background: var(--paper); position: relative; }
.ac-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ac-card__img .chip { position: absolute; top: 12px; left: 12px; background: var(--white); }
.ac-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ac-card__mfr { font-family: var(--font-data); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }
.ac-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy-900); }
.ac-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ac-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 8px; }

/* ---------------- Explorer layout ---------------- */
.explorer { display: grid; gap: 26px; }
@media (min-width: 1024px) { .explorer { grid-template-columns: 290px 1fr; align-items: start; } }
.filters {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; position: sticky; top: 92px;
}
.filters h3 { font-size: 1rem; }
.filters .field { margin-bottom: 14px; }
.filters summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--navy-800); padding: 6px 0; }
.filters details { border-top: 1px solid var(--line); }
.filters details:first-of-type { border-top: 0; }

.filters-toggle { display: block; margin-bottom: 14px; }
@media (min-width: 1024px) {
  .filters-toggle { display: none; }
  .filters { display: block !important; }
}
.filters.is-hidden { display: none; }

.explorer-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 18px; }
.explorer-toolbar .result-count { font-family: var(--font-data); font-size: 0.78rem; color: var(--steel); letter-spacing: 0.05em; }
.explorer-toolbar select { max-width: 240px; }

.searchbox { position: relative; flex: 1 1 260px; }
.searchbox input { width: 100%; }
.autocomplete {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); max-height: 280px; overflow: auto; display: none;
}
.autocomplete.is-open { display: block; }
.autocomplete button {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  padding: 10px 14px; cursor: pointer; font-family: var(--font-body); font-size: 0.92rem; color: var(--ink);
}
.autocomplete button:hover, .autocomplete button.is-hl { background: var(--sky-tint); }
.autocomplete .ac-type { font-family: var(--font-data); font-size: 0.65rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.1em; margin-left: 8px; }

.pillbar { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.pill {
  font-family: var(--font-data); font-size: 0.75rem; letter-spacing: 0.06em;
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); color: var(--navy-800); cursor: pointer;
}
.pill:hover { border-color: var(--sky-deep); color: var(--sky-deep); }
.pill.is-active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

.no-results { border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 40px; text-align: center; color: var(--steel); }

/* Compare tray */
.compare-tray {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--navy-950); color: var(--white);
  border-top: 2px solid var(--sky-deep);
  transform: translateY(110%); transition: transform 0.25s;
}
.compare-tray.is-open { transform: none; }
.compare-tray .container { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
.compare-tray__item { font-family: var(--font-data); font-size: 0.78rem; border: 1px solid var(--line-inv); border-radius: 999px; padding: 5px 12px; display: flex; gap: 8px; align-items: center; }
.compare-tray__item button { background: none; border: 0; color: var(--sky); cursor: pointer; font-size: 0.9rem; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th, .compare-table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.compare-table thead th { background: var(--navy-900); color: var(--white); font-family: var(--font-display); }
.compare-table tbody th { background: var(--paper); font-family: var(--font-data); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel); width: 190px; }
.compare-table td { font-family: var(--font-data); font-size: 0.82rem; color: var(--navy-900); }
.table-scroll { overflow-x: auto; }

/* ---------------- Modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 90; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(7,18,36,0.72); }
.modal__panel {
  position: relative; z-index: 2; background: var(--white); border-radius: var(--radius-lg);
  max-width: 960px; margin: 4vh auto; max-height: 92vh; overflow: auto;
  box-shadow: var(--shadow); width: calc(100% - 28px);
}
.modal__close {
  position: sticky; top: 0; margin-left: auto; display: block;
  background: var(--navy-900); color: var(--white); border: 0; font-size: 1.2rem;
  width: 42px; height: 42px; cursor: pointer; border-radius: 0 var(--radius-lg) 0 var(--radius);
}
.modal__body { padding: 0 30px 34px; margin-top: -42px; }
.profile__head { padding: 26px 0 8px; }
.profile__gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin: 14px 0 20px; }
.profile__gallery .ph { border-radius: var(--radius); }
.profile__cols { display: grid; gap: 26px; }
@media (min-width: 820px) { .profile__cols { grid-template-columns: 1.2fr 1fr; } }
.profile__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.disclaimer { font-size: 0.78rem; color: var(--steel); border-left: 3px solid var(--silver); padding-left: 12px; margin-top: 20px; }

/* ---------------- Forms ---------------- */
form { display: block; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .field--full { grid-column: 1 / -1; } }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--navy-800); margin-bottom: 6px; }
.field .hint { font-size: 0.78rem; color: var(--steel); margin-top: 4px; }
input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--silver); border-radius: var(--radius);
  padding: 11px 13px;
}
input:focus, select:focus, textarea:focus { border-color: var(--sky-deep); outline: 2px solid rgba(90,167,230,0.35); outline-offset: 0; }
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--steel); }
.form-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: var(--radius); font-size: 0.9rem; }
.form-status.is-ok { display: block; background: rgba(46,158,107,0.1); color: var(--ok); border: 1px solid rgba(46,158,107,0.4); }
.form-status.is-err { display: block; background: rgba(201,74,45,0.08); color: #B4432A; border: 1px solid rgba(201,74,45,0.35); }

/* ---------------- Misc ---------------- */
.split { display: grid; gap: 34px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-text { grid-template-columns: 1.3fr 1fr; } }

.ph { /* image placeholder frame */
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: var(--silver);
  min-height: 200px;
}
.ph svg { width: 44%; max-width: 220px; opacity: 0.85; height: auto; }
.ph--photo { aspect-ratio: 16/10; }

.industry-list { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .industry-list { grid-template-columns: repeat(4, 1fr); } }
.industry-list li {
  list-style: none; border: 1px solid var(--line-inv); border-radius: var(--radius);
  padding: 14px 16px; font-family: var(--font-display); font-weight: 500; color: var(--white); font-size: 0.92rem;
}
ul.ticks { padding: 0; margin: 0 0 1em; }
ul.ticks li { list-style: none; padding-left: 26px; position: relative; margin-bottom: 9px; color: var(--ink); }
ul.ticks li::before { content: "→"; position: absolute; left: 0; color: var(--sky-deep); font-weight: 700; }
.section--navy ul.ticks li { color: var(--silver); }

.steps { counter-reset: step; padding: 0; margin: 0; }
.steps li { list-style: none; counter-increment: step; position: relative; padding: 0 0 22px 58px; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0; font-family: var(--font-data); font-size: 0.8rem;
  color: var(--sky-deep); border: 1px solid var(--line); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--white);
}
.steps li::after { content: ""; position: absolute; left: 20px; top: 44px; bottom: 4px; width: 1px; background: var(--line); }
.steps li:last-child::after { display: none; }
.steps h4 { margin-bottom: 2px; }
.steps p { color: var(--steel); font-size: 0.95rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); color: var(--white); }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; padding-top: 56px; padding-bottom: 56px; }
.cta-band h2 { color: var(--white); margin: 0; flex: 1 1 380px; }

/* Requirements board */
.req-board { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.req-row { display: grid; gap: 8px; padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--white); }
.req-row:nth-child(even) { background: var(--paper); }
.req-row:last-child { border-bottom: 0; }
@media (min-width: 860px) { .req-row { grid-template-columns: 1.5fr 1fr 1fr auto; align-items: center; } }
.req-row__type { font-family: var(--font-display); font-weight: 600; color: var(--navy-900); }
.req-row__meta { font-family: var(--font-data); font-size: 0.78rem; color: var(--steel); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-950); color: var(--silver); font-size: 0.92rem; }
.site-footer a { color: var(--silver); }
.site-footer a:hover { color: var(--sky); }
.footer-grid { display: grid; gap: 34px; padding: 60px 0 40px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-legal { border-top: 1px solid var(--line-inv); padding: 18px 0 26px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-family: var(--font-data); font-size: 0.72rem; letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid var(--line-inv); border-radius: 50%; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-disclaimer { font-size: 0.78rem; color: var(--steel); max-width: 62ch; margin-top: 16px; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 65;
  width: 54px; height: 54px; border-radius: 50%; background: #1E8E5A; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
.wa-float:hover { background: #23A468; }

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.muted { color: var(--steel); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
