/* ============================================================================
   CaMell ENTERPRISE — LOGIN SKIN
   Faithful web port of the desktop WPF LoginView (CaMell_v6.3/Views/Shared/
   LoginView.xaml). Loaded LAST so it wins over the old .login-* rules.
   Only the login screen (#tpl-login → .cm-login) is affected; the inner app
   keeps the shared liquid-glass theme.
   Colors translated from WPF #AARRGGBB → rgba().
   ============================================================================ */

/* ── root: full-viewport stage ─────────────────────────────────────────── */
.cm-login {
  position: fixed;
  inset: 0;
  overflow: hidden;
  font-family: "Segoe UI Variable", "Segoe UI Variable Text", Inter, "Segoe UI",
    -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  animation: cm-login-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cm-login-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── background image (HYPERAUTOMATION) + frosted overlay + glows ───────── */
.cm-login__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/login_bg.png") center center / cover no-repeat;
  opacity: 0.92;
  /* BlurEffect Radius="10" (LoginView.xaml:22). Half-blurring it left the
     artwork's "HYPERAUTOMATION" lettering legible behind the card, which the
     desktop never shows. */
  filter: blur(10px);
  transform: scale(1.06); /* hide blur bleed at edges */
}
.cm-login__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* #20060614 → #30060614 @.5 → #50060614 (LoginView.xaml:30-40): .125 / .188
     / .314. The ported values were roughly double, which muddied the artwork
     into a flat dark slab. */
  background: linear-gradient(
    180deg,
    rgba(6, 6, 20, 0.125) 0%,
    rgba(6, 6, 20, 0.188) 50%,
    rgba(6, 6, 20, 0.314) 100%
  );
}
.cm-login__glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}
/* Ellipse Width/Height 500, Opacity 0.06, Margin 0,-80,0,0 — a whisper, not
   the 0.4 spotlight this file was drawing. */
.cm-login__glow--center {
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 80px));
  opacity: 0.06;
  background: radial-gradient(
    circle,
    rgba(176, 212, 255, 0.5) 0%,
    rgba(96, 160, 255, 0.13) 45%,
    transparent 70%
  );
}
/* Ellipse Width/Height 300, Opacity 0.04, Margin 0,-40,-60,0. */
.cm-login__glow--tr {
  width: 300px;
  height: 300px;
  right: -60px;
  top: -40px;
  opacity: 0.04;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.38) 0%,
    transparent 70%
  );
}

/* ── title bar ─────────────────────────────────────────────────────────── */
.cm-login__titlebar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.cm-login__titlebar-logo { width: 18px; height: 18px; display: block; }
.cm-login__titlebar-text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.565);
}

/* ── decorative stage: feature cards + particle dots ───────────────────── */
/* LoginView.xaml:268-275 wraps the whole decorative layer in
   <Viewbox Stretch="Uniform"><Grid Width="1280" Height="800">, so every card
   and dot is positioned against a FIXED 1280×800 canvas that is then scaled as
   one piece. Laying them out in viewport percentages instead — which is what
   this file did — flings them into the corners the moment the window is wider
   than 4:2.5, which is exactly the scattered, empty look being complained
   about. Recreate the Viewbox: fixed canvas, centred, uniformly scaled. */
.cm-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  /* The canvas keeps the Viewbox's 1280:800 ratio and is fitted inside the
     window, so the percentage offsets on every dot and card resolve to the
     same relative points the XAML margins describe. (A transform: scale()
     cannot be used here — dividing 100vw by 1280 yields a length, and
     scale() only takes a unitless number, so the whole declaration is
     dropped and the layer falls back to unscaled flow.) */
  width: min(100%, calc(100dvh * 1.6));
  aspect-ratio: 8 / 5;
  max-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

.cm-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--c);
}

.cm-feat {
  position: absolute;
  left: var(--x);
  top: var(--y);
  /* Background="#35101828" → rgba(16,24,40,.208) and BorderBrush="#15<accent>"
     → the accent at 8.2% alpha. The card carries no shadow, no glow and no
     backdrop blur in v6.3; drawing the edge at 55% turned these into loud
     outlined boxes instead of the faint glass tiles the desktop shows. */
  width: 168px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(16, 24, 40, 0.208);
  border: 1px solid color-mix(in srgb, var(--edge) 8%, transparent);
  box-shadow: none;
  transform: rotate(var(--rot, 0deg));
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
}
.cm-feat__head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.cm-feat__ico { font-size: 20px; line-height: 1; }
.cm-feat__title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.816);
  letter-spacing: 0.2px;
}
.cm-feat__desc {
  /* FontSize 9.5, Foreground #60FFFFFF. */
  font-size: 9.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.376);
}

/* ── Enterprise header ─────────────────────────────────────────────────── */
.cm-header {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 12;
  text-align: center;
  pointer-events: none;
}
.cm-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.cm-header__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
}
.cm-header__title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}
.cm-header__sub {
  margin: 6px 0 0;
  font-size: 12.5px;
  font-weight: 400;
  color: #3b82f6;
}
.cm-header__feat {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.565);
}

/* ── login card ────────────────────────────────────────────────────────── */
.cm-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(18px);
  z-index: 20;
  width: min(400px, calc(100vw - 40px));
  max-height: calc(100dvh - 150px);
  overflow-y: auto;
  /* Background="#A0101826" = rgba(16,24,38,.627) and a single
     DropShadow(black, blur 20, depth 0, opacity .8) — no lifted 60px drop. */
  padding: 30px 36px;
  border-radius: 20px;
  background: rgba(16, 24, 38, 0.627);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  text-align: center;
}
/* gradient border (white 30→20→10%) via a masked ::before ring */
.cm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.cm-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 8px;
  display: block;
}
.cm-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.cm-card__sub {
  margin: 4px 0 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.565);
}
.cm-card__label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.91);
  text-align: center;
  margin-bottom: 8px;
}
.cm-card .tg-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
}
.cm-card .tg-slot iframe {
  border-radius: 14px !important;
  margin: 0 auto;
}
.cm-card__hint {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--danger, #ff6b6b);
}
.cm-card__hint:empty { display: none; }
.cm-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.125);
  margin: 20px 0 14px;
}
.cm-card__2fa {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.565);
}

/* ── footer ────────────────────────────────────────────────────────────── */
.cm-login__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 8px 20px;
  text-align: center;
  background: rgba(16, 24, 40, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cm-login__footer-main {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 14px rgba(96, 165, 250, 0.9);
}
.cm-login__footer-sub {
  margin-top: 4px;
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── responsive: hide floating cards on narrow / short screens ─────────── */
@media (max-width: 1180px) {
  .cm-feat { display: none; }
}
@media (max-width: 900px) {
  .cm-stage { display: none; } /* drop particles too — keep it clean on phones */
  .cm-header { top: 48px; }
  .cm-header__title { font-size: 21px; }
  .cm-header__wordmark { height: 40px; }
  .cm-header__sub { padding: 0 16px; font-size: 12px; }
  .cm-header__feat { font-size: 10.5px; line-height: 1.5; padding: 0 16px; }
  .cm-card { transform: translate(-50%, -50%) translateY(20px); }
}
/* very narrow phones: the decorative keyword line has no room — drop it (the
   subtitle already says what the app is). Keeps the header clean, never clipped. */
@media (max-width: 520px) {
  .cm-header__feat { display: none; }
}
@media (max-height: 680px) {
  .cm-card {
    top: 46px;
    transform: translateX(-50%);
    margin: 0 auto;
  }
  .cm-header { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cm-login { animation: none; }
}

/* ── auth area balance: localhost loopback preview (.local-auth-notice) ───
   Its old rules were scoped to .login-window (gone in this skin), so give the
   preview a centered, symmetric box sharing the Telegram widget's footprint.
   No effect on the real domain (there the slot holds the Telegram button). */
.cm-card .tg-slot .local-auth-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}
.cm-card .tg-slot .local-auth-notice__status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #3b82f6;
}
.cm-card .tg-slot .local-auth-notice strong {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.91);
}
.cm-card .tg-slot .local-auth-notice .btn {
  width: 100%;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 14px;
}

/* ============================================================================
   V2 — clarity (crisper text) · OKWIN/Camell branding · loading splash ·
   login spin · root-login form · balance. Appended last → wins.
   ============================================================================ */

/* 1 ── Calm + darken the scene so text reads (do NOT sharpen the busy image). */
.cm-login__bg { filter: blur(7px) brightness(0.82); }
/* The readability pass used to re-darken the plate here with a second radial
   layer and add a bottom-left counter-glow. Neither exists in LoginView.xaml —
   it has exactly one three-stop vertical scrim and two faint ellipses — and
   stacking them buried the artwork. The scrim declared earlier in this file is
   already the XAML's, so nothing further is layered on it. */

/* 2 ── Header (OKWIN wordmark) + titlebar tile + brighter type. */
.cm-header { max-width: 720px; margin-inline: auto; padding-inline: 16px; }
.cm-header__brand { margin-bottom: 4px; }
.cm-header__wordmark {
  height: 46px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}
.cm-header__sub {
  color: #9cc4ff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.cm-header__feat {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.cm-login__titlebar { padding: 0 16px; }
.cm-login__titlebar-logo { border-radius: 5px; }
.cm-login__titlebar-text {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 3 ── Feature cards: v6.3 values only (LoginView.xaml:400-420).
   Title Foreground #D0FFFFFF, description #60FFFFFF. Brightening these to
   #fff/.82 over a 70%-alpha coloured edge is what turned a row of faint glass
   tiles into the neon-outlined boxes the desktop never draws. */
.cm-feat__title { color: rgba(255, 255, 255, 0.816); text-shadow: none; }
.cm-feat__desc { color: rgba(255, 255, 255, 0.376); }

/* 4 ── Login card + footer: firmer glass + brighter secondary copy.
   The fill stays at the XAML's #A0101826; .88 made the card an opaque slab. */
.cm-card { background: rgba(16, 24, 38, 0.627); }
.cm-card__label { color: rgba(255, 255, 255, 0.96); }
.cm-card__sub { color: rgba(255, 255, 255, 0.74); }
.cm-card__2fa { color: rgba(255, 255, 255, 0.7); }
.cm-login__footer-main { color: rgba(255, 255, 255, 0.92); }
.cm-login__footer-sub { color: rgba(255, 255, 255, 0.64); }

/* 5 ── Root fallback login form (username/password). */
.cm-root-toggle {
  display: block;
  width: 100%;
  margin: 2px 0;
  padding: 8px 0;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.cm-root-toggle:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.cm-root-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0 4px;
  text-align: left;
  animation: cm-root-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cm-root-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.cm-input {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 16, 32, 0.9);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cm-input::placeholder { color: rgba(255, 255, 255, 0.42); }
.cm-input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}
.cm-btn-primary {
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #3b82f6;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.cm-btn-primary:hover { background: #5a97ff; }
.cm-btn-primary:active { transform: scale(0.98); }
.cm-btn-primary:disabled { opacity: 0.55; cursor: default; }
.cm-root-note {
  margin: 0;
  font-size: 11px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.cm-root-note.is-error { color: #ff8a8a; }
.cm-root-note.is-ok { color: #6ee7b7; }

/* 6 ── INITIAL LOADING SPLASH (#cm-boot). */
.cm-boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 38%, rgba(20, 40, 92, 0.55) 0%, transparent 60%),
    linear-gradient(160deg, #0d1526 0%, #070a14 60%, #05070f 100%);
  color: #fff;
  font-family: "Segoe UI Variable", "Segoe UI Variable Text", Inter, "Segoe UI",
    -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.cm-boot--hide { opacity: 0; visibility: hidden; pointer-events: none; }
.cm-boot__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cm-boot-rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cm-boot__orbit {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
}
.cm-boot__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  will-change: transform;
}
.cm-boot__ring--1 {
  border-top-color: #4da3ff;
  border-right-color: rgba(77, 163, 255, 0.25);
  animation: cm-boot-spin 1.15s linear infinite;
}
.cm-boot__ring--2 {
  inset: 16px;
  border-bottom-color: #22d3ee;
  border-left-color: rgba(34, 211, 238, 0.22);
  animation: cm-boot-spin 1.7s linear infinite reverse;
}
.cm-boot__ring--3 {
  inset: 32px;
  border-top-color: rgba(255, 255, 255, 0.55);
  animation: cm-boot-spin 2.4s linear infinite;
}
.cm-boot__spark {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #7cc0ff;
  box-shadow: 0 0 12px 2px rgba(124, 192, 255, 0.9);
  transform-origin: 3.5px 69px;
  animation: cm-boot-spin 1.15s linear infinite;
}
.cm-boot__logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: cm-boot-pulse 2.2s ease-in-out infinite;
}
.cm-boot__logo > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.cm-boot__wordmark {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: linear-gradient(100deg,
    rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.72) 38%,
    #cfe6ff 50%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.72) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: cm-boot-shimmer 2.4s ease-in-out infinite;
}
.cm-boot__sub {
  margin-top: -8px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.55);
}
.cm-boot__bar {
  position: relative;
  width: 180px;
  height: 3px;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
.cm-boot__bar-fill {
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #4da3ff 45%, #7cc0ff 55%, transparent);
  will-change: transform;
  animation: cm-boot-track 1.4s ease-in-out infinite;
}
@keyframes cm-boot-spin { to { transform: rotate(360deg); } }
@keyframes cm-boot-rise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes cm-boot-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 0 rgba(77,163,255,0); }
  50% { transform: scale(1.05); box-shadow: 0 8px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 26px 4px rgba(77,163,255,0.35); }
}
@keyframes cm-boot-shimmer {
  0% { background-position: 130% 0; }
  100% { background-position: -130% 0; }
}
@keyframes cm-boot-track {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* 7 ── "LOGGING IN" spin — add .cm-login--authenticating to <main class="cm-login">.
        Ring rotates around the logo (the "xoay"); the tile logo pulses. */
.cm-card, .cm-card__logo, .cm-card .tg-slot, .cm-card__sub, .cm-card__hint {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, filter 0.4s ease;
}
.cm-login--authenticating .cm-card {
  transform: translate(-50%, -50%) translateY(18px) scale(1.015);
}
.cm-login--authenticating .cm-card__logo {
  animation: cm-auth-logo 1.1s ease-in-out infinite;
}
.cm-login--authenticating .cm-card::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-left: -32px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #4da3ff;
  border-right-color: rgba(77, 163, 255, 0.3);
  animation: cm-auth-ring 0.8s linear infinite;
  pointer-events: none;
  z-index: 21;
}
.cm-login--authenticating .cm-card .tg-slot,
.cm-login--authenticating .cm-card__sub,
.cm-login--authenticating .cm-card__hint {
  opacity: 0.4;
  filter: saturate(0.6);
}
@keyframes cm-auth-logo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes cm-auth-ring { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .cm-boot__stage, .cm-boot__ring, .cm-boot__spark, .cm-boot__logo,
  .cm-boot__wordmark, .cm-boot__bar-fill,
  .cm-login--authenticating .cm-card__logo,
  .cm-login--authenticating .cm-card::after { animation: none; }
  .cm-boot__wordmark { -webkit-text-fill-color: rgba(255,255,255,0.85); color: rgba(255,255,255,0.85); }
  .cm-boot { transition: opacity 0.2s linear; }
}
