/* ============================================================
   logistics.blap.dk — tactical dark ops-console showcase
   ============================================================ */

:root {
  --bg:        #0a0b0d;
  --bg-1:      #0e1014;
  --panel:     #12151c;
  --panel-2:   #181c25;
  --line:      #242a34;
  --line-2:    #353d4a;
  --text:      #ccd1d9;
  --text-dim:  #888f9c;
  --text-faint:#565d6a;
  --amber:     #d97706;
  --amber-2:   #f59e0b;
  --amber-glow:rgba(217, 119, 6, 0.55);
  --built:     #35d6a4;
  --ready:     #f59e0b;
  --planned:   #5d6470;
  --grid:      rgba(150, 162, 178, 0.035);

  --mono:    'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;
  --display: 'Saira Condensed', 'Arial Narrow', sans-serif;

  --wrap: 1180px;
  --pad: clamp(20px, 4vw, 48px);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 72px 72px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* dim amber console-glow behind the hero */
body::before {
  content: "";
  position: fixed;
  top: -24vh; left: 50%;
  width: 1200px; height: 760px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(217,119,6,0.12), transparent 64%);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--amber); color: #120a02; }

/* ============================ TOP BAR ============================ */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 13, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 56px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 13px; height: 13px;
  background: var(--amber);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--amber-glow);
}
.brand-name {
  font-family: var(--display);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.16em;
}
.brand-dim { color: var(--text-faint); }

.nav {
  display: flex; gap: 26px;
  margin-left: auto;
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--text-dim);
}
.nav a { position: relative; padding: 4px 0; transition: color 0.18s; }
.nav a:hover { color: var(--text); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--amber);
  transition: width 0.22s ease;
}
.nav a:hover::after { width: 100%; }

.sysflag {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.09em;
  color: var(--text-dim);
  border: 1px solid var(--line-2);
  padding: 6px 11px;
}
/* Base dot: always rendered. .pulse adds the live animation; */
/* #live-tick.live-tick--offline overrides the color to a muted tone. */
#live-tick {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber-2);
  vertical-align: middle;
  margin-left: 4px;
}
#live-tick.live-tick--offline {
  background: var(--text-dim);
  animation: none;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber-2);
  animation: pulse 2.1s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--amber-glow); }
  55%      { opacity: 0.45; box-shadow: 0 0 0 5px transparent; }
}

/* ============================ HERO ============================ */

.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 116px) var(--pad) clamp(40px, 6vw, 80px);
  scroll-margin-top: 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.kicker {
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--amber-2);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.1rem, 9.2vw, 7.1rem);
  line-height: 0.93;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.hero-title span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-dim);
}
.hero-sub {
  margin-top: 20px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--text-dim);
}
.hero-sub .tick { color: var(--amber); }

.invariant {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  padding: 15px 20px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  font-size: 12.5px; letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.inv-step b { color: var(--amber-2); font-weight: 600; }
.inv-arrow { color: var(--amber); font-size: 1.05rem; }

.hero-body {
  margin-top: 26px;
  max-width: 56ch;
  color: var(--text-dim);
  font-size: 14px;
}

/* hero readout panel */
.readout {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}
.readout-head {
  font-size: 11px; letter-spacing: 0.13em;
  color: var(--text-faint);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.stat {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: 2.6rem; line-height: 1;
  color: var(--text);
  min-width: 78px;
}
.stat-slash { color: var(--text-faint); margin: 0 1px; }
.stat-label { font-size: 12px; color: var(--text-dim); letter-spacing: 0.03em; }
.stat-label em { color: var(--text-faint); font-style: normal; }
.stat--accent .stat-num { color: var(--amber-2); }
/* Last-commit SHA: mono + smaller so a 7-char hash fits the readout column. */
.stat-num--commit {
  font-family: var(--mono); font-weight: 600;
  font-size: 1.15rem; letter-spacing: 0.01em;
}
.stat-commit-when { color: var(--text-faint); }

/* ============================ SECTIONS ============================ */

.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) var(--pad);
  scroll-margin-top: 64px;
}

.sec-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.sec-num {
  font-family: var(--mono); font-weight: 600;
  font-size: 13px; color: var(--amber);
  border: 1px solid var(--amber-dim, #6a3f0c);
  padding: 4px 9px;
}
.sec-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.sec-rule { flex: 1; height: 1px; background: var(--line-2); }
.sec-tag {
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--text-faint);
  white-space: nowrap;
}

/* ====================== 01 · HOW IT WORKS ====================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px 24px 28px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.step:hover {
  border-color: var(--line-2);
  background: var(--panel-2);
  transform: translateY(-3px);
}
.step-num {
  position: absolute; top: 10px; right: 14px;
  font-family: var(--display); font-weight: 700;
  font-size: 4.6rem; line-height: 1;
  color: #14181f;
}
.step-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.55rem; text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  position: relative;
}
.step-title::before {
  content: ""; display: block;
  width: 30px; height: 2px; background: var(--amber);
  margin-bottom: 14px;
}
.step p { font-size: 13.5px; color: var(--text-dim); position: relative; }
.step p b { color: var(--text); font-weight: 600; }

.scenario {
  position: relative;
  margin-top: 22px;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(125deg, rgba(217,119,6,0.06), transparent 42%),
    var(--panel);
  padding: 30px 32px;
}
.scenario::before, .scenario::after {
  content: ""; position: absolute; width: 15px; height: 15px;
}
.scenario::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--amber); border-left: 2px solid var(--amber);
}
.scenario::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--amber); border-right: 2px solid var(--amber);
}
.scenario-label {
  font-size: 11px; letter-spacing: 0.14em; color: var(--amber-2);
  margin-bottom: 10px;
}
.scenario-title {
  font-family: var(--display); font-weight: 600;
  font-size: 1.5rem; letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.scenario p { font-size: 14px; color: var(--text-dim); max-width: 86ch; }
.scenario .hl { color: var(--text); border-bottom: 1px solid var(--amber); }
.scenario b { color: var(--amber-2); font-weight: 600; }

/* ====================== 02 · ARCHITECTURE ====================== */

.legend {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-bottom: 22px;
  font-size: 12px; letter-spacing: 0.05em; color: var(--text-dim);
}
.lg { display: flex; align-items: center; gap: 8px; }

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--planned);
  flex: 0 0 auto;
}
.dot--built   { background: var(--built);   box-shadow: 0 0 8px rgba(53,214,164,0.6); }
.dot--ready   { background: var(--ready);   box-shadow: 0 0 8px var(--amber-glow); }
.dot--planned { background: var(--planned); }

.arch { display: flex; flex-direction: column; }

.layer {
  display: flex; align-items: stretch;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.2s;
}
.layer:hover { border-color: var(--line-2); }
.layer[data-s="active"] { border-color: #4a3a1c; }

.layer-tag {
  flex: 0 0 116px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.12em;
  color: var(--text-faint);
  background: var(--bg-1);
  border-right: 1px solid var(--line);
}
.layer[data-s="active"] .layer-tag { color: var(--amber-2); }

.layer-body { flex: 1; padding: 20px 24px; }
.layer-name {
  font-family: var(--display); font-weight: 600;
  font-size: 1.3rem; letter-spacing: 0.02em;
  color: var(--text);
}
.layer-desc { font-size: 13px; color: var(--text-dim); margin-top: 4px; }

.layer-badge {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px;
  align-self: center;
  padding: 0 22px;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--text-dim);
}

.connector { height: 30px; display: flex; justify-content: center; }
.connector span {
  width: 1px; background: var(--line-2); position: relative;
}
.connector span::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 5px; height: 5px;
  background: var(--amber);
  transform: translateX(-50%) rotate(45deg);
}

/* layer 3 — the nations */
.layer--l3 .layer-body { padding-bottom: 24px; }
.nations {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 16px;
}
.nation {
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.nation:hover { border-color: var(--line-2); transform: translateY(-2px); }
.nation--live { border-color: #4a3a1c; }
.nation-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.08em;
  padding-bottom: 11px; margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.nation-flag {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  color: var(--bg); background: var(--text-dim);
  padding: 2px 6px; letter-spacing: 0.05em;
}
.nation--live .nation-flag { background: var(--amber); }

.comp {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--text-dim);
  padding: 6px 0;
}
.comp .dot { background: var(--planned); }
.comp[data-s="built"]   { color: var(--text); }
.comp[data-s="built"]   .dot { background: var(--built); box-shadow: 0 0 8px rgba(53,214,164,0.55); }
.comp[data-s="ready"]   .dot { background: var(--ready); box-shadow: 0 0 8px var(--amber-glow); }
.comp[data-s="planned"] .dot { background: var(--planned); }

/* ====================== 03 · BUILD STATUS ====================== */

.status-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 18px;
}
.plan-list { list-style: none; }
.plan {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line);
  border-bottom: none;
  background: var(--panel);
  padding: 15px 20px;
  transition: background 0.18s, padding-left 0.18s;
}
.plan:last-child { border-bottom: 1px solid var(--line); }
.plan:hover { background: var(--panel-2); padding-left: 26px; }
.plan-no {
  font-family: var(--display); font-weight: 700;
  font-size: 1.5rem; color: var(--text-faint);
  min-width: 34px;
}
.plan[data-s="built"] .plan-no { color: var(--amber); }
.plan-name { flex: 1; font-size: 13.5px; }
.plan-badge {
  font-size: 10.5px; letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  color: var(--text-faint);
}
.plan[data-s="built"] .plan-badge {
  color: var(--built); border-color: rgba(53,214,164,0.35);
  background: rgba(53,214,164,0.07);
}

.components {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 20px;
}
.components-head {
  font-size: 11px; letter-spacing: 0.13em; color: var(--text-faint);
  padding-bottom: 13px; margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.comp--wide {
  justify-content: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.comp--wide:last-child { border-bottom: none; padding-bottom: 0; }
.comp-note {
  margin-left: auto;
  font-size: 11px; color: var(--text-faint); letter-spacing: 0.03em;
}

/* ====================== 04 · DEPLOYMENT ====================== */

.deploy {
  border: 1px solid var(--line);
  background: var(--panel);
}
.tree {
  font-family: var(--mono); font-size: 12.5px; line-height: 1.95;
  padding: 24px 26px;
  overflow-x: auto;
  color: var(--text-dim);
}
.tree-root { color: var(--text); font-weight: 600; }
.tree-line { display: block; }
.tg { color: var(--line-2); }
.td { color: var(--amber-2); }
.ds { letter-spacing: 0.04em; }
.ds--planned { color: var(--text-faint); }
.ds--live { color: var(--built); }
.deploy-note {
  border-top: 1px solid var(--line);
  padding: 18px 26px;
  font-size: 13px; color: var(--text-dim);
}

/* ============================ FOOTER ============================ */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 30px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-stack { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.footer-label {
  font-size: 11px; letter-spacing: 0.12em; color: var(--text-faint);
  margin-right: 4px;
}
.chip {
  font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 4px 10px;
}
.footer-meta { font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.03em; }

/* ============================ MOTION ============================ */

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: rise 0.72s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--d) * 90ms + 120ms);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; }
}

/* ============================ RESPONSIVE ============================ */

@media (max-width: 940px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; align-items: stretch; }
  .steps { grid-template-columns: 1fr; }
  .nations { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .layer { flex-direction: column; }
  .layer-tag {
    flex-basis: auto; padding: 8px 0;
    border-right: none; border-bottom: 1px solid var(--line);
  }
  .layer-badge { padding: 14px 24px; }
  .sec-tag { display: none; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4rem); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================ ACCESS GATE ============================ */

html:not(.authed) { overflow: hidden; }
.authed #gate { display: none; }

.gate {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 50% 36%, rgba(217,119,6,0.14), transparent 62%),
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  transition: opacity 0.35s ease;
}
.gate.gate--out { opacity: 0; }

.gate-panel {
  position: relative;
  width: min(440px, 100%);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 40px 38px 36px;
  text-align: center;
}
.gate-panel::before, .gate-panel::after {
  content: ""; position: absolute; width: 16px; height: 16px;
}
.gate-panel::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--amber); border-left: 2px solid var(--amber);
}
.gate-panel::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--amber); border-right: 2px solid var(--amber);
}
.gate-mark {
  display: inline-block; width: 15px; height: 15px;
  background: var(--amber); transform: rotate(45deg);
  box-shadow: 0 0 16px var(--amber-glow);
  margin-bottom: 22px;
}
.gate-kicker {
  font-size: 11px; letter-spacing: 0.15em; color: var(--amber-2);
  margin-bottom: 14px;
}
.gate-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.55rem; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.gate-sub {
  font-size: 12.5px; color: var(--text-dim);
  margin-bottom: 26px;
}
.gate-form { display: flex; flex-direction: column; gap: 10px; }
.gate-input {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-family: var(--mono); font-size: 14px;
  letter-spacing: 0.22em; text-align: center;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s;
}
.gate-input::placeholder { color: var(--text-faint); letter-spacing: 0.16em; }
.gate-input:focus { border-color: var(--amber); }
.gate-btn {
  width: 100%;
  background: var(--amber);
  color: #140a02;
  border: none;
  font-family: var(--mono); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 14px;
  cursor: pointer;
  transition: background 0.18s;
}
.gate-btn:hover { background: var(--amber-2); }
.gate-error {
  margin-top: 16px;
  font-size: 12px; color: #ef8164; letter-spacing: 0.03em;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-7px); }
  40%, 80% { transform: translateX(7px); }
}
.gate-panel.shake { animation: shake 0.4s ease; }

/* ====================== PROGRAMME — FIVE PHASES ====================== */

.phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  gap: 12px;
}
.phase {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.2s, transform 0.2s;
}
.phase:hover { border-color: var(--line-2); transform: translateY(-3px); }
.phase--active { border-color: #4a3a1c; }
.phase-week {
  font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--text-dim);
  background: #2b2f22;
  border-bottom: 1px solid var(--line);
  padding: 9px 15px;
}
.phase--active .phase-week { background: #4a3a1c; color: var(--amber-2); }
.phase-body { display: flex; flex-direction: column; flex: 1; padding: 16px 16px 18px; }
.phase-no {
  font-family: var(--display); font-weight: 700;
  font-size: 2.2rem; line-height: 1;
  color: var(--text-faint);
}
.phase--active .phase-no { color: var(--amber); }
.phase-title {
  font-family: var(--display); font-weight: 600;
  font-size: 1.2rem; letter-spacing: 0.02em;
  margin: 6px 0 10px;
}
.phase-desc { flex: 1; font-size: 12px; color: var(--text-dim); }
.phase-status {
  display: flex; align-items: center; gap: 7px;
  margin-top: 14px;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
}

.subhead { display: flex; align-items: center; gap: 14px; margin: 28px 0 16px; }
.subhead-bar { flex: 0 0 auto; width: 24px; height: 2px; background: var(--amber); }
.subhead-text { font-size: 11px; letter-spacing: 0.12em; color: var(--text-faint); }

.phase--done { border-color: #1f4f3f; }
.phase--done .phase-week { background: #1c3a30; color: var(--built); }
.phase--done .phase-no { color: var(--built); }

/* ============================ LIVE MAP ============================ */

.map-wrap {
  background: #fbfaf6;
  border: 1px solid var(--line-2);
  padding: clamp(16px, 2vw, 24px);
}
#theatre-map {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  background:
    radial-gradient(ellipse at center, #f2eee0 0%, #ebe6d3 100%);
}
#theatre-map .country {
  fill: #e4dcc6;
  stroke: #cfc4a6;
  stroke-width: 0.6;
  stroke-linejoin: round;
}
#theatre-map .country--active {
  fill: #f0d9a4;
  stroke: #b9853a;
  stroke-width: 1.1;
}
#theatre-map .plant {
  fill: var(--amber-2);
  stroke: #5b4116;
  stroke-width: 1;
  cursor: default;
  transition: r 120ms ease;
}
#theatre-map .plant:hover {
  fill: #f4a020;
}
#theatre-map .plant-label {
  font-family: var(--mono);
  font-size: 9px;
  fill: #5b4116;
  pointer-events: none;
}
#theatre-map .arrow {
  fill: none;
  stroke: var(--amber-2);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 1;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: arrow-draw 2.6s ease-out forwards, arrow-fade 6s 2.6s ease-in forwards;
}
@keyframes arrow-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes arrow-fade {
  to { opacity: 0; }
}
.map-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.55;
}

