/* =========================================================================
   Ollinlabs Legal Hub — legal.ollinlabs.com
   Sidebar-menu layout over the approved brief's components. Same ocean ground
   and Baloo 2 / Nunito pairing as ollinlabs.com; the map colour scale is the
   brief's own. Dark-only on purpose.
   ========================================================================= */

:root {
  --ground: #050e19;
  --ocean: linear-gradient(180deg, #0e2a44 0%, #0a1c2e 22%, #081726 48%, #061220 72%, #040b14 100%);
  --side: #0b1826;

  --ink-head: #f2f2f0;
  --ink: #e2e2e4;
  --ink-body: #c4d2dc;
  --ink-soft: #d9e4ec;
  --ink-dim: #a9bcc9;
  --ink-muted: #8fa3b4;
  --ink-faint: #7c90a0;

  --green: #96f2a9;
  --teal: #54d6cb;
  --sky: #7ecdff;
  --gold: #ffd25e;
  --coral: #ff9986;
  --red: #e8543f;

  --glass: linear-gradient(158deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  --hairline: rgba(255, 255, 255, 0.13);
  --hairline-soft: rgba(255, 255, 255, 0.09);
  --well: rgba(6, 20, 34, 0.6);

  --font-display: 'Baloo 2', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, Menlo, Consolas, monospace;

  --sidebar: 250px;
  --content-max: 1360px;
  --pad-x: clamp(18px, 3.4vw, 52px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; background: var(--ground); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: var(--ocean) fixed, var(--ground);
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { color: #c4f8cf; }
button, select { font: inherit; color: inherit; }
::selection { background: rgba(150, 242, 169, 0.28); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 800; color: var(--ink-head); }
b { font-weight: 800; }
[hidden] { display: none !important; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; padding: 12px 20px; background: var(--green); color: #082814; font-weight: 800; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; color: #082814; }

.c-green { color: var(--green); }
.c-teal { color: var(--teal); }
.c-sky { color: var(--sky); }
.c-gold { color: var(--gold); }
.c-coral { color: var(--coral); }

/* ------------------------------------------------------------- app shell -- */

.app { display: grid; grid-template-columns: var(--sidebar) minmax(0, 1fr); min-height: 100vh; }

.sidebar {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; gap: 22px;
  padding: 22px 16px 18px;
  background: var(--side);
  border-right: 1px solid var(--hairline-soft);
}
.brand { display: flex; align-items: center; gap: 11px; padding: 4px 8px; color: inherit; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink-head); }
.brand__sub { font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-top: 3px; }

.menu { display: flex; flex-direction: column; gap: 4px; }
.menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px 11px 14px; border-radius: 10px;
  border-left: 3px solid transparent;
  color: #c9d6e0; font-weight: 700; font-size: 15px;
  transition: background 140ms ease, color 140ms ease;
}
.menu a svg { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; opacity: 0.75; }
.menu a em { margin-left: auto; font-style: normal; font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); }
.menu a:hover { background: rgba(255, 255, 255, 0.05); color: var(--ink-head); }
.menu a.is-active { background: rgba(84, 214, 203, 0.12); color: var(--teal); border-left-color: var(--teal); }
.menu a.is-active svg { opacity: 1; }
.menu a.is-active em { color: rgba(84, 214, 203, 0.8); }

.sidebar__mark {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 10px 4px;
  border-top: 1px solid var(--hairline-soft);
}
.sidebar__mark img { flex: none; opacity: 0.92; }
.sidebar__mark strong {
  display: block;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  color: var(--ink-head); line-height: 1.15;
}
.sidebar__mark a {
  display: block; margin-top: 3px;
  font-size: 12px; font-weight: 700; color: var(--ink-muted);
}
.sidebar__mark a:hover { color: var(--teal); }

.content { padding: clamp(28px, 4vw, 48px) var(--pad-x) clamp(60px, 7vw, 96px); }
.page { max-width: var(--content-max); }

/* ------------------------------------------------------------- page head -- */

.pagehead { padding-bottom: 26px; border-bottom: 1px solid var(--hairline-soft); margin-bottom: 30px; }
.pagehead--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pagehead__aside { max-width: 42ch; font-size: 14.5px; line-height: 1.55; color: var(--ink-muted); font-weight: 500; text-align: right; }
.eyebrow { display: block; font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
h1 { margin-top: 10px; font-size: clamp(26px, 2.9vw, 38px); line-height: 1.12; text-wrap: balance; max-width: 34ch; }
.intro { margin-top: 12px; max-width: 66ch; font-size: 16px; line-height: 1.62; color: var(--ink-body); font-weight: 500; text-wrap: pretty; }
.intro--wide { max-width: 72ch; }
.subhead { margin-top: 34px; font-size: 20px; }
.footnote { margin-top: 20px; margin-bottom: 8px; max-width: 72ch; font-size: 13.5px; line-height: 1.6; color: #93a9b8; font-weight: 500; }
.defn {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--hairline-soft);
  max-width: 72ch;
}
.defn h2 { font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.defn dfn { font-style: normal; }
.defn p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--ink-body); font-weight: 500; }
.hint { display: block; font-size: 11.5px; line-height: 1.5; color: var(--ink-faint); font-weight: 600; }
.body { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); font-weight: 500; }
.body--wide { max-width: 88ch; font-size: 15px; line-height: 1.62; text-wrap: pretty; }
.small { font-size: 13.5px; line-height: 1.55; color: var(--ink-body); font-weight: 500; }
.link { font-weight: 800; color: var(--teal); }
.link:hover { color: #9be9e1; }

/* -------------------------------------------------------------- overview -- */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.stat { border-radius: 16px; padding: 20px 22px; background: rgba(6, 20, 34, 0.55); border: 1px solid var(--hairline); }
.stat__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { display: block; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-dim); }

.ovcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 16px; }
.ovcard {
  display: flex; flex-direction: column; gap: 10px;
  border-radius: 16px; padding: 22px 24px 20px;
  background: rgba(6, 20, 34, 0.55); border: 1px solid var(--hairline); color: inherit;
  transition: border-color 140ms ease, background 140ms ease;
}
.ovcard:hover { border-color: rgba(84, 214, 203, 0.45); background: rgba(84, 214, 203, 0.06); color: inherit; }
.ovcard h3 { font-size: 17px; }
.ovcard p { font-size: 14.5px; line-height: 1.55; color: var(--ink-body); font-weight: 500; }
.ovcard__cta { margin-top: auto; padding-top: 6px; font-size: 13.5px; font-weight: 800; color: var(--teal); }

/* ----------------------------------------------------------------- cards -- */

.card { border-radius: 22px; padding: 22px; background: var(--glass); border: 1px solid var(--hairline); }
.card--tight { border-radius: 18px; padding: 20px; }
.card--green { background: linear-gradient(158deg, rgba(150, 242, 169, 0.13), rgba(150, 242, 169, 0.04)); border: 1.5px solid rgba(150, 242, 169, 0.45); }
.card--teal { background: linear-gradient(158deg, rgba(84, 214, 203, 0.12), rgba(84, 214, 203, 0.03)); border-color: rgba(84, 214, 203, 0.4); }
.card--sky { background: linear-gradient(158deg, rgba(126, 205, 255, 0.1), rgba(126, 205, 255, 0.03)); border-color: rgba(126, 205, 255, 0.34); }
.card--gold { background: linear-gradient(158deg, rgba(255, 210, 94, 0.11), rgba(255, 210, 94, 0.03)); border: 1.5px solid rgba(255, 210, 94, 0.42); }
.card--red { background: linear-gradient(158deg, rgba(232, 84, 63, 0.1), rgba(232, 84, 63, 0.03)); border-color: rgba(232, 84, 63, 0.36); }
.card h3 { font-size: 21px; margin: 12px 0 4px; }
.card .h3--sm { font-size: 19px; margin: 9px 0 4px; }
.card .h3--card { font-size: 19px; margin: 0 0 12px; }
.card ul { margin: 14px 0 0; padding-left: 18px; font-size: 14.5px; line-height: 1.66; color: #d2dee7; font-weight: 500; }
.card__meta { font-size: 13.5px; font-weight: 600; }
.card__note { font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); font-weight: 500; }
.mono-tag { display: inline-flex; align-items: center; gap: 7px; padding: 4px 10px; border-radius: 6px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.mono-tag--green { background: rgba(150, 242, 169, 0.16); border: 1px solid rgba(150, 242, 169, 0.4); color: var(--green); }
.mono-tag--teal { color: var(--teal); padding: 0; background: none; border: 0; }
.mono-tag--sky { color: var(--sky); padding: 0; background: none; border: 0; }
.overline { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }

/* --------------------------------------------------------------- journey -- */

.journey { margin: 0; }
.journey figcaption {
  max-width: 68ch; margin-bottom: 28px;
  font-size: 15px; line-height: 1.6; color: var(--ink-body); font-weight: 500;
}
.path {
  list-style: none; margin: 0; padding: 8px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) 96px minmax(200px, 1.15fr) 120px minmax(230px, 1.25fr);
  align-items: start;
}
.stop { position: relative; padding: 2px 0 0 22px; }
.stop__dot {
  position: absolute; top: 5px; left: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--ink-muted);
  box-shadow: 0 0 0 4px #081726;
}
.stop--parent .stop__dot { background: var(--green); }
.stop--rake .stop__dot { background: var(--teal); }
.stop--malta .stop__dot { background: var(--sky); }
.stop__k {
  display: block;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted);
}
.stop--parent .stop__k { color: var(--green); }
.stop--rake .stop__k { color: var(--teal); }
.stop--malta .stop__k { color: var(--sky); }
.stop strong {
  display: block; margin: 5px 0 6px;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  line-height: 1.15; color: var(--ink-head);
}
.stop p { font-size: 14px; line-height: 1.55; color: var(--ink-body); font-weight: 500; }

.path__hop {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 4px;
  color: var(--ink-muted);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.path__hop span {
  display: block;
  padding: 2px 4px;
  text-align: center;
  line-height: 1.4;
}
.path__hop--pair { flex-direction: column; gap: 16px; }
.hop-out, .hop-back { width: 100%; }
.hop-out { color: var(--teal); }
.hop-back { color: var(--green); }

.path__fork {
  display: flex; flex-direction: column; gap: 28px;
  padding-left: 24px;
  border-left: 2px solid rgba(126, 205, 255, 0.28);
}
.path__fork .stop { padding-left: 0; }
.path__fork .stop:first-child { padding-top: 2px; }
.path__fork .stop:first-child .stop__dot { top: 5px; left: -26px; }
.path__fork .stop--malta .stop__dot { left: -26px; }

.journey__note {
  margin-top: 22px; max-width: 72ch;
  font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); font-weight: 500;
}

/* ---------------------------------------------------------- investor hold -- */

.hold {
  width: 100%; border-collapse: collapse; margin-top: 14px;
  font-size: 14.5px;
}
.hold th {
  text-align: left; padding: 0 16px 10px 0;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); border-bottom: 1px solid var(--hairline);
}
.hold td {
  padding: 14px 18px 14px 0; vertical-align: top;
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--ink-body); font-weight: 500; line-height: 1.55;
}
.hold tr:last-child td { border-bottom: 0; }
.hold td:first-child {
  width: 3ch; font-family: var(--font-display); font-weight: 800; font-size: 20px;
  color: var(--ink-head); padding-right: 12px;
}
.hold td:nth-child(2) {
  width: 22ch; font-weight: 800; color: var(--ink-head); padding-right: 22px;
}
.hold--ok td:first-child, .hold--ok td:nth-child(2) { color: var(--green); }
.hold--mid td:first-child, .hold--mid td:nth-child(2) { color: var(--gold); }
.hold--no td:first-child, .hold--no td:nth-child(2) { color: var(--coral); }

/* -------------------------------------------------------------- timeline -- */

.timeline {
  list-style: none; margin: 16px 0 0; padding: 0 0 0 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
  max-width: 72ch;
}
.step { position: relative; padding: 0 0 22px 20px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute; left: -22px; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-muted);
  box-shadow: 0 0 0 3px var(--ground);
}
.step--green::before { background: var(--green); }
.step--green .step__when { color: var(--green); }
.step--teal::before { background: var(--teal); }
.step--teal .step__when { color: var(--teal); }
.step--sky::before { background: var(--sky); }
.step--sky .step__when { color: var(--sky); }
.step__when { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink-head); }
.step__what { display: block; margin-top: 4px; font-size: 14.5px; line-height: 1.55; color: #b9c8d4; font-weight: 500; }

/* --------------------------------------------------------------- toolbar -- */

.toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button {
  padding: 9px 15px; border-radius: 10px; font-size: 13.5px; font-weight: 800; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05); color: #c9d6e0;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.seg button:hover { border-color: rgba(255, 255, 255, 0.3); }
.seg button[aria-pressed="true"] { background: var(--green); color: #082814; border-color: var(--green); }
.jump {
  margin-left: auto; appearance: none; -webkit-appearance: none;
  padding: 9px 36px 9px 13px; border-radius: 10px; font-size: 13.5px; font-weight: 700; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05); color: #c9d6e0;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px; background-repeat: no-repeat;
  max-width: min(300px, 100%);
}
.jump option { background: #0e1a28; color: var(--ink); }

/* ------------------------------------------------------------------ rail -- */

.rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 8px; padding: 0 2px; }
.rail__item {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 10px; text-align: left; cursor: pointer;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--hairline-soft);
  transition: background 140ms ease, opacity 140ms ease;
}
.rail__item:hover { background: rgba(255, 255, 255, 0.09); }
.rail__item[aria-pressed="false"] { opacity: 0.4; }
.rail__dot { width: 14px; height: 14px; border-radius: 4px; flex: none; margin-top: 3px; background: var(--dot); }
.rail__text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.rail__title { font-size: 13px; font-weight: 800; color: #e9f1f6; }
.rail__sub { font-size: 12px; line-height: 1.4; font-weight: 500; color: var(--ink-muted); }
.rail__count { font-size: 12px; font-weight: 700; color: var(--ink-muted); padding-top: 2px; font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------ maps -- */

/* The two panels stretch to one height. A world map is twice as wide as it
   is tall, so the map is centred in the height it cannot fill and the legend
   rail sits beneath it inside the same panel, using the rest. */
.mapgrid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 18px; margin-top: 18px; align-items: stretch; }
.mapbox { position: relative; display: flex; flex-direction: column; gap: 12px; border-radius: 18px; background: var(--well); border: 1px solid rgba(255, 255, 255, 0.11); padding: 10px; overflow: hidden; }
.mapbox--tiles { padding: 16px; justify-content: space-between; }
.worldmap { width: 100%; height: auto; flex: 1 1 auto; min-height: 0; }
.mapbox .hint { padding: 0 4px 2px; }
.worldmap .sphere { fill: #0a1b2b; }
.worldmap .country { stroke: #050e19; stroke-width: 0.45; cursor: pointer; transition: opacity 140ms ease; }
.worldmap .country.dim { opacity: 0.14; }
.worldmap .country.sel { stroke: #fff; stroke-width: 1.5; }
.worldmap .hub { cursor: pointer; stroke: #fff; stroke-width: 1.4; transition: opacity 140ms ease; }
.worldmap .hub.dim { opacity: 0.14; }
.worldmap .hub.sel { stroke-width: 3; }
.worldmap .hub-ring { fill: none; stroke: rgba(255, 255, 255, 0.55); stroke-width: 1; pointer-events: none; }
.worldmap .hub-ring.dim { opacity: 0.14; }

.tooltip {
  position: absolute; pointer-events: none; z-index: 5; padding: 7px 11px; border-radius: 9px;
  background: rgba(6, 14, 24, 0.95); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--ink-head);
  font-size: 12.5px; font-weight: 800; white-space: nowrap; transform: translate(-50%, calc(-100% - 12px));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.tooltip small { display: block; font-weight: 600; color: var(--ink-muted); font-size: 11.5px; white-space: normal; max-width: 240px; }

.tiles { display: grid; grid-template-columns: repeat(11, 1fr); grid-template-rows: repeat(8, auto); gap: 5px; }
.tile {
  aspect-ratio: 1 / 1; border-radius: 6px; display: grid; place-items: center; font-size: 12px; font-weight: 800; cursor: pointer; border: 0;
  background: var(--fill); color: #08202c; transition: box-shadow 120ms ease, transform 120ms ease;
}
.tile--light { color: #c9d6e0; }
.tile--msiga { box-shadow: inset 0 0 0 2px var(--green); }
.tile:hover { transform: translateY(-1px); }
.tile--sel { box-shadow: 0 0 0 2px #fff; }
.tile--sel.tile--msiga { box-shadow: 0 0 0 2px #fff, inset 0 0 0 2px var(--green); }
.uslegend { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.uslegend span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink-dim); }
.uslegend i { width: 12px; height: 12px; border-radius: 3px; background: var(--dot); }
.uslegend i.ring { background: none; border: 2px solid var(--green); }

.detail { border-radius: 18px; padding: 20px; background: var(--glass); border: 1px solid var(--hairline); min-height: 420px; }
.detail--us { min-height: 380px; }
.detail__cat { display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #071018; background: var(--dot); }
.detail h3 { margin: 12px 0 2px; font-size: 23px; line-height: 1.15; }
.detail h3.first { margin-top: 0; margin-bottom: 4px; }
.detail__sub { font-size: 13.5px; line-height: 1.5; color: var(--green); font-weight: 700; }
.detail__rows { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.detail__row { display: flex; flex-direction: column; gap: 2px; }
.detail__k { font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.detail__v { font-size: 14px; line-height: 1.5; font-weight: 500; color: var(--ink-soft); overflow-wrap: anywhere; }
.detail__v--strong { font-weight: 600; color: #e1eaf1; }
.detail__note { font-size: 13px; line-height: 1.5; font-weight: 500; color: #93a9b8; }
.detail__v a { color: var(--teal); }
.provinces { margin-top: 14px; border-top: 1px solid var(--hairline-soft); padding-top: 12px; }
.provinces table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.provinces td { padding: 5px 6px 5px 0; vertical-align: top; border-bottom: 1px solid var(--hairline-soft); color: var(--ink-body); }
.provinces td:first-child { font-weight: 800; color: var(--ink-head); white-space: nowrap; }
.provinces td.cat { font-family: var(--font-mono); font-size: 11px; color: var(--teal); white-space: nowrap; }
.detail__empty { font-size: 14px; color: var(--ink-dim); }

/* ------------------------------------------------------------ pure poker -- */

.pure { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 16px; align-items: start; }
.pure .card { border-radius: 20px; }
.pure__side { display: flex; flex-direction: column; gap: 16px; }
.facts { display: flex; flex-direction: column; gap: 12px; }
.fact { display: flex; flex-direction: column; gap: 2px; }
.fact__k { font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.fact__v { font-size: 14px; line-height: 1.5; font-weight: 500; color: var(--ink-soft); }
.breaks { margin: 0; padding-left: 18px; font-size: 14.5px; line-height: 1.66; color: var(--ink-soft); font-weight: 500; }
.card--position { margin-top: 16px; border-radius: 20px; background: linear-gradient(158deg, rgba(150, 242, 169, 0.1), rgba(150, 242, 169, 0.03)); border: 1.5px solid rgba(150, 242, 169, 0.42); }
.card--position .h3--card { margin-bottom: 8px; }

/* ---------------------------------------------------------------- tables -- */

.tablewrap { overflow-x: auto; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(6, 20, 34, 0.5); }
.table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 820px; }
.table th { text-align: left; padding: 16px 16px 12px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); border-bottom: 1px solid rgba(255, 255, 255, 0.12); white-space: nowrap; }
.table td { padding: 16px; color: var(--ink-soft); border-bottom: 1px solid rgba(255, 255, 255, 0.07); vertical-align: top; line-height: 1.6; }
.table tr:last-child td { border-bottom: 0; }
.table .jur { font-weight: 800; color: #e1eaf1; white-space: nowrap; }
.jur__sub, .cell__sub { display: block; font-size: 12px; font-weight: 600; color: var(--ink-dim); white-space: normal; }
.cell__sub { font-size: inherit; font-weight: inherit; }
.row--pick td { background: rgba(150, 242, 169, 0.07); }
.table--wide { min-width: 1180px; font-size: 13px; }
.table--wide td:first-child { font-weight: 800; color: #e1eaf1; white-space: nowrap; }
.table--wide tr.is-pick td:first-child { color: var(--teal); }
.table--wide tr.is-focus td { background: rgba(84, 214, 203, 0.1); }
.table--wide tr.is-focus td:first-child { color: var(--green); }

.compare { margin-top: 28px; }
.compare .subhead { margin-top: 0; }
.compare__lead { margin: 8px 0 14px; font-size: 14.5px; color: var(--ink-dim); font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13.5px; font-weight: 800; line-height: 1.2; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #d5e0e8;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.chips button:hover { border-color: rgba(84, 214, 203, 0.5); color: var(--ink-head); }
.chips button[aria-pressed="true"] {
  background: var(--teal); color: #07241f; border-color: var(--teal);
}
.compare__hint { margin: 12px 2px 0; font-size: 13.5px; color: var(--ink-dim); font-weight: 600; }
.compare__panel { margin-top: 14px; }

/* ------------------------------------------------------------ responsive -- */

@media (max-width: 1100px) {
  .path {
    grid-template-columns: 18px 1fr;
    align-items: start;
    padding-left: 2px;
    border-left: 2px solid rgba(255, 255, 255, 0.14);
  }
  .stop, .path__fork { grid-column: 2; padding: 0; }
  .stop__dot { left: -24px; top: 6px; }
  .path__hop {
    grid-column: 2;
    justify-content: flex-start;
    padding: 2px 0 10px;
  }
  .path__hop--pair { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
  .path__fork { padding-left: 0; border-left: 0; gap: 22px; }
  .path__fork .stop:first-child .stop__dot,
  .path__fork .stop--malta .stop__dot { left: -24px; }
}

@media (max-width: 960px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { position: sticky; height: auto; flex-direction: row; align-items: center; gap: 14px; padding: 10px 14px; border-right: 0; border-bottom: 1px solid var(--hairline-soft); z-index: 20; overflow-x: auto; }
  .brand__sub { display: none; }
  .menu { flex-direction: row; gap: 4px; }
  .menu a { padding: 8px 12px; border-left: 0; border-bottom: 2px solid transparent; border-radius: 8px; white-space: nowrap; font-size: 14px; }
  .menu a.is-active { border-bottom-color: var(--teal); }
  .menu a em, .menu a svg { display: none; }
  .sidebar__mark { display: none; }
  .mapgrid { grid-template-columns: 1fr; }
  .hold td:nth-child(2) { width: auto; }
  .detail, .detail--us { min-height: 0; }
  .jump { margin-left: 0; }
  .pagehead__aside { text-align: left; }
}
@media (max-width: 560px) {
  .tile { font-size: 10px; border-radius: 4px; }
  .tiles { gap: 3px; }
  .hold thead { display: none; }
  .hold, .hold tbody, .hold tr, .hold td { display: block; width: auto; }
  .hold td { padding: 2px 0 6px; border-bottom: 0; }
  .hold td:first-child { width: auto; padding-bottom: 0; }
  .hold td:nth-child(2) { width: auto; padding-right: 0; }
  .hold tr { padding: 12px 0; border-bottom: 1px solid var(--hairline-soft); }
  .hold tr:last-child { border-bottom: 0; }
}
