/* Edesilo — общий стиль страниц-заглушек нод (роли сервиса видеовстреч).
   Палитра: lens #0B1026 · ice #EEF2F7 · voice #2FD08A · tally #FF3B30 · ring #FFC857 · slate #5B6479 */
:root {
  --lens: #0B1026; --lens-2: #18204A; --ice: #EEF2F7; --paper: #FFFFFF;
  --voice: #2FD08A; --tally: #FF3B30; --ring: #FFC857; --slate: #5B6479; --line: #D9E0EA;
  --accent: var(--voice);          /* переопределяется на странице через :root style */
  --display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --body: "Onest", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0; color: #fff; font: 400 17px/1.6 var(--body); -webkit-font-smoothing: antialiased;
  background: radial-gradient(95% 80% at 72% 8%, var(--lens-2) 0%, var(--lens) 62%);
  display: grid; grid-template-rows: auto 1fr auto; min-height: 100vh; padding: 18px 20px;
}
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 6px; }
img, svg { max-width: 100%; }
.osd { font-family: var(--mono); font-weight: 500; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; }

.bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; max-width: 1080px; width: 100%; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.04em; }
.logo small { font-family: var(--mono); font-size: .7rem; font-weight: 500; letter-spacing: .08em; color: #8E97BF; text-transform: uppercase; margin-left: 2px; }
.bar a.plain { color: #AEB6D8; text-decoration: none; font-weight: 500; }
.bar a.plain:hover { color: #fff; }
.state { display: inline-flex; align-items: center; gap: 9px; color: #AEB6D8; }
.state i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

main { display: grid; place-items: center; padding: 36px 0; }
.panel { position: relative; width: 100%; max-width: 560px; text-align: center; padding: 54px clamp(22px, 6vw, 56px) 44px; }
.corner { position: absolute; width: 26px; height: 26px; border: 2px solid rgba(255, 255, 255, .4); }
.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 9px; }
.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 9px; }
.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 9px; }
.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 9px; }

.ico { width: 76px; height: 76px; margin: 0 auto 26px; border-radius: 22px; display: grid; place-items: center; color: var(--accent); background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); }
.ico svg { width: 34px; height: 34px; }
.code { color: #8E97BF; margin-bottom: 14px; }
h1 { font-family: var(--display); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; font-size: clamp(1.7rem, 4vw, 2.5rem); margin: 0 0 16px; }
.panel p { color: #C6CCE6; margin: 0 auto 30px; max-width: 30em; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px; border-radius: 14px; text-decoration: none; font-weight: 600; transition: transform .2s ease, background-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-ring { background: var(--ring); color: var(--lens); }
.btn-ring:hover { background: #FFD677; }
.hint { margin-top: 22px; font-size: .92rem; color: #8E97BF; }
.hint a { color: #E6E9F8; text-decoration-color: rgba(255, 200, 87, .7); text-underline-offset: 3px; }
.meta { display: inline-flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin-top: 26px; color: #8E97BF; }
.meta b { color: #E6E9F8; font-weight: 500; }

footer.bar { color: #6F789E; }
@media (max-width: 560px) { .state { font-size: .68rem; } }
@media (max-width: 470px) { header .state, .bar a.plain, footer .rid { display: none; } }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
