/* ============================================================
   MA Maritime Analytics — shared site styles
   Palette: near-black #0a0d12 · bone #f0efe9 · first-light #d6a876
   Type:    Source Serif 4 (display) · Montserrat (UI/body)
   ============================================================ */

:root {
  --bg: #0a0d12;
  --bg-deep: #07090d;
  --bg-panel: #0c1017;
  --ink: #f0efe9;
  /* The dim end of this ramp is floored at .55 so the faintest text still
     clears WCAG AA (4.5:1) on both --bg and the darker footer. Hierarchy is
     preserved by the ordering plus size/weight, not by dropping below legible. */
  --ink-85: rgba(240, 239, 233, .85);
  --ink-70: rgba(240, 239, 233, .8);
  --ink-60: rgba(240, 239, 233, .72);
  --ink-50: rgba(240, 239, 233, .66);
  --ink-45: rgba(240, 239, 233, .62);
  --ink-35: rgba(240, 239, 233, .55);
  --hairline: rgba(240, 239, 233, .08);
  --accent: #d6a876; /* first-light — small details only, never buttons/headings */
  --accent-40: rgba(214, 168, 118, .4);
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Montserrat', Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(.16, .84, .24, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--ink); text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease; }
a:hover { color: var(--accent); }

/* ---------------- typography helpers ---------------- */

/* the whisper voice — italic serif, used only for: hero tagline, evidence
   boundary line, owl bridge line, closing tagline */
.whisper {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-60);
}

.wordmark {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow--dim { color: var(--ink-50); letter-spacing: .32em; }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

/* ---------------- nav ---------------- */

.site-nav-wrap {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.site-nav-wrap--overlay {
  background: transparent;
  border-bottom: none;
  position: relative;
  z-index: 3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 48px;
}

.site-nav__logo img { height: 64px; display: block; }

.site-nav__links {
  display: flex;
  gap: 34px;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
}

.site-nav__links a { color: var(--ink-85); }
.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] { color: var(--accent); }

.site-nav__actions { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }

.btn-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  padding: 11px 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.btn-pill:hover { background: var(--accent); color: var(--bg); }

.btn-pill--lg { padding: 15px 38px; font-size: 12.5px; letter-spacing: .16em; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(240, 239, 233, .35);
  color: var(--ink);
  border-radius: 999px;
  padding: 15px 38px;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.site-nav__burger {
  display: none;
  background: none;
  border: 1px solid rgba(240, 239, 233, .3);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 8, 11, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-menu.open { display: flex; animation: fadeIn .25s ease both; }

.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
}

.mobile-menu__close {
  position: absolute;
  top: 26px;
  right: 48px;
  background: none;
  border: 1px solid rgba(240, 239, 233, .3);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1139px) {
  .site-nav__links { display: none; }
  .site-nav__burger { display: inline-block; }
}

@media (max-width: 640px) {
  .site-nav { padding: 16px 24px; }
  .site-nav__logo img { height: 48px; }
}

/* ---------------- sections ---------------- */

.page-hero {
  position: relative;
  padding: 120px 48px 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.page-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }

.page-hero h1 { font-size: clamp(38px, 5.6vw, 72px); }

.page-hero__sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-70);
  max-width: 620px;
  margin: 28px auto 0;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(240, 239, 233, .07);
  pointer-events: none;
}

.section-pad { padding: 100px 48px; }
.container { max-width: 1160px; margin: 0 auto; }
.container--narrow { max-width: 860px; }

.cta-band {
  padding: 110px 48px;
  background: var(--bg-deep);
  border-top: 1px solid rgba(240, 239, 233, .06);
  text-align: center;
}

.cta-band h2 { font-size: clamp(28px, 3.8vw, 44px); }
.cta-band .btn-pill--lg { margin-top: 36px; }

@media (max-width: 640px) {
  .page-hero { padding: 80px 24px 60px; }
  .section-pad { padding: 70px 24px; }
  .cta-band { padding: 80px 24px; }
}

/* ---------------- reveal on scroll ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in { opacity: 1; transform: translateY(0); }

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

/* ---------------- footer ---------------- */

.site-footer {
  background: #06080b;
  border-top: 1px solid var(--hairline);
  padding: 70px 48px 40px;
}

.site-footer__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 48px;
}

.site-footer__logo { height: 44px; display: block; margin-bottom: 20px; }

.site-footer__tag {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-50);
  line-height: 1.75;
  max-width: 280px;
}

.site-footer__col { display: flex; flex-direction: column; gap: 12px; }

.site-footer__head {
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 6px;
}

.site-footer__col a { font-size: 14px; font-weight: 400; color: var(--ink-70); }
.site-footer__col a:hover { color: var(--accent); }

.site-footer__base {
  max-width: 1160px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-35);
}

.site-footer__base a { color: var(--ink-35); }
.site-footer__base a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .site-footer { padding: 56px 24px 32px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------- shared keyframes ---------------- */

@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

@keyframes riseIn {
  0% { opacity: 0; transform: translateY(26px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   Content components (MASS-MARAM handoff v1.2)
   ============================================================ */

/* journal treatment — date, headline, one-line thesis, arrow. Nothing else. */
.journal-item {
  display: block;
  padding: 34px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}

.journal-item__date {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.journal-item__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  margin: 10px 0 0;
}

.journal-item__thesis {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 8px 0 0;
}

.journal-item__arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--accent);
}

.journal-item:hover .journal-item__title { color: var(--accent); }

/* quiet secondary link */
.quiet-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-70);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
}

.quiet-link:hover { color: var(--accent); border-color: var(--accent-40); }

/* the evolution ladder — emphasis descends; the future fades, it never glows */
.ladder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  text-align: center;
}

.ladder__step-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 44px);
}

.ladder__step-state {
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 12px;
}

.ladder__step:nth-child(1) { opacity: 1; }
.ladder__step:nth-child(2) { opacity: .78; }
.ladder__step:nth-child(3) { opacity: .55; }
.ladder__step:nth-child(4) { opacity: .36; }

/* deployment map */
.deploy-map {
  position: relative;
  height: 440px;
  border: 1px solid rgba(240, 239, 233, .1);
  border-radius: 14px;
  overflow: hidden;
  background: #0c1017;
}

#deploy-map-canvas { position: absolute; inset: 0; }

.owl-marker {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.owl-marker__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(6, 8, 11, .6);
}

.owl-marker__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.deploy-map.pulsing .owl-marker__ring { animation: owlPulse 2s ease-out 3; }

@keyframes owlPulse {
  0% { width: 10px; height: 10px; opacity: .8; }
  100% { width: 56px; height: 56px; opacity: 0; }
}

.owl-marker__label {
  position: absolute;
  left: 16px;
  top: -4px;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink-85);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .8);
}

.owl-marker:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.deploy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.deploy-card {
  border: 1px solid var(--hairline);
  padding: 28px 30px;
  background: var(--bg-panel);
}

.deploy-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  margin: 0;
}

.deploy-card__state {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

.deploy-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 14px 0 0;
}

.deploy-caption {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-45);
  margin-top: 24px;
  line-height: 1.65;
}

/* quiet blocks (security / company on the homepage) */
.quiet-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
}

.quiet-block h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
}

.quiet-block p, .quiet-block li {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-60);
}

.quiet-block ul { margin: 0 0 18px; padding-left: 18px; }
.quiet-block li { margin-bottom: 8px; }

/* the four-point handshake (Project MARAM) */
.handshake { counter-reset: hs; }

.handshake__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--hairline);
}

.handshake__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink-45);
}

.handshake__row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  margin: 0 0 8px;
}

.handshake__row p {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 0;
}

/* forms (demo + conversation) */
.mm-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid rgba(240, 239, 233, .12);
  padding: 40px;
  background: var(--bg-panel);
  text-align: left;
}

.mm-form .field { display: flex; flex-direction: column; gap: 8px; }

.mm-form label {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.mm-form label small { text-transform: none; letter-spacing: 0; color: var(--ink-35); font-size: 10.5px; }

.mm-form input, .mm-form textarea {
  background: rgba(240, 239, 233, .05);
  border: 1px solid rgba(240, 239, 233, .15);
  color: var(--ink);
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  border-radius: 0;
}

.mm-form input:focus, .mm-form textarea:focus { border-color: var(--accent-40); }

.mm-form .field-error {
  font-size: 12px;
  color: var(--accent);
  display: none;
}

.mm-form .field.invalid .field-error { display: block; }
.mm-form .field.invalid input, .mm-form .field.invalid textarea { border-color: var(--accent-40); }

.mm-form button[type="submit"] { align-self: flex-start; border: none; }
.mm-form button[disabled] { opacity: .6; cursor: default; }

.form-outcome {
  border: 1px solid var(--accent-40);
  background: rgba(214, 168, 118, .06);
  padding: 40px;
  display: none;
}

.form-outcome h3 { font-family: var(--serif); font-weight: 300; font-size: 26px; margin: 0; }
.form-outcome p { font-size: 15px; font-weight: 400; color: var(--ink-70); line-height: 1.7; margin: 14px 0 0; }

.slot-note { font-size: 11.5px; color: var(--ink-45); margin: 18px 0 8px; }

.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.slot-grid button {
  background: rgba(240, 239, 233, .05);
  border: 1px solid rgba(240, 239, 233, .15);
  color: var(--ink);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
}

.slot-grid button:hover, .slot-grid button[aria-pressed="true"] { border-color: var(--accent); color: var(--accent); }

/* sensor-to-shore — five bands, ivory datum driven purely by scroll */
.sensor-chain { position: relative; padding-left: 44px; }

.sensor-chain__rail {
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--hairline);
}

.sensor-chain__datum {
  position: absolute;
  left: 8.5px;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 10px rgba(240, 239, 233, .5);
}

@media (prefers-reduced-motion: reduce) { .sensor-chain__datum { display: none; } }

.sensor-band { padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.sensor-band:last-child { border-bottom: none; }

.sensor-band h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.sensor-band p {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-60);
  margin: 0;
}

/* skip link (accessibility shell) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  font-size: 13px;
}

.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   Responsive layer — tablet & mobile
   Breakpoints: 1024 (tablet) · 760 (small tablet / large phone) · 560 (phone)
   ============================================================ */

/* The nav is a 3-part flex row; without min-width:0 the wordmark refuses to
   shrink and pushes the burger clean off the viewport on narrow screens. */
.site-nav { min-width: 0; }
.site-nav .wordmark { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.site-nav__actions { min-width: 0; }

@media (max-width: 1024px) {
  .section-pad { padding: 84px 32px; }
  .page-hero { padding: 100px 32px 76px; }
  .cta-band { padding: 90px 32px; }
  .stats-band { padding: 84px 32px; }
  .quote-slab { padding: 96px 32px; }
  .final-cta { padding: 110px 32px; }
  .site-footer { padding: 60px 32px 36px; }
  .hero__logos { padding: 0 32px 30px; }
}

@media (max-width: 760px) {
  /* Below this the demo pill and the burger cannot share the row. The pill
     moves into the drawer rather than overflowing off-screen. */
  .site-nav__actions .btn-pill { display: none; }
  .site-nav__actions { gap: 12px; }
  .site-nav { gap: 16px; }

  .mobile-menu { gap: 22px; padding: 88px 24px 40px; justify-content: center; overflow-y: auto; }
  .mobile-menu a { font-size: 26px; }
  .mobile-menu__close { top: 20px; right: 24px; }

  /* `.mobile-menu a` (0,1,1) outranks a bare `.mobile-menu__cta` (0,1,0),
     so the CTA needs the parent in the selector to keep its own type. */
  .mobile-menu a.mobile-menu__cta {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .14em;
    margin-top: 14px;
    padding: 15px 34px;
    color: var(--bg);
  }

  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .deploy-map { height: 340px; }
  .map-frame__body { min-height: 0; }
  .map-view { min-height: 320px; }
  .mm-form { padding: 28px 22px; }
  .form-outcome { padding: 28px 22px; }
  .handshake__row { grid-template-columns: 44px 1fr; gap: 18px; padding: 28px 0; }
  .ladder { gap: 36px; }
  .quiet-blocks { gap: 40px; }
  .deploy-cards { gap: 24px; }
}

@media (max-width: 560px) {
  .section-pad { padding: 64px 20px; }
  .page-hero { padding: 76px 20px 56px; }
  .cta-band { padding: 68px 20px; }
  .stats-band { padding: 64px 20px; }
  .quote-slab { padding: 72px 20px; }
  .final-cta { padding: 88px 20px; }
  .site-footer { padding: 48px 20px 28px; }
  .site-nav { padding: 14px 20px; }
  .hero__content { padding: 32px 20px; }
  .hero__logos { padding: 0 20px 26px; }

  /* Two columns at 375px leaves ~150px per column — the headings wrap to
     three lines. One column reads cleanly instead. */
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__tag { max-width: none; }
  .site-footer__base { margin-top: 36px; font-size: 11.5px; gap: 14px; }

  .stats-grid { gap: 36px; }
  .quote-slab__mark { font-size: 42px; margin-bottom: 26px; }
  .handshake__row { grid-template-columns: 1fr; gap: 6px; }
  .handshake__num { font-size: 22px; }
  .sensor-chain { padding-left: 32px; }
  .sensor-chain__rail { left: 8px; }
  .sensor-chain__datum { left: 4.5px; }
  .deploy-map { height: 300px; }
  .map-view { min-height: 260px; }
  .map-panel__stats { grid-template-columns: 1fr 1fr; }
  .map-view__chips { left: 12px; bottom: 12px; flex-wrap: wrap; gap: 6px; }

  /* Buttons go full-width so they are unmissable and easy to hit one-handed. */
  .btn-pill--lg, .btn-ghost { display: block; width: 100%; text-align: center; }
  .hero__cta { width: 100%; }
  .mm-form button[type="submit"] { align-self: stretch; width: 100%; text-align: center; }
}

/* ---------------- touch targets & input ergonomics ---------------- */

@media (pointer: coarse) {
  /* 44px is the minimum comfortable touch target; the footer links were 19px. */
  .site-footer__col a,
  .site-footer__base a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .site-footer__col { gap: 2px; }
  .site-nav__burger { padding: 12px 18px; }
  .slot-grid button { min-height: 44px; }
  .journal-item { padding: 28px 0; }
  .site-nav .wordmark { display: flex; align-items: center; min-height: 44px; }
  .quiet-link { padding-top: 10px; padding-bottom: 12px; }

  /* The map pin is a 10px dot — give it an invisible finger-sized hit area. */
  .owl-marker { padding: 17px; margin: -17px; }

  /* iOS zooms the page in when a focused input is under 16px. */
  .mm-form input, .mm-form textarea { font-size: 16px; }
}

/* Long unbroken strings (URLs, vessel IDs) must not force a horizontal scroll. */
p, li, h1, h2, h3, blockquote, .journal-item__title { overflow-wrap: break-word; }

/* Visible keyboard focus — the site had none outside the map markers. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* MapLibre's default attribution renders near-invisible (9px, ~1.1:1) on a
   dark basemap. Keep the credit — it is a licence condition — but make it
   actually readable. */
.maplibregl-ctrl-attrib {
  background: rgba(6, 8, 11, .82);
  font-size: 10.5px;
}

.maplibregl-ctrl-attrib,
.maplibregl-ctrl-attrib a,
.maplibregl-ctrl-attrib button { color: rgba(240, 239, 233, .75); }
