/* ============================================================
   Changamuka — "Daybreak over the Copperbelt"
   Display: Bricolage Grotesque · Utility: IBM Plex Mono · Body: system-ui
   The page enacts dawn: a pre-dawn NIGHT hero breaks into warm DAYLIGHT.
   ============================================================ */

:root {
  /* Daybreak palette */
  --night:      #14110E;  /* pre-dawn, warm near-black */
  --dusk:       #211B16;  /* raised surface on dark */
  --bone:       #F4EEE2;  /* warm daylight paper */
  --bone-2:     #FBF8F1;  /* lightest day */
  --ink:        #1A1512;  /* text on light */
  --copper:     #B0432A;  /* croisette de cuivre — red copper, primary accent (fills) */
  --copper-deep:#8A3219;  /* red copper for text/links on light */
  --ember:      #DB6242;  /* bright red copper — highlight / "lit" accent */
  --signal:     #109383;  /* verdigris (copper patina) — text on light */
  --signal-br:  #2BD9C0;  /* verdigris — dot on dark */
  --mist:       #B9AE9E;  /* muted text on dark */
  --stone:      #6F6557;  /* muted text on light */
  --line-dark:  rgba(244,238,226,0.14);
  --line-light: #E4DBC9;

  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1160px;
  --pad: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--bone-2);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--copper-deep); text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* Mono utility label used throughout (eyebrows, tags, telemetry) */
.mono {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- System bar (sticky app-chrome) ---------- */
.systembar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,241,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
  color: var(--ink);
}
.systembar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 60px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand img { width: 26px; height: 26px; color: var(--ink); }
.brand b { font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--stone); font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; }
.nav-links a:hover { color: var(--copper-deep); }
.sys-right { display: flex; align-items: center; gap: 16px; }
.langtoggle { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; display: flex; gap: 7px; align-items: center; }
.langtoggle a { color: var(--stone); }
.langtoggle a:hover { color: var(--copper-deep); }
.langtoggle a.active { color: var(--ink); }
.langtoggle .sep { color: var(--stone); opacity: 0.4; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: transform .14s, background .14s, border-color .14s, color .14s;
}
.btn:hover { transform: translateY(-2px); }
.btn-copper { background: var(--copper); color: var(--bone); }
.btn-copper:hover { background: var(--ember); color: #2A1107; }
.btn-line-d { background: transparent; color: var(--bone); border-color: var(--line-dark); }
.btn-line-d:hover { border-color: var(--ember); color: var(--ember); }
.btn-line-l { background: transparent; color: var(--ink); border-color: var(--line-light); }
.btn-line-l:hover { border-color: var(--copper); color: var(--copper-deep); }
.btn-signal { background: var(--signal); color: #04231F; }
.btn-signal:hover { filter: brightness(1.08); }

/* ---------- Generic section rhythm ---------- */
.section { padding-block: clamp(64px, 9vw, 116px); }
.section-night { background: var(--night); color: var(--bone); }
.section-day { background: var(--bone); color: var(--ink); }
.section-day-2 { background: var(--bone-2); color: var(--ink); }

.eyebrow { color: var(--ember); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.section-day .eyebrow, .section-day-2 .eyebrow { color: var(--copper-deep); }

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.025em; line-height: 1.02; margin: 0; }

.headline { font-weight: 800; font-size: clamp(2.6rem, 6.4vw, 5.1rem); }
.h2 { font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.04; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--mist); max-width: 52ch; }
.section-day .lede, .section-day-2 .lede { color: var(--stone); }

/* ---------- HERO (daylight) ---------- */
.hero { position: relative; overflow: hidden; background: var(--bone-2); color: var(--ink); }
/* soft warm copper wash behind the dashboard */
.hero::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 80%;
  background: radial-gradient(120% 90% at 80% 110%, rgba(219,98,66,0.13), rgba(198,107,61,0.06) 45%, transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; padding-block: clamp(64px, 11vw, 132px); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.hero .eyebrow { color: var(--copper-deep); }
.hero h1 { margin-bottom: 26px; }
.hero h1 .lit { color: var(--copper); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.kicker { color: var(--stone); }
.kicker b { color: var(--ink); font-weight: 600; }

/* Telemetry strip — capabilities readout (honest claims, mono) */
.telemetry {
  margin-top: 40px; border: 1px solid var(--line-light); border-radius: 10px;
  background: rgba(255,255,255,0.6);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.telemetry div {
  padding: 14px 16px; border-right: 1px solid var(--line-light);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--stone); text-transform: uppercase;
}
.telemetry div:last-child { border-right: 0; }
.telemetry b { display: block; color: var(--ink); font-weight: 500; margin-top: 4px; letter-spacing: 0.06em; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: var(--signal-br); box-shadow: 0 0 0 3px rgba(43,217,192,0.18); }
.live { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Hero side: the live dashboard on every screen — a desktop window with the phone in front */
.device { position: relative; min-height: 430px; display: grid; place-items: center; }
.device::before { content: ""; position: absolute; width: 82%; height: 64%; border-radius: 50%; background: radial-gradient(circle, rgba(219,98,66,0.22), transparent 70%); filter: blur(26px); }
@keyframes floatup { from { transform: translateY(26px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Stage holds the browser + the overlapping phone */
.stage { position: relative; width: 100%; max-width: 480px; }

/* Desktop / browser window */
.browser {
  width: 100%; background: #0C0A08; border: 1px solid rgba(244,238,226,0.08);
  border-radius: 14px; overflow: hidden; box-shadow: 0 34px 70px rgba(0,0,0,0.5);
  animation: floatup 0.7s cubic-bezier(.2,.8,.2,1) both;
}
.chrome { display: flex; align-items: center; gap: 12px; padding: 11px 14px; }
.chrome .lights { display: inline-flex; gap: 6px; }
.chrome .lights i { width: 9px; height: 9px; border-radius: 50%; }
.chrome .lights i:nth-child(1) { background: var(--copper); }
.chrome .lights i:nth-child(2) { background: var(--ember); }
.chrome .lights i:nth-child(3) { background: var(--signal); }
.chrome .url { flex: 1; text-align: center; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.04em; color: var(--mist); background: rgba(244,238,226,0.06); padding: 4px 12px; border-radius: 999px; }
.b-body { background: var(--bone-2); padding: 18px; }
.b-body .dots { margin-top: 16px; }
.browser .kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.browser .kpi { display: block; border: 1px solid var(--line-light); border-radius: 10px; padding: 11px 12px; }
.browser .kpi .l { display: block; font-size: 0.66rem; }
.browser .kpi .v { display: block; font-size: 1.22rem; margin: 5px 0 3px; }
.browser .kpi .t { font-size: 0.6rem; }
.browser .spark svg { height: 62px; }

/* Phone, overlapping in front (lower-right) */
.phone {
  position: absolute; right: -13%; bottom: -10%; width: 156px; z-index: 4;
  background: #0C0A08; border: 1px solid rgba(244,238,226,0.10);
  border-radius: 26px; padding: 8px;
  box-shadow: -10px 26px 54px rgba(0,0,0,0.62);
  animation: floatup 0.7s cubic-bezier(.2,.8,.2,1) .12s both;
}
.phone .app-bar { margin-bottom: 9px; }
.phone .app-bar .nm { font-size: 0.78rem; }
.phone .live-txt { display: none; } /* the phone shows just the green live dot, never the wording */
.phone .live-pill { background: transparent; padding: 0; gap: 0; }
.phone .live-pill i { width: 9px; height: 9px; box-shadow: 0 0 0 3px rgba(16,147,131,0.16); }
.phone .kpi { padding: 6px 0; gap: 5px; }
.phone .kpi .l { font-size: 0.6rem; }
.phone .kpi .v { font-size: 0.82rem; }
.phone .kpi .v em { font-size: 0.54rem; }
.phone .kpi .t { font-size: 0.5rem; }
.phone .spark { margin: 9px 0 1px; }
.phone .spark svg { height: 30px; }
.phone .insight { display: none; } /* shown only on mobile, where the phone is the main dashboard */
.screen { background: var(--bone-2); border-radius: 19px; padding: 11px 11px; color: var(--ink); display: flex; flex-direction: column; }
.dash { display: flex; flex-direction: column; flex: 1; transition: opacity .26s ease, transform .26s ease; will-change: opacity; }
.app-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.app-bar .nm { font-family: var(--display); font-weight: 800; font-size: 0.96rem; letter-spacing: -0.02em; }
.live-pill { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--signal); background: rgba(16,147,131,0.12); padding: 4px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); display: inline-block; }
.kpi { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: baseline; padding: 9px 0; border-top: 1px solid var(--line-light); }
.kpi:first-of-type { border-top: 0; }
.kpi .l { font-size: 0.72rem; color: var(--stone); }
.kpi .v { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.kpi .v em { font-style: normal; font-family: var(--body); font-size: 0.66rem; color: var(--stone); margin-left: 2px; }
.kpi .t { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.04em; white-space: nowrap; }
.t-up { color: var(--signal); }
.t-down { color: var(--copper-deep); }
.t-flat { color: var(--stone); }
.spark { margin: 14px 0; }
.spark svg { width: 100%; height: 52px; display: block; }
.insight { background: var(--bone); border: 1px solid var(--line-light); border-radius: 11px; padding: 9px 11px; }
.insight .ai { display: block; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--signal); margin-bottom: 3px; }
.insight p { margin: 0; font-size: 0.74rem; line-height: 1.42; color: var(--ink); }
.insight b { color: var(--copper-deep); }
.insight { margin-top: auto; }
/* carousel transition: a consistent left-to-right sweep — old fades out to the right,
   new fades in from the left. Content swaps while invisible, so no flash. */
.dash.out { opacity: 0; transform: translateX(18px); }   /* exits moving right */
.dash.in  { opacity: 0; transform: translateX(-18px); }  /* start: off to the left, invisible */
.dash.no-trans { transition: none; }                     /* used to jump to the start without animating */
.dots { display: flex; gap: 5px; justify-content: center; margin-top: 14px; }
.dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--line-light); transition: width .3s, background .3s; }
.dots span.on { width: 15px; border-radius: 3px; background: var(--copper); }

/* ---------- DAWN BREAK divider (night -> day) ---------- */
.daybreak { background: linear-gradient(180deg, var(--night) 0%, #5C3322 56%, var(--bone) 100%); height: clamp(90px, 14vw, 168px); position: relative; }
.daybreak::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 38%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember) 30%, var(--signal-br) 70%, transparent);
  opacity: 0.7;
}

/* ---------- WHAT WE DO (day) ---------- */
.statement { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.18; letter-spacing: -0.02em; max-width: 24ch; }
.statement em { font-style: normal; color: var(--copper-deep); }
.def { font-family: var(--mono); font-size: 0.82rem; color: var(--stone); letter-spacing: 0.02em; line-height: 1.7; max-width: 40ch; }
.def .ipa { color: var(--copper-deep); }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: start; }

/* ---------- CAPABILITIES — editorial three-row block ---------- */
.caps { border-top: 1px solid var(--line-light); }
.cap { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: clamp(20px, 4vw, 56px); align-items: start; padding-block: clamp(26px, 4vw, 44px); border-bottom: 1px solid var(--line-light); }
.cap .clabel { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper-deep); padding-top: 6px; }
.cap h3 { font-size: clamp(1.4rem, 2.6vw, 2.05rem); font-weight: 700; margin-bottom: 12px; }
.cap p { margin: 0; color: var(--stone); max-width: 56ch; font-size: 1.05rem; }
.cap p b { color: var(--ink); font-weight: 600; }

/* ---------- PLATFORMS (day) ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head p { margin: 12px 0 0; }
.platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: 16px; overflow: hidden; }
.platform { background: var(--bone); padding: clamp(24px, 3vw, 36px); transition: background .18s; }
.platform:hover { background: var(--bone-2); }
.platform .tag { color: var(--copper-deep); margin-bottom: 22px; }
.platform h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.platform p { margin: 0; color: var(--stone); font-size: 0.98rem; }
.platform .targets { margin-top: 18px; font-family: var(--mono); font-size: 0.72rem; color: var(--stone); letter-spacing: 0.06em; }

/* ---------- OPERATING CONDITIONS — the signature spec table (day-2) ---------- */
.spec { border: 1px solid var(--line-light); border-radius: 16px; overflow: hidden; background: var(--bone-2); }
.spec-row { display: grid; grid-template-columns: 0.9fr 1.1fr auto; gap: 24px; align-items: center; padding: 22px clamp(20px, 3vw, 32px); border-top: 1px solid var(--line-light); }
.spec-row:first-child { border-top: 0; }
.spec-cond { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink); text-transform: uppercase; }
.spec-cond span { display: block; color: var(--stone); text-transform: none; letter-spacing: 0.02em; margin-top: 4px; font-size: 0.76rem; }
.spec-behavior { color: var(--ink); font-size: 1.02rem; }
.spec-behavior b { color: var(--copper-deep); }
.spec-status { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--signal); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.spec-status .pin { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); }

/* ---------- THE NAME / values (night, the brief restated) ---------- */
.meanings { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.meaning { border-top: 2px solid var(--copper); padding-top: 20px; }
.meaning .sw { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--bone); }
.meaning .en { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ember); margin: 6px 0 12px; }
.meaning p { margin: 0; color: var(--mist); font-size: 0.98rem; }

/* ---------- CONTACT (full day) ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.contact-grid h2 { margin-bottom: 16px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cardlet { border: 1px solid var(--line-light); border-radius: 16px; padding: 24px; background: var(--bone-2); }
.cardlet dt { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.cardlet dd { margin: 4px 0 18px; font-size: 0.98rem; color: var(--ink); }
.cardlet dd:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.foot { background: var(--bone); color: var(--stone); padding-block: 52px; border-top: 1px solid var(--line-light); }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.foot-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.foot-links a { color: var(--stone); font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.04em; }
.foot-links a:hover { color: var(--copper-deep); }
.foot-meta { margin-top: 30px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--stone); }
.foot-meta .hue { color: var(--copper); }

/* ---------- Legal pages ---------- */
.legal { background: var(--bone); color: var(--ink); padding-block: clamp(48px, 7vw, 88px); }
.legal .wrap { max-width: 760px; }
.legal h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal .updated { font-family: var(--mono); font-size: 0.78rem; color: var(--stone); margin: 0 0 40px; }
.legal h2 { font-weight: 700; font-size: 1.35rem; margin-top: 40px; margin-bottom: 8px; }
.legal p, .legal li { color: #3A332C; }
.legal a { color: var(--copper-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 404 ---------- */
.notfound { background: var(--bone); color: var(--ink); min-height: 72vh; display: grid; place-items: center; text-align: center; }
.notfound .code { font-family: var(--mono); color: var(--copper-deep); letter-spacing: 0.2em; }
.notfound h2 { font-weight: 800; font-size: clamp(2rem, 6vw, 3.4rem); margin: 14px 0; }
.notfound p { color: var(--mist); max-width: 44ch; margin: 0 auto 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  /* Mobile hero: reorder so the dashboard sits right under the headline (above the fold) */
  .hero .wrap { padding-block: 18px 30px; }
  .hero-grid { display: flex; flex-direction: column; gap: 14px; }
  .hero-grid > div:not(.device) { display: contents; }
  .hero .eyebrow { order: 1; align-self: flex-start; margin-bottom: 0; }
  .headline { order: 2; font-size: 2.05rem; line-height: 1.07; margin-bottom: 2px; }
  .hero .lede { order: 4; }
  .hero-actions { order: 5; }
  .telemetry { order: 6; }
  /* Mobile: drop the desktop browser frame, show the phone mockup (carousel still live) */
  .device { display: grid; min-height: 0; margin: 4px 0 0; order: 3; }
  .browser { display: none; }
  .stage { max-width: none; display: grid; place-items: center; }
  .phone {
    position: static; width: min(262px, 76%); margin: 0 auto;
    border-radius: 34px; padding: 11px; box-shadow: 0 26px 54px rgba(0,0,0,0.5);
  }
  .phone .screen { padding: 13px 13px; border-radius: 23px; }
  .phone .app-bar { margin-bottom: 11px; }
  .phone .app-bar .nm { font-size: 0.92rem; }
  .phone .live-pill { font-size: 0.58rem; padding: 4px 9px; gap: 5px; }
  .phone .live-pill i { width: 6px; height: 6px; }
  .phone .kpi { padding: 6px 0; gap: 8px; }
  .phone .kpi .l { font-size: 0.72rem; }
  .phone .kpi .v { font-size: 1rem; }
  .phone .kpi .v em { font-size: 0.64rem; }
  .phone .kpi .t { font-size: 0.6rem; }
  .phone .spark { margin: 10px 0; }
  .phone .spark svg { height: 38px; }
  .phone .insight { display: block; margin-top: 5px; }
  .phone .insight p { font-size: 0.72rem; }
  /* mobile: slightly larger green live dot */
  .phone .live-pill i { width: 12px; height: 12px; box-shadow: 0 0 0 4px rgba(16,147,131,0.16); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .platforms, .meanings { grid-template-columns: 1fr; }
  .telemetry { grid-template-columns: 1fr 1fr; }
  .telemetry div:nth-child(2) { border-right: 0; }
  .spec-row { grid-template-columns: 1fr; gap: 10px; }
  .spec-status { justify-self: start; }
  .nav-links, .sys-right .btn { display: none; }
  .nav-toggle { display: block; }
  .cap { grid-template-columns: 1fr; gap: 10px; }
  .systembar.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bone-2); border-bottom: 1px solid var(--line-light); padding: 16px var(--pad) 22px;
  }
  .systembar.open .nav-links a { padding: 8px 0; }
}

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

:focus-visible { outline: 2px solid var(--signal-br); outline-offset: 3px; border-radius: 2px; }
