/* ============ UCC MINI APPS · NETWORK CONSOLE ============ */
:root {
  --bg: #04060f;
  --panel: rgba(8, 14, 30, 0.72);
  --text: #d9f2ff;
  --muted: #7b90ab;
  --cyan: #35e6ff;
  --magenta: #ff3df0;
  --purple: #a86bff;
  --green: #35ffae;
  --blue: #4d8dff;
  --yellow: #ffd23d;
  --red: #ff4d6d;
  --border: rgba(53, 230, 255, 0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "SF Mono", ui-monospace, "Consolas", monospace;
  overflow-x: hidden;
  padding-bottom: 70px; /* room for footer + ticker */
}
b { font-weight: 600; }
.ok { color: var(--green); }

/* ---------- background layers ---------- */
#bg { position: fixed; inset: 0; z-index: 0; }
.grid-overlay {
  position: fixed; inset: -10%; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(53,230,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53,230,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 35%, #000 25%, transparent 80%);
  animation: gridZoom 16s ease-in-out infinite;
}
@keyframes gridZoom {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.1); opacity: 0.7; }
}
.scanlines {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.13) 0 1px, transparent 2px 4px);
  animation: scan 9s linear infinite;
}
@keyframes scan { to { background-position-y: 100px; } }
.sweep {
  position: fixed; top: 0; left: -30%; width: 30%; height: 100%; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(168,107,255,0.05), transparent);
  animation: sweep 7s ease-in-out infinite;
}
@keyframes sweep { 0%{left:-30%;} 50%{left:100%;} 100%{left:100%;} }

/* ---------- status bar ---------- */
.statusbar {
  position: relative; z-index: 5;
  display: flex; flex-wrap: wrap; gap: 4px 26px; align-items: center;
  padding: 9px 18px;
  background: rgba(4, 8, 18, 0.9);
  border-bottom: 1px solid var(--border);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--muted); text-transform: uppercase;
}
.statusbar__item--brand { color: var(--cyan); text-shadow: 0 0 10px rgba(53,230,255,0.6); }
.statusbar__item--time { margin-left: auto; color: var(--text); font-variant-numeric: tabular-nums; }

/* ---------- 3-column frame ---------- */
.frame {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr) 264px;
  gap: 18px;
  padding: 20px 18px 0;
  max-width: 1560px; margin: 0 auto;
}
.col { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

/* ---------- panels ---------- */
.panel {
  position: relative;
  border: 1px solid var(--pc, var(--border));
  background: var(--panel);
  backdrop-filter: blur(5px);
  padding: 14px 14px 16px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  box-shadow: 0 0 18px color-mix(in srgb, var(--pc, var(--cyan)) 12%, transparent) inset;
}
.panel--cyan    { --pc: rgba(53,230,255,0.4); }
.panel--magenta { --pc: rgba(255,61,240,0.4); }
.panel--purple  { --pc: rgba(168,107,255,0.4); }
.panel--green   { --pc: rgba(53,255,174,0.4); }
.panel--blue    { --pc: rgba(77,141,255,0.4); }
.panel__title {
  margin: 0 0 12px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: color-mix(in srgb, var(--pc, var(--cyan)) 90%, white 30%);
  display: flex; align-items: center; gap: 8px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

/* ---------- left column content ---------- */
#worldMap { display: block; width: 100%; height: auto; }
.worldlegend {
  display: flex; gap: 14px; margin-top: 8px; font-size: 9px;
  letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase;
}
.worldlegend span { display: flex; align-items: center; gap: 5px; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot--cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.dot--green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.dot--magenta { background: var(--magenta); box-shadow: 0 0 6px var(--magenta); }

.bignum { margin: 2px 0 12px; }
.bignum span { font-size: 30px; letter-spacing: 0.04em; color: var(--green); text-shadow: 0 0 14px rgba(53,255,174,0.5); }
.bignum small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; letter-spacing: 0.08em; }

.bars { display: flex; flex-direction: column; gap: 9px; font-size: 11px; }
.bar__label { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 3px; letter-spacing: 0.04em; }
.bar__label b { color: var(--text); }
.bar__track { height: 6px; background: rgba(123,144,171,0.15); overflow: hidden; }
.bar__fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 8px rgba(53,255,174,0.6);
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.events { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.events li { display: flex; gap: 10px; align-items: center; }
.datebox {
  flex-shrink: 0; width: 42px; text-align: center;
  border: 1px solid rgba(168,107,255,0.5); padding: 4px 0;
  color: var(--purple); line-height: 1.15;
}
.datebox b { display: block; font-size: 15px; }
.datebox small { font-size: 9px; letter-spacing: 0.12em; }

/* ---------- centre ---------- */
.hero { text-align: center; padding: 6px 0 2px; }
.hero__title {
  margin: 0; font-size: clamp(30px, 4.6vw, 54px);
  letter-spacing: 0.24em; white-space: nowrap;
  color: var(--text);
  text-shadow:
    0 0 12px rgba(255,61,240,0.55),
    0 0 34px rgba(255,61,240,0.3),
    0 0 60px rgba(53,230,255,0.25);
  animation: flicker 6s infinite;
}
@keyframes flicker { 0%,18%,20%,52%,54%,100% { opacity: 1; } 19%,53% { opacity: 0.75; } }
.hero__sub {
  margin: 6px 0 0; font-size: 12px; letter-spacing: 0.5em;
  color: var(--cyan); text-transform: uppercase;
}
.hero__type { margin: 10px 0 0; min-height: 18px; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.cursor { display: inline-block; width: 8px; background: var(--cyan); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* search + chips */
.finder { margin: 16px auto 14px; max-width: 720px; }
.finder__search {
  width: 100%; padding: 11px 16px; font: inherit; font-size: 13px;
  color: var(--text); letter-spacing: 0.06em;
  background: rgba(6,12,26,0.85); border: 1px solid var(--border); outline: none;
}
.finder__search:focus { border-color: var(--cyan); box-shadow: 0 0 16px rgba(53,230,255,0.25); }
.finder__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; justify-content: center; }
.chip {
  font: inherit; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; cursor: pointer;
  color: var(--muted); background: transparent;
  border: 1px solid rgba(123,144,171,0.35);
  transition: all 0.15s ease;
}
.chip:hover, .chip:focus-visible { color: var(--text); border-color: var(--cyan); }
.chip.active {
  color: var(--cc, var(--cyan));
  border-color: var(--cc, var(--cyan));
  box-shadow: 0 0 12px color-mix(in srgb, var(--cc, var(--cyan)) 40%, transparent);
}

/* app cards: category colour via --cc */
.apps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px; margin: 0 auto;
  perspective: 1400px;
  perspective-origin: 50% 40%;
}
@media (min-width: 1700px) { .apps { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1200px; } }
.apps.compact { gap: 12px; }

.cat-label {
  grid-column: 1 / -1; margin: 8px 0 0;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px dashed rgba(123,144,171,0.25); padding-bottom: 5px;
}

.card {
  --cc: var(--cyan);
  position: relative; display: flex; gap: 14px; padding: 18px;
  border: 1px solid color-mix(in srgb, var(--cc) 40%, transparent);
  background: rgba(7, 15, 30, 0.66);
  backdrop-filter: blur(4px);
  color: inherit; text-align: left; font: inherit; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.apps.compact .card { padding: 13px 14px; gap: 11px; }
.card:focus-visible { outline: 2px solid var(--cc); outline-offset: 3px; }
.card::before, .card::after {
  content: ""; position: absolute; width: 13px; height: 13px;
  border: 2px solid var(--cc); opacity: 0.7;
}
.card::before { top: 5px; left: 5px; border-right: 0; border-bottom: 0; }
.card::after  { bottom: 5px; right: 5px; border-left: 0; border-top: 0; }
.card:hover, .card:focus-visible {
  background: rgba(10, 22, 42, 0.86);
  box-shadow: 0 0 30px color-mix(in srgb, var(--cc) 55%, transparent),
              0 20px 60px rgba(0,0,0,0.5),
              0 0 90px color-mix(in srgb, var(--cc) 20%, transparent);
  transform: translateZ(70px) scale(1.05);
  z-index: 20;
}
.card:hover .card__icon, .card:focus-visible .card__icon {
  transform: translateZ(70px) translateY(-6px) rotateY(8deg);
  transition: transform 0.28s ease;
}
.card:hover .card__title, .card:focus-visible .card__title,
.card:hover .card__desc, .card:focus-visible .card__desc { transform: translateZ(38px); }
.card:hover .card__cta, .card:focus-visible .card__cta { transform: translateZ(48px); }
.card--soon { cursor: default; opacity: 0.55; }
.card .glare {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), color-mix(in srgb, var(--cc) 22%, transparent), transparent 55%);
  transition: opacity 0.2s ease;
}
.card:hover .glare { opacity: 1; }
.card__icon {
  font-size: 24px; width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid color-mix(in srgb, var(--cc) 45%, transparent);
  background: color-mix(in srgb, var(--cc) 8%, transparent);
  transform: translateZ(28px);
}
.apps.compact .card__icon { width: 38px; height: 38px; font-size: 19px; }
.card__body { flex: 1; min-width: 0; transform: translateZ(14px); transition: transform 0.28s ease; }
.card__cta {
  position: absolute; right: 16px; bottom: 12px;
  font-size: 11px; letter-spacing: 0.14em; color: var(--cc);
  transition: transform 0.28s ease;
}
.card__toprow { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card__title { margin: 0; font-size: 14px; letter-spacing: 0.06em; transition: transform 0.28s ease; }
.apps.compact .card__title { font-size: 12.5px; }
.card__desc { margin: 7px 0 26px; font-size: 12px; color: var(--muted); line-height: 1.55; transition: transform 0.28s ease; }
.apps.compact .card__desc { font-size: 11px; margin-bottom: 22px; }
.badge {
  font-size: 9px; padding: 3px 7px; font-weight: 700; letter-spacing: 0.14em;
  border: 1px solid; flex-shrink: 0;
}
.badge--live { color: var(--green); border-color: rgba(53,255,174,0.55); box-shadow: 0 0 9px rgba(53,255,174,0.3); }
.badge--soon { color: var(--muted); border-color: rgba(123,144,171,0.45); }

/* status filter row (Live / Soon) sits above the category chips */
.finder__status { display: flex; gap: 8px; margin-top: 10px; justify-content: center; }
.status-chip {
  font: inherit; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 14px; cursor: pointer;
  color: var(--muted); background: transparent; border: 1px solid rgba(123,144,171,0.35);
  transition: all 0.15s ease;
}
.status-chip:hover, .status-chip:focus-visible { color: var(--text); border-color: var(--cyan); }
.status-chip.active { color: var(--green); border-color: var(--green); box-shadow: 0 0 12px rgba(53,255,174,0.35); }
.status-chip[data-status="soon"].active { color: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 12px rgba(255,210,61,0.35); }

/* quick stats strip */
.glance { margin-top: 20px; }
.glance__row { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: space-between; }
.glance__row div { text-align: center; flex: 1; min-width: 100px; }
.glance__row b { display: block; font-size: 22px; color: var(--cyan); text-shadow: 0 0 12px rgba(53,230,255,0.5); }
.glance__row span { font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }

/* ---------- right column ---------- */
#globe { display: block; margin: 0 auto; }
.netstats { display: flex; justify-content: space-between; margin-top: 8px; text-align: center; }
.netstats b { display: block; font-size: 19px; color: var(--magenta); text-shadow: 0 0 12px rgba(255,61,240,0.5); }
.netstats span { font-size: 9px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.health { display: flex; flex-direction: column; gap: 9px; font-size: 11px; }
.health .bar__fill { background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 8px rgba(77,141,255,0.6); }

/* moving heatmap: one row of cells per service */
.heatmap { display: flex; flex-direction: column; gap: 6px; }
.heat-row { display: grid; grid-template-columns: 96px 1fr 40px; align-items: center; gap: 8px; font-size: 10.5px; }
.heat-row__label { color: var(--muted); letter-spacing: 0.04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.heat-row__cells { display: flex; gap: 2px; }
.heat-cell {
  flex: 1; height: 12px; border-radius: 1px;
  background: rgba(77,141,255,0.12);
  transition: background 0.6s ease, box-shadow 0.6s ease;
}
.heat-row__val { text-align: right; color: var(--text); font-variant-numeric: tabular-nums; }

.announce { list-style: none; margin: 0; padding: 0; font-size: 11.5px; line-height: 1.5; }
.announce li { padding: 6px 0; border-bottom: 1px dashed rgba(123,144,171,0.2); display: flex; gap: 8px; }
.announce li::before { content: "▣"; color: var(--green); font-size: 10px; margin-top: 1px; }

/* ---------- bottom row ---------- */
.bottomrow {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 2fr 1fr; gap: 18px;
  max-width: 1560px; margin: 18px auto 0; padding: 0 18px;
}
.news { list-style: none; margin: 0; padding: 0; font-size: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 22px; }
.news--stack { grid-template-columns: 1fr; gap: 4px; }
.news li { display: flex; gap: 8px; padding: 4px 0; border-bottom: 1px dashed rgba(123,144,171,0.18); }
.news li::before { content: ">"; color: var(--purple); }
.news a { color: var(--text); text-decoration: none; transition: color 0.15s ease; }
.news a:hover, .news a:focus-visible { color: var(--cyan); text-shadow: 0 0 8px rgba(53,230,255,0.5); }
.bottomrow--single { grid-template-columns: 1fr; }
.quote__text { margin: 0; font-size: 13px; line-height: 1.7; color: var(--text); font-style: italic; }

/* ---------- footer + ticker ---------- */
.footerbar {
  position: relative; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 6px 28px; justify-content: center;
  padding: 16px 18px 12px; margin-top: 10px;
  font-size: 10px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase;
}
.ticker {
  position: fixed; left: 0; right: 0; bottom: 0; height: 32px; z-index: 6;
  background: rgba(3,8,18,0.92); border-top: 1px solid var(--border);
  overflow: hidden; display: flex; align-items: center;
}
.ticker__inner {
  display: inline-flex; white-space: nowrap; gap: 48px;
  font-size: 11px; color: rgba(53,230,255,0.65); letter-spacing: 0.06em;
  animation: tick 42s linear infinite;
  padding-left: 100%;
}
@keyframes tick { to { transform: translateX(-100%); } }
.ticker__inner b { color: var(--green); font-weight: 400; }
.ticker__inner i { color: var(--magenta); font-style: normal; }

.sound {
  position: fixed; right: 14px; bottom: 42px; z-index: 7;
  font: inherit; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); background: rgba(6,14,28,0.85); border: 1px solid var(--border);
  padding: 7px 12px; cursor: pointer;
}
.sound:hover, .sound:focus-visible { background: rgba(53,230,255,0.12); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 88px; transform: translateX(-50%) translateY(16px);
  z-index: 70; padding: 11px 22px;
  background: rgba(6,16,30,0.95); border: 1px solid var(--cyan);
  color: var(--cyan); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 0 24px rgba(53,230,255,0.3);
  opacity: 0; visibility: hidden; transition: all 0.25s ease;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---------- access gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center;
  background: rgba(2,5,12,0.82); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease;
}
.gate.open { opacity: 1; visibility: visible; }
.gate__panel {
  width: min(380px, 90vw); padding: 28px 26px 24px;
  border: 1px solid var(--border); background: rgba(7,16,32,0.94);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 0 40px rgba(255,61,240,0.15), 0 0 40px rgba(53,230,255,0.15);
  text-align: center;
  transform: translateY(8px); transition: transform 0.25s ease;
}
.gate.open .gate__panel { transform: translateY(0); }
.gate__title { font-size: 12px; letter-spacing: 0.35em; color: var(--magenta); text-transform: uppercase; margin: 0 0 6px; }
.gate__app { font-size: 15px; letter-spacing: 0.08em; margin: 0 0 18px; }
.gate__input {
  width: 100%; padding: 11px 14px; font: inherit; font-size: 14px;
  color: var(--text); letter-spacing: 0.2em; text-align: center;
  background: rgba(3,9,20,0.9); border: 1px solid var(--border); outline: none;
  transition: all 0.2s ease;
}
.gate__input:focus { border-color: var(--cyan); box-shadow: 0 0 14px rgba(53,230,255,0.25); }
.gate__actions { display: flex; gap: 10px; margin-top: 16px; }
.gate__btn {
  flex: 1; padding: 10px; font: inherit; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  color: var(--cyan); background: rgba(53,230,255,0.08); border: 1px solid var(--border);
  transition: all 0.15s ease;
}
.gate__btn:hover, .gate__btn:focus-visible { background: rgba(53,230,255,0.18); box-shadow: 0 0 14px rgba(53,230,255,0.25); }
.gate__btn--ghost { color: var(--muted); background: transparent; }
.gate__msg { min-height: 18px; margin-top: 12px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; }
.gate__msg.ok { color: var(--green); text-shadow: 0 0 10px rgba(53,255,174,0.6); }
.gate__msg.no { color: var(--red); text-shadow: 0 0 10px rgba(255,77,109,0.6); }
.gate__panel.shake { animation: shake 0.35s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); } 40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); } 80% { transform: translateX(5px); }
}

/* ---------- warp launch ---------- */
.warp {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  background: radial-gradient(circle at var(--wx,50%) var(--wy,50%), rgba(255,61,240,0.12), rgba(3,6,14,0.96) 60%);
  transition: opacity 0.25s ease;
}
.warp.active { opacity: 1; visibility: visible; }
.warp__rings { position: absolute; left: var(--wx,50%); top: var(--wy,50%); transform: translate(-50%,-50%); }
.warp__ring {
  position: absolute; left: 50%; top: 50%;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--cyan);
  transform: translate(-50%,-50%); opacity: 0;
}
.warp.active .warp__ring { animation: burst 0.7s ease-out forwards; }
.warp.active .warp__ring:nth-child(2) { animation-delay: 0.1s; border-color: var(--magenta); }
.warp.active .warp__ring:nth-child(3) { animation-delay: 0.2s; border-color: var(--purple); }
@keyframes burst {
  0%   { opacity: 0.9; width: 40px; height: 40px; }
  100% { opacity: 0; width: 140vmax; height: 140vmax; }
}
.warp__label {
  position: relative; font-size: 13px; letter-spacing: 0.4em; color: var(--cyan);
  text-transform: uppercase; text-shadow: 0 0 16px rgba(53,230,255,0.8);
  opacity: 0; transform: scale(0.9);
}
.warp.active .warp__label { animation: labelIn 0.5s 0.15s ease-out forwards; }
@keyframes labelIn { to { opacity: 1; transform: scale(1); } }

.card--launching {
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.5s ease !important;
  transform: scale(2.4) translateZ(120px) !important;
  opacity: 0 !important;
  z-index: 40;
}

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .frame { grid-template-columns: 1fr; }
  .col--left, .col--right { flex-direction: row; flex-wrap: wrap; }
  .col--left .panel, .col--right .panel { flex: 1; min-width: 240px; }
  .bottomrow { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .apps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news { grid-template-columns: 1fr; }
  .hero__title { letter-spacing: 0.12em; }
}
@media (max-width: 560px) {
  .apps { grid-template-columns: 1fr; }
  .statusbar { gap: 4px 14px; font-size: 10px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grid-overlay, .scanlines, .sweep, .hero__title, .ticker__inner, .live-dot { animation: none !important; }
  .card, .bar__fill { transition: none !important; }
}
