    @font-face{
      font-family: "GlobalFont";
      src: url("../fonts/outfit/Outfit-Light.woff2?v=1.1") format("woff2");
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }
    @font-face{
      font-family: "GlobalFont";
      src: url("../fonts/outfit/Outfit-Bold.woff2?v=1.1") format("woff2");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    .lex-sr-only{
      position:absolute;
      width:1px;
      height:1px;
      padding:0;
      margin:-1px;
      overflow:hidden;
      clip:rect(0,0,0,0);
      white-space:nowrap;
      border:0;
    }

    :root{
      --size: 30px;
      --gap: 6px;
      --pad: 14px;
      --line: rgba(0,0,0,.08);
      --ink: #111;
      --bg: #fff;
      --label-font: "GlobalFont", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      --topbar-h: 56px;
    }

    html,body{height:100%;}
body{
      margin:0;
      padding:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background:var(--bg);
      color:var(--ink);

      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

header{
      position: fixed;
      top: var(--topbar-h);
      left: 0;
      right: 0;
      z-index: 1000;

      background: #fff;

      backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--line);
      padding: 10px var(--pad);
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .row1,
    .row2,
    .row3{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      width:100%;
    }

    .row1{ justify-content:flex-start; }
    .row1 .scope-toggle{ margin-left:auto; }

    .row2{ justify-content:flex-start; }
    .row2 .flipwrap{
      flex: 1 1 260px;
      min-width: 200px;
      overflow: visible;
    }
    .row2 .flipopen{
      width:100%;
      max-width:none;
      min-width:0;
    }
    .row2 .cjkvar{ margin-left:auto; }

    .row3{ justify-content:flex-start; }
    .row3 .metaCountWrap{ margin-left:auto; }
    #userFontWrap,
    #lexEmbedToggle{
      display: none !important;
    }

input[type="search"]{

      -webkit-appearance: none;
      appearance: none;

      flex: 1 1 320px;
      min-width: 220px;

      height: 34px;
      line-height: 34px;
      padding: 0 10px;

      border: 1px solid var(--line);
      border-radius: 10px;
      font-size: 14px;

      outline: none;
      box-sizing: border-box;
    }

    input[type="search"]:focus{ border-color: rgba(0,0,0,.25); }
    input[type="search"]::-webkit-search-cancel-button{
      -webkit-appearance: none;
      appearance: none;
      display: none;
      width: 0; height: 0; margin: 0;
    }

    .rowMeta{
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      font-size:12px;
      opacity:.78;
    }
    .metaTitle{
      font-family: var(--label-font);
      font-weight: 700;
      letter-spacing:.2px;
      opacity:.9;
    }
    .metaCountWrap{
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .metaCountBtns{
      display:inline-flex;
      align-items:center;
      gap:4px;
    }
    body.lex-welcome .metaCountWrap{
      display:none;
    }
body.lex-welcome #q{
      display:block;
    }
body.lex-welcome[data-power="1"] #q{
      display:block;
}

.powerpill{
  display:none !important;
}

.lex-mode-dialog{
  position:fixed;
  inset:0;
  z-index:1000001;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(7px);
}
.lex-mode-dialog[hidden]{ display:none !important; }
.lex-mode-dialog-box{
  width:min(460px, 100%);
  box-sizing:border-box;
  padding:24px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:16px;
  background:#fff;
  box-shadow:0 22px 70px rgba(0,0,0,.18);
  font-family:var(--label-font);
  color:var(--ink);
}
.lex-mode-dialog-box h2{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.2;
  font-weight:800;
}
.lex-mode-dialog-box p{
  margin:0;
  font-size:14px;
  line-height:1.5;
  color:rgba(0,0,0,.66);
}
.lex-mode-unload{
  display:flex;
  align-items:center;
  gap:9px;
  margin-top:18px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}
.lex-mode-unload[hidden]{ display:none !important; }
.lex-mode-unload input{
  width:17px;
  height:17px;
  margin:0;
}
.lex-mode-dialog-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:22px;
}
.lex-mode-dialog-actions button{
  min-width:92px;
  height:36px;
  padding:0 16px;
  border:1px solid rgba(0,0,0,.16);
  border-radius:9px;
  background:#fff;
  color:#111;
  font:800 12px/1 var(--label-font);
  letter-spacing:.25px;
  cursor:pointer;
}
#lexModeDialogGo{
  border-color:rgba(0,120,40,.32);
  background:rgba(0,150,60,.15);
  color:rgba(0,105,35,1);
}
.lex-mode-dialog-actions button:hover{ font-weight:900; }

@media (max-width:520px){
  .lex-mode-dialog{ padding:14px; }
  .lex-mode-dialog-box{ padding:20px; border-radius:14px; }
  .lex-mode-dialog-actions button{ flex:1 1 0; }
}
    .metaCount{
      font-family: var(--label-font);
      font-weight: 700;
      opacity:.85;
      white-space:nowrap;
    }
    .metaCountBtn{
      appearance:none;
      border: 0;
      background: transparent;
      border-radius: 7px;
      width: 34px;
      height: 34px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      font-family: var(--label-font);
      font-weight: 700;
      font-size: 14px;
      line-height: 1;
      padding:0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      transition: transform .12s ease, opacity .12s ease, background-color .12s ease;
    }
    .metaCountBtnDown{
      width: 30px;
      height: 30px;
      background-image: url("/expose/z_index/glass-.png");
    }
    .metaCountBtnUp{
      width: 40px;
      height: 40px;
      background-image: url("/expose/z_index/glass+.png");
    }
    .metaCountBtn:hover{
      transform: translateY(-2px);
      background-color: transparent;
    }
    .metaCountBtn:focus{ outline:none; border-color: rgba(0,0,0,.25); }

    .lex-hero{
      max-width: 980px;
      width: 70%;
      margin: 0 auto;
      padding: 6px 0 2px;
      font-family: var(--label-font);
    }
    .lex-hero-wrap{
      position: relative;
      width: 100%;
      padding: 18px 0 26px;
      overflow: hidden;
    }
    .lex-hero-bg{
      position: fixed;
      inset: calc(var(--topbar-h) + var(--lex-header-h) + 5px) 0 0 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, 40px);
      grid-auto-rows: 40px;
      gap: 25px;
      padding: 10px 10px;
      box-sizing: border-box;
      font-size: 40px;
      line-height: 40px;
      color: rgba(0,0,0,.15);
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }
    .lex-deko-glyph{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
    }
    .lex-deko-pulse{
      animation: lexDekoPulse 2s ease-in-out infinite;
      transform-origin: center;
    }
    @keyframes lexDekoPulse{
      0%{ transform: scale(1); }
      50%{ transform: scale(0); }
      100%{ transform: scale(1); }
    }
    .lex-hero-panel{
      position: relative;
      z-index: 1;
      width: 50vw;
      max-width: 980px;
      min-width: 360px;
      margin: 0 auto;
      padding: 18px 18px;
      box-sizing: border-box;
      border-radius: 18px;
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.88);
    }
    .lex-hero-panel .lex-hero,
    .lex-hero-panel .lex-hero-follow,
    .lex-hero-panel .lex-hero-sep{
      width: 100%;
      max-width: none;
    }
    .lex-hero span{ display:block; }
    .lex-hero-dedicated{
      font-weight: 300;
      font-size: 13px;
      line-height: 1.5;
      color: rgba(0,0,0,.55);
      margin: 0 0 18px;
    }
    .lex-hero-title{
      font-weight: 700;
      font-size: 32px;
      line-height: 1.2;
      color: rgba(0,0,0,1);
      margin: 0 0 6px;
    }
    .lex-hero-sub{
      font-weight: 300;
      font-size: 15px;
      line-height: 1.6;
      color: rgba(0,0,0,.65);
      margin: 0 0 22px;
    }
    .lex-hero-lib{
      display: block;
      width: 50px;
      height: 50px;
      margin: 2em 0 0;
    }
    .lex-hero-explore{
      font-weight: 500;
      font-size: 26px;
      line-height: 1.6;
      color: rgba(0,0,0,1);
      margin: 0 0 10px;
    }
    .lex-hero-scope{
      font-weight:700;
      color:rgba(0,120,40,1);
    }
    .lex-hero .lex-hero-explore-rest{
      display:block;
    }
    .lex-hero .lex-hero-dash{
      display:none;
    }
    .lex-hero-body{
      font-weight: 300;
      font-size: 15px;
      line-height: 1.7;
      color: rgba(0,0,0,.72);
      margin: 0 0 16px;
    }
    .lex-hero-collapse{
      margin: 12px 0 0;
    }
    .lex-hero-collapse-summary{
      cursor: pointer;
      user-select: none;
      font-family: var(--label-font);
      font-weight: 600;
      font-size: 14.5px;
      color: rgba(0,0,0,.55);
      margin: 6px 0 10px;
    }
    .lex-hero-follow{
      width: 70%;
      max-width: 980px;
      margin: 0 auto;
    }
    .lex-hero-sep{
      width: 70%;
      max-width: 980px;
      margin: 10px auto 16px;
      display: flex;
      gap: 12px;
      align-items: baseline;
      justify-content: flex-start;
      text-align: left;
      font-size: 100px;
      line-height: 1;
      color: rgba(0,0,0,.9);
    }
    .lex-hero-sep-main{
      display: inline-block;
      transform: scaleX(-1);
    }
    .lex-hero-sep-mini{
      display: inline-block;
      font-size: 45px;
      transform: scaleX(-1);
    }
    .lex-hero-mode-prompt{
      margin:0 0 18px;
      font-weight:700;
      font-size:14px;
      line-height:1.4;
      color:rgba(0,0,0,.72);
    }

    .tabs{
      width: 100%;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tab{
      appearance:none;
      border: 1px solid var(--line);
      background:#fff;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 13px;
      cursor:pointer;
      user-select:none;
    }
.tab[aria-selected="true"]{
      border-color: rgba(0,0,0,.35);
      background: rgba(0,0,0,.06);
    }

.emojiBtn{
  appearance:none;
  border: 1px solid var(--line);
  background:#fff;
  border-radius: 9px;
  width: auto;
  padding: 0 10px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  flex: 0 0 auto;
  line-height: 1;
  font-family: var(--label-font);
  font-weight: 700;
  font-size: 12px;
}
.emojiBtn:hover{ background: rgba(0, 150, 60, .18); }
.emojiBtn:focus{ outline:none; border-color: rgba(0,0,0,.25); }
.emojiBtn.emoji-active{
  background: rgba(0, 150, 60, .18);
  border-color: rgba(0, 120, 40, .35);
  color: rgba(0, 120, 40, 1);
}
    .emojiBtnGlyph{
      font-size: 18px;
      line-height: 1;
    }
    .flipopen:hover{ background: rgba(0, 150, 60, .18); }
    .powerpill-toggle:hover{ background: rgba(0, 150, 60, .18); }

    .subtabs{
      width: 100%;
      display:none;
      flex-wrap:wrap;
      gap:8px;
    }
    .subtabs.show{ display:flex; }
    .subtab{
      appearance:none;
      border: 1px solid var(--line);
      background:#fff;
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 12px;
      cursor:pointer;
      user-select:none;
      opacity:.9;
    }
    .subtab[aria-selected="true"]{
      border-color: rgba(0,0,0,.35);
      background: rgba(0,0,0,.06);
      opacity:1;
    }

:root{ --lex-header-h: 0px; }

body{
      padding-top: calc(var(--topbar-h) + var(--lex-header-h));
}

.rs-topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--topbar-h);
      background: #fff;
      background-image: url("/expose/z_index/rainbow2.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100% 100%;
      border-bottom: 0;
      z-index: 1100;
      overflow: hidden;
      transform: translateZ(0);
      font: 14px/1.2 var(--label-font);
}

.rs-topbar-inner {
      width: 100%;
      margin: 0;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      box-sizing: border-box;
      position: relative;
      z-index: 1;
}

.rs-topbar::before,
.rs-topbar::after{
      content: "";
      position: absolute;
      inset: 0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100% 100%;
      pointer-events: none;
      z-index: 0;
      will-change: opacity;
}
.rs-topbar::before{
      background-image: url("/expose/z_index/rainbow1.png");
      opacity: 1;
      animation: topbar-rainbow-one 20s ease-in-out infinite;
}
.rs-topbar::after{
      background-image: url("/expose/z_index/rainbow3.png");
      opacity: 0;
      animation: topbar-rainbow-three 20s ease-in-out infinite;
}
@keyframes topbar-rainbow-one{
      0%   { opacity: 1; }
      25%  { opacity: 0; }
      50%  { opacity: 0; }
      75%  { opacity: 0; }
      100% { opacity: 1; }
}
@keyframes topbar-rainbow-three{
      0%   { opacity: 0; }
      25%  { opacity: 0; }
      50%  { opacity: 1; }
      75%  { opacity: 0; }
      100% { opacity: 0; }
}

.rs-brand {
      display: inline-flex;
      gap: 10px;
      align-items: baseline;
      font-weight: 400;
      letter-spacing: .02em;
      color: #111;
      text-decoration: none;
}
.rs-brand small { font-weight: 500; opacity: .7; letter-spacing: .03em; }
.fx-brand { display: inline-flex; }
.rs-actions { display: inline-flex; gap: 10px; align-items: center; }

.rs-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 34px;
      padding: 0 12px;
      border-radius: 8px;
      text-decoration: none;
      border: 1px solid #e5e7eb;
      color: #111;
      background: #fff;
}
.rs-link:hover { background: #f8f9fb; }

#wa-editor-btn{
      color:#111;
      font-weight:600;
      padding:0 2px;
      border:0;
      background:transparent;
}
#wa-editor-btn:hover,
#wa-editor-btn:focus-visible{
      color:#111;
      background:transparent;
      -webkit-text-stroke:.25px currentColor;
}
#wa-editor-btn .wa-editor-arrow{
      display:inline-block;
      transition:transform 120ms ease;
}
#wa-editor-btn:hover .wa-editor-arrow,
#wa-editor-btn:focus-visible .wa-editor-arrow{
      transform:translateX(-2px);
}

.rs-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 34px;
      padding: 0 14px;
      border-radius: 8px;
      border: 0;
      color: #fff;
      background: #111;
      cursor: pointer;
}
.rs-btn:hover { filter: brightness(1.07); }

.rs-login { position: relative; }
.rs-login > summary {
      list-style: none;
      cursor: pointer;
      user-select: none;
      outline: none;
}
.rs-login > summary::-webkit-details-marker { display: none; }
.rs-login > summary .rs-link { border-color: #e5e7eb; }

.rs-login[open] .rs-panel,
.rs-login:focus-within .rs-panel { display: block; }

.rs-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      display: none;
      width: 280px;
      padding: 14px;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,.10), 0 2px 10px rgba(0,0,0,.06);
      border: 1px solid #eef0f4;
      z-index: 1200;
}
.rs-field { display: grid; gap: 6px; margin-bottom: 10px; }
.rs-field label { font-size: 12px; color: #555; }
.rs-input {
      height: 36px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 0 10px;
      font: inherit;
      width: 100%;
}
.rs-input:focus { outline: 2px solid #3b82f6; outline-offset: 2px; border-color: #bfdbfe; }
.rs-row { display: flex; gap: 8px; align-items: center; justify-content: space-between; }
.rs-muted { font-size: 12px; color: #666; text-decoration: none; }
.rs-muted:hover { text-decoration: underline; }

main{padding: 10px var(--pad) 40px;}
    section{
      padding: 12px 0 16px;
      border-bottom: 1px solid var(--line);
    }
    .lex-hero-section{
      border-bottom: 0;
    }

    .sec-head{
      display:flex;
      align-items:baseline;
      gap:10px;
      font-family: var(--label-font);
      line-height: 1.15;
      margin: 0 0 10px;
    }

    .sec-title{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:baseline;
    }
    .sec-name{
      font-weight: 700;
      font-size: 15px;
    }
    .sec-info{
      font-weight: 300;
      font-size: 12px;
      opacity: .75;
      white-space: nowrap;
    }
    .sec-uv{
      margin-left:auto;
      font-family: var(--label-font);
      font-weight:700;
      font-size: 11px;
      letter-spacing:.35px;
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.12);
      background: rgba(0,0,0,.04);
      white-space: nowrap;
    }

    .grid{
      display:flex;
      flex-wrap:wrap;
      gap: var(--gap);
      width:100%;
    }
    .g{
      font-size: var(--size);
      line-height: 1;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 2px;
      border-radius: 8px;
      user-select:text;
      cursor: default;
      position: relative;
      transition: transform .08s ease, background .08s ease, outline-color .08s ease;
      will-change: transform;
    }
    .g:hover{ transform: translateY(-2px); background: rgba(0,0,0,.06); }

    .g.copied{
      outline: 2px solid rgba(0,0,0,.35);
      background: rgba(0,0,0,.08);
    }

.g .badge,
.g .sbadge{
  display:none !important;
}

    .g .sbadge.y2010{ background: rgba(122,75,18,.92); }
    .g .sbadge.y2020{ background: rgba(156,122,0,.92); }
    .g .sbadge.y2021{ background: rgba(11,122,58,.92); }

    .status{
      padding: 20px var(--pad);
      font-size: 14px;
      opacity: .8;
    }
    .small{ font-size: 12px; opacity: .7; }

    .clipboard{
      position: fixed;
      right: 16px;
      bottom: 16px;
      width: 260px;
      max-width: calc(100vw - 32px);
      max-height: 60vh;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(0,0,0,.18);
      z-index: 50;
      display:flex;
      flex-direction:column;
      overflow:hidden;
      font-size: 12px;
      transition: width .18s ease, box-shadow .18s ease;
    }
    .clipboard.is-open{ width: 380px; }

    .clipboard-header{
      appearance:none;
      width:100%;
      min-height:40px;
      cursor: pointer;
      padding: 7px 11px;
      display:flex;
      align-items:center;
      justify-content:flex-start;
      gap:8px;
      background: #f8f8f8;
      border:0;
      font-family: var(--label-font);
      text-align:left;
      color:inherit;
    }
    .clipboard.is-open .clipboard-header{
      border-bottom: 1px solid var(--line);
    }
    .clipboard-title{
      font-weight:700;
      font-size:12px;
      letter-spacing:.4px;
      text-transform:uppercase;
      color: rgba(0, 150, 60, .95);
    }
    .clipboard-count{
      min-width:20px;
      height:20px;
      padding:0 6px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(0,150,60,.12);
      color:rgba(0,120,40,1);
      font-family:var(--label-font);
      font-weight:800;
      font-size:11px;
      line-height:1;
      transition:transform .16s ease, background-color .16s ease;
    }
    .clipboard-count.is-pulse{
      transform:scale(1.18);
      background:rgba(0,150,60,.28);
    }
    .clipboard-chevron{
      width:9px;
      height:9px;
      margin-left:auto;
      border-top:2px solid currentColor;
      border-left:2px solid currentColor;
      transform:translateY(2px) rotate(45deg);
      opacity:.6;
      transition:transform .18s ease;
    }
    .clipboard.is-open .clipboard-chevron{
      transform:translateY(-2px) rotate(225deg);
    }
    .clipboard-body{
      display:none;
      padding: 6px;
      overflow:auto;
      flex: 1 1 auto;
      min-height:0;
    }
    .clipboard-footer{
      display:none;
      align-items:center;
      justify-content:flex-start;
      gap:10px;
      padding: 8px 10px;
      background: #fff;
      border-top: 1px solid rgba(0,0,0,.12);
    }
    .clipboard.is-open .clipboard-body{ display:block; }
    .clipboard.is-open .clipboard-footer{ display:flex; }
    .clipboard-grid{
      display:flex;
      flex-wrap:wrap;
      gap: var(--gap);
    }
    .clipboard-empty{
      font-size:11px;
      opacity:.7;
      padding:4px 2px;
    }
    .clipboard-resizer{
      position:static;
      width:var(--size);
      height:var(--size);
      margin-left:auto;
      cursor:se-resize;
      border-radius:4px;
      background:transparent;
      border:0;
      padding:0;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      line-height:1;
      color:rgba(0,0,0,.6);
    }
    [hidden]{ display:none !important; }

    .clipboard-grid .g{ position: relative; }

    .clipboard-delete{
      position: static;
      width: 30px;
      height: 30px;
      border: 0;
      padding: 0;
      background: transparent url("/expose/z_index/delete.png") no-repeat center;
      background-size: contain;
      cursor: pointer;
      opacity: .9;
    }
    .clipboard-delete:hover{ opacity: 1; }
    .clipboard-delete:focus{ outline: none; }
    @keyframes clipPulse{
      0%{ transform: scale(1); opacity:.9; }
      50%{ transform: scale(1.18); opacity:1; }
      100%{ transform: scale(1); opacity:.9; }
    }
    .clipboard-delete[aria-pressed="true"]{
      opacity: 1;
      animation: clipPulse .7s ease-in-out infinite;
    }

    .clipboard-sep{ display:none; }

    @keyframes clipWiggle{
      0%{ transform: rotate(-5deg); }
      50%{ transform: rotate(5deg); }
      100%{ transform: rotate(-5deg); }
    }
    .clipboard.is-delete .clipboard-grid .g{
      animation: clipWiggle .16s ease-in-out infinite;
      transform-origin: 50% 50%;
    }

    @media (min-width: 821px){
      .clipboard,
      .clipboard.is-open{
        width:260px;
        max-width:80vw;
      }
      .clipboard-header{
        min-height:0;
        padding:6px 10px;
        cursor:move;
      }
      .clipboard-count,
      .clipboard-chevron{ display:none; }
      .clipboard-body{ display:block; }
      .clipboard-footer{ display:flex; justify-content:space-between; }
    }

    @media (max-width: 820px){
      body{ padding-bottom: 42px; }
      .clipboard,
      .clipboard.is-open{
        left:0;
        right:0;
        bottom:0;
        width:auto;
        max-width:none;
        border-left:0;
        border-right:0;
        border-bottom:0;
        border-radius:14px 14px 0 0;
      }
      .clipboard.is-open{ max-height:min(50dvh, 420px); }
      .clipboard-header{ min-height:42px; padding-left:var(--pad); padding-right:var(--pad); }
      .clipboard-body{ padding:8px var(--pad); }
      .clipboard-footer{ padding:8px var(--pad); }
      .clipboard-resizer{ display:none; }
    }

    .flipwrap{
      display:flex;
      gap:8px;
      align-items:center;
      flex: 0 0 auto;
      flex-wrap:wrap;
      position: relative;
    }

    .flipopen{
      appearance:none;
      border: 1px solid var(--line);
      background:#fff;
      border-radius: 9px;
      height: 34px;
      padding: 0 10px;
      font-size: 12px;
      cursor:pointer;
      min-width: 190px;
      max-width: 42vw;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      font-family: var(--label-font);
      font-weight: 700;
    }
    .flipwrap.flip-active .flipopen{
      background: rgba(0, 150, 60, .18);
      border-color: rgba(0, 120, 40, .35);
      color: rgba(0, 120, 40, 1);
    }

    .flipopen:focus{ outline:none; border-color: rgba(0,0,0,.25); }

    .flipopenLabel{
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .flippanel{
      position:absolute;
      left: 0;
      top: calc(100% + 6px);
      width: min(520px, calc(100vw - 2*var(--pad)));
      max-height: min(56vh, 520px);
      overflow:auto;
      background: rgba(255,255,255,.98);
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
      z-index: 2000;
      padding: 5px;
    }

    .flipitem{
      width:100%;
      display:flex;
      align-items:center;
      gap:8px;
      padding: 7px 8px;
      border-radius: 10px;
      border: 1px solid transparent;
      background:transparent;
      cursor:pointer;
      text-align:left;
    }

    .flipitem:hover{ background: rgba(0,0,0,.05); }
    .flipitem[aria-selected="true"]{
      border-color: rgba(0,0,0,.18);
      background: rgba(0,0,0,.06);
    }
    .flipitem-disabled{
      opacity: .45;
      text-decoration: line-through;
      cursor: not-allowed;
    }

    .flipsample{
      flex: 0 0 auto;
      font-size: 16px;
      line-height:1;
      width: 40px;
      text-align:center;
      border-radius: 9px;
      padding: 5px 0;
      background: rgba(0,0,0,.04);
      letter-spacing: .5px;
    }

.fliplabel{
      font-family: var(--label-font);
      font-weight: 700;
      font-size: 12px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

.userfontopen{
  min-width: 170px;
  max-width: 34vw;
}

.userfontpanel{
  width: min(420px, calc(100vw - 2*var(--pad)));
  max-height: min(52vh, 420px);
  overflow: hidden;
}

.userfontitem{
  width:100%;
  display:flex;
  align-items:center;
  gap:8px;
  padding: 7px 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  background:transparent;
  cursor:pointer;
  text-align:left;
}

.userfontitem:hover{ background: rgba(0,0,0,.05); }
.userfontitem[aria-selected="true"]{
  border-color: rgba(0,0,0,.18);
  background: rgba(0,0,0,.06);
}

.userfontlabel{
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--label-font);
  font-weight: 700;
  font-size: 12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.userfontx{
  flex: 0 0 auto;
  appearance:none;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  border-radius: 8px;
  width: 24px;
  height: 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size: 14px;
  line-height: 1;
  opacity: .75;
}
.userfontx:hover{ background: rgba(0,0,0,.05); opacity: 1; }

@media (max-width: 820px){

      .rowMeta{
        display:none !important;
      }

      header{
        display:grid;
        grid-template-columns:repeat(6, minmax(0, 1fr));
        column-gap:6px;
        row-gap:10px;
      }

      .row1,
      .row2{
        display:contents;
      }

      .row3{
        display:none;
      }

      .row1 .scope-toggle{
        grid-column:1 / 5;
        grid-row:1;
        width:100%;
        min-width:0;
        margin-left:0;
      }

      .scope-btn{
        flex:1 1 50%;
        min-width:0;
        padding-left:6px;
        padding-right:6px;
      }

      input[type="search"]{
        grid-column:5 / 7;
        grid-row:1;
        width: 100%;
        min-width: 0;
        height: 34px;
        line-height: 34px;
        padding: 0 10px;
        box-sizing: border-box;
      }

      .emojiBtn{
        grid-column:1 / 2;
        grid-row:2;
        width:100%;
        min-width:0;
        padding-left:4px;
        padding-right:4px;
      }

      #flipWrapWest{
        grid-column:2 / 4;
        grid-row:2;
      }

      #flipWrapEast{
        grid-column:4 / 7;
        grid-row:2;
      }

      #flipWrapWest,
      #flipWrapEast{
        width:100%;
        min-width: 0;
      }

      #flipWrapWest .flipopen,
      #flipWrapEast .flipopen{
        min-width: 0;
        width: 100%;
        max-width: none;
      }

      #flipWrapEast .flippanel{
        left:auto;
        right:0;
      }

      .row1 .cjkvar{
        grid-column:1 / 5;
        grid-row:3;
        min-width:0;
        margin-left:0;
      }

      .metaCountWrap{
        grid-column:5 / 7;
        grid-row:3;
        justify-self:end;
        min-width:0;
      }

      .tabs,
      .subtabs{
        grid-column:1 / -1;
      }

      .flipopenLabel{
        max-width: 100%;
      }
      .flippanel{ width: calc(100vw - 2*var(--pad)); }

    }

.scope-label-phone,
.flipopenLabelPhone{
  display:none;
}

@media (max-width: 600px) and (pointer: coarse){
  header{
    grid-template-columns:max-content repeat(6, minmax(0, 1fr));
  }
  .row1 .scope-toggle{
    grid-column:1 / 2;
    width:max-content;
    justify-self:start;
  }
  .scope-btn{
    flex:0 0 auto;
    padding-left:8px;
    padding-right:8px;
  }
  input[type="search"]{
    grid-column:2 / 8;
  }
  .emojiBtn{
    grid-column:1 / 8;
    justify-self:start;
    width:calc((100vw - 2 * var(--pad) - 12px) / 3);
  }
  #flipWrapWest{
    grid-column:1 / 8;
    justify-self:center;
    width:calc((100vw - 2 * var(--pad) - 12px) / 3);
  }
  #flipWrapEast{
    grid-column:1 / 8;
    justify-self:end;
    width:calc((100vw - 2 * var(--pad) - 12px) / 3);
  }
  .row1 .cjkvar{
    grid-column:1 / 6;
  }
  .metaCountWrap{
    grid-column:6 / 8;
  }

  .scope-label-full{ display:none; }
  .scope-label-phone{ display:inline; }

  .emojiBtnGlyph{
    display:none;
  }

  #flipOpenWest .flipopenLabel,
  #flipOpenEast .flipopenLabel{
    display:none;
  }
  .flipopenLabelPhone{
    display:inline;
  }

  .lex-hero-panel{
    width:calc(100vw - 2 * var(--pad));
    min-width:0;
    padding:14px;
  }
  .lex-hero-title{
    font-size:24px;
  }
  .lex-hero-sep{
    gap:6px;
    max-width:100%;
  }
  .lex-hero-sep-main{
    font-size:60px;
  }
  .lex-hero-sep-mini{
    font-size:28px;
  }
  .lex-hero-explore{
    font-size:22px;
    line-height:1.35;
  }
  .lex-hero .lex-hero-explore-rest{
    display:block;
    font-weight:500;
  }
  .lex-hero .lex-hero-dash{
    display:none;
  }
}

@media (min-width: 601px) and (max-width: 1023px){
  header{
    display:grid;
    grid-template-columns:auto minmax(0, 1fr) auto auto auto minmax(120px, 1fr);
    align-items:center;
    column-gap:6px;
    row-gap:10px;
  }
  .row1,
  .row2{
    display:contents;
  }
  .row3{
    display:none;
  }
  .row1 .scope-toggle{
    grid-column:1;
    grid-row:1;
    width:auto;
    margin-left:0;
  }
  .emojiBtn{
    grid-column:3;
    grid-row:1;
    width:auto;
  }
  #flipWrapWest{
    grid-column:4;
    grid-row:1;
  }
  #flipWrapEast{
    grid-column:5;
    grid-row:1;
  }
  #flipWrapWest,
  #flipWrapEast{
    width:auto;
    min-width:0;
  }
  #flipWrapWest .flipopen{
    width:clamp(110px, 16vw, 150px);
    min-width:0;
    max-width:none;
  }
  #flipWrapEast .flipopen{
    width:clamp(150px, 22vw, 210px);
    min-width:0;
    max-width:none;
  }
  input[type="search"]{
    grid-column:6;
    grid-row:1;
    width:100%;
    min-width:120px;
  }
  .row1 .cjkvar{
    grid-column:1 / 5;
    grid-row:2;
    margin-left:0;
  }
  .metaCountWrap{
    grid-column:5 / 7;
    grid-row:2;
    justify-self:end;
    margin-left:0;
  }
  .tabs,
  .subtabs{
    grid-column:1 / -1;
  }
}

@media (min-width: 1024px){
  header{
    display:grid;
    grid-template-columns:auto minmax(20px, 1fr) auto auto auto 170px;
    align-items:center;
    gap:10px;
  }
  .row1,
  .row2{
    display:contents;
  }
  .row3{
    display:none;
  }
  .row1 .scope-toggle{
    grid-column:1;
    grid-row:1;
    margin-left:0;
  }
  .emojiBtn{
    grid-column:3;
    grid-row:1;
  }
  #flipWrapWest{
    grid-column:4;
    grid-row:1;
  }
  #flipWrapEast{
    grid-column:5;
    grid-row:1;
  }
  input[type="search"]{
    grid-column:6;
    grid-row:1;
    min-width: 140px;
    width: 170px;
    height: 34px;
    line-height: 34px;
  }
  .row1 .cjkvar{
    grid-column:1 / 5;
    grid-row:2;
    margin-left:0;
  }
  .metaCountWrap{
    grid-column:5 / 7;
    grid-row:2;
    justify-self:end;
  }
  .tabs,
  .subtabs{
    grid-column:1 / -1;
  }
  .scope-toggle,
  .powerpill,
  .emojiBtn,
  .cjkvar,
  .flipwrap{
    flex: 0 0 auto;
    width: auto;
  }
  #flipWrapWest,
  #flipWrapEast{
    flex: 0 0 auto;
    min-width: 0;
  }
  #flipWrapWest .flipopen,
  #flipWrapEast .flipopen{
    width: max-content;
    max-width: 200px;
    min-width: 0;
  }
  #flipOpenEast{
    max-width: 240px;
  }
}

:root{
  --lex-font-stack: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.g, .glyph, .glyphs, .grid{
  font-family: var(--lex-font-stack, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
}

#lexFontOverlay{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(1px);
  z-index: 2147483000;
}
#lexFontOverlay[data-on="1"]{ display:flex; }

#lexFontOverlay .box{
  width: min(520px, calc(100vw - 2*var(--pad)));
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,.10);
  background: #fff;
  display:block;
}

#lexFontOverlay .row{
  display:flex;
  gap: 12px;
  align-items: center;
}

#lexFontOverlay .spin{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.18);
  border-top-color: rgba(0,0,0,.65);
  animation: lexSpin 0.9s linear infinite;
  flex: 0 0 auto;
}

@keyframes lexSpin{
  to { transform: rotate(360deg); }
}

#lexFontOverlay .txt{
  display:flex;
  flex-direction:column;
  gap: 3px;
  min-width: 0;
}

#lexFontOverlay .t{
  font-weight: 700;
  font-size: 14px;
  margin: 0;
  line-height: 18px;
  height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#lexFontOverlay .s{
  font-size: 13px;
  color: rgba(0,0,0,.6);
  margin: 0;
  line-height: 16px;
  height: 32px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#lexFontOverlay .btn{
  appearance:none;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.82);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-family: var(--label-font);
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  display: none;
  align-self: flex-start;
  margin-top: 10px;
}

#lexFontOverlay[data-cancel="1"] .btn{ display:inline-flex; }
#lexFontOverlay .btn:hover{ background: rgba(0,0,0,.10); }
#lexFontOverlay .btn:focus{ outline:none; border-color: rgba(0,0,0,.30); }

.metaToggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(0,0,0,.10);
  font-size: 12px;
  color: rgba(0,0,0,.60);
  user-select: none;
}
.metaToggle input{
  width: 14px;
  height: 14px;
  accent-color: #111;
}

  .embed-toggle{
    display: inline-flex;
    align-items: center;
    height: 34px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    position: relative;
  }
  .embed-toggle input{
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .embed-btn{
    appearance: none;
    border: 0;
    background: transparent;
    height: 34px;
    padding: 0 10px;
    font-family: var(--label-font);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .2px;
    color: rgba(0,0,0,.55);
    cursor: pointer;
    white-space: nowrap;
  }
.embed-toggle[data-mode="all"] .embed-all{
  background: rgba(0, 150, 60, .18);
  color: rgba(0, 120, 40, 1);
}
.embed-toggle[data-mode="ui"] .embed-ui{
  background: rgba(0, 150, 60, .18);
  color: rgba(0, 120, 40, 1);
}

@keyframes psPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 180, 70, .30); border-color: rgba(0, 180, 70, .45); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 180, 70, 0); border-color: rgba(0, 180, 70, .65); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 70, 0); border-color: rgba(0, 180, 70, .45); }
}

body[data-power="1"] input[type="search"]{
  animation: psPulse 1.25s ease-out infinite;
}

body[data-power="1"][data-power-building="1"] input[type="search"]{
  animation-duration: .85s;
}

    .eastbar{
      display:flex;
      align-items:center;
      gap: 8px;
      width: 100%;
      min-width: 0;
    }
    .eastbar .flipwrap{
      flex: 1 1 auto;
      min-width: 0;
    }

    .cjkvar{
      display:inline-flex;
      gap: 6px;
      flex: 0 0 auto;
      align-items:center;
      padding-left: 8px;
      border-left: 1px solid rgba(0,0,0,.10);
    }

    .cjkbtn{
      appearance:none;
      border: 1px solid rgba(0,0,0,.14);
      background: #fff;
      border-radius: 999px;
      padding: 6px 9px;
      font-size: 11px;
      font-family: var(--label-font);
      font-weight: 700;
      letter-spacing: .25px;
      cursor: pointer;
      line-height: 1;
      user-select: none;
      opacity: .95;
    }
    .cjkbtn:hover{ background: rgba(0,0,0,.05); }

    .cjkbtn[aria-pressed="true"]{
      border-color: rgba(0, 120, 40, .35);
      background: rgba(0, 150, 60, .18);
      color: rgba(0, 120, 40, 1);
    }

.cjkbtn:disabled{
      opacity: .35;
      cursor: not-allowed;
    }

@keyframes lexBtnBlink{
  0%   { opacity: 1; }
  50%  { opacity: .45; }
  100% { opacity: 1; }
}

.lex-busy{
  animation: lexBtnBlink .55s linear infinite;
}

.lex-busy:hover{
  background: #fff;
}

    @media (max-width: 820px){
      .cjkvar{

        padding-left: 6px;
        gap: 5px;
      }
      .cjkbtn{
        padding: 6px 8px;
        font-size: 10.5px;
      }
    }

#lexInfoPop{
  position: fixed;
  z-index: 2147483200;
  max-width: min(420px, calc(100vw - 24px));
  min-width: 260px;

  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);

  padding: 10px 12px;
  overflow: hidden;

  transform: translateZ(0);
  backdrop-filter: blur(6px);

  font-family: var(--lex-font-stack, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);

  pointer-events: none;
}

#lexInfoPop[hidden]{ display:none !important; }

#lexInfoPop .lip-head{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom: 8px;
}

#lexInfoPop .lip-glyph{
  font-size: 68px;
  line-height: 1;
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--lex-font-stack, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
  background: rgba(0,0,0,.04);
  flex: 0 0 auto;

  overflow: hidden;
}

#lexInfoPop .lip-glyph .lip-glyph-inner{
  display: inline-block;
  white-space: nowrap;
  transform-origin: center center;
  will-change: transform;
}

#lexInfoPop .lip-main{
  min-width: 0;
  flex: 1 1 auto;
}

#lexInfoPop .lip-name{
  font-family: var(--label-font);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  margin: 0 0 4px;
  color: rgba(0,0,0,.90);
  word-break: break-word;
}

#lexInfoPop .lip-sub{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin: 0;
}

#lexInfoPop .lip-pill{
  font-family: var(--label-font);
  font-weight: 300;
  font-size: 11px;
  line-height: 1;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(0,0,0,.78);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#lexInfoPop .lip-cp{
  font-family: var(--label-font);
  font-weight: 300;
  font-size: 11px;
  line-height: 1;
  color: rgba(0,0,0,.78);
  white-space: nowrap;
}

#lexInfoPop .lip-pill[data-support="true"]{
  color: rgba(0,120,0,.95);
}
#lexInfoPop .lip-pill[data-support="false"]{
  color: rgba(180,0,0,.95);
}
#lexInfoPop .lip-pill::after{
  content: "✗";
  color: rgba(180,0,0,.95);
  font-weight: 700;
}
#lexInfoPop .lip-pill[data-support="true"]::after{
  content: "✓";
  color: rgba(0,120,0,.95);
}

#lexInfoPop .lip-grid{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 6px 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,.08);
}

#lexInfoPop .lip-k{
  font-family: var(--label-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2px;
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
}

#lexInfoPop .lip-v{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  font-size: 12.5px;
  color: rgba(0,0,0,.86);
  word-break: break-word;
}

#lexInfoPop .lip-v.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(0,0,0,.82);
}

#lexInfoPop .lip-v.kdef{
  font-family: var(--label-font);
  font-weight: 700;
  color: rgba(0,0,0,.92);
}

.g[data-missing="1"]{

  background: rgba(255, 192, 203, .35);

  color: rgba(0,0,0,.22);

  outline: 1px solid rgba(255, 105, 180, .25);
}

:root{
  --pill-h: 40px;
  --pill-w: 230px;
  --pill-r: 999px;
  --pill-pad: 3px;

  --curated: #16a34a;
  --complete: #dc2626;

  --pill-bg: rgba(17,24,39,.06);
  --pill-border: rgba(17,24,39,.14);
  --pill-ink: rgba(17,24,39,.88);
  --pill-muted: rgba(17,24,39,.55);
}

.scopeSwitch{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.scopeSwitch > input{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.scopePill{
  position: relative;
  width: var(--pill-w);
  height: var(--pill-h);
  padding: var(--pill-pad);
  border-radius: var(--pill-r);
  border: 1px solid var(--pill-border);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(0,0,0,.04),
    0 6px 20px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.scopeSide{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  font-family: var(--label-font);
  padding: 2px 6px;
}

.scopeNum{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  color: var(--pill-ink);
}

.scopeLbl{
  margin-top: 2px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--pill-muted);
}

.scopeThumb{
  position: absolute;
  z-index: 1;
  top: var(--pill-pad);
  left: var(--pill-pad);
  width: calc(50% - (var(--pill-pad) * 2));
  height: calc(100% - (var(--pill-pad) * 2));
  border-radius: calc(var(--pill-r) - var(--pill-pad));
  background: var(--pill-bg);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.06),
    0 6px 16px rgba(0,0,0,.10);
}

.scopeSwitch > input:checked + .scopePill .scopeThumb{
  transform: translateX(0);
  background: color-mix(in srgb, var(--curated) 18%, #fff);
}

.scopeSwitch > input:not(:checked) + .scopePill .scopeThumb{
  transform: translateX(100%);
  background: color-mix(in srgb, var(--complete) 16%, #fff);
}

.scopeSwitch > input:checked + .scopePill .scopeCurated .scopeNum{ color: var(--curated); }
.scopeSwitch > input:checked + .scopePill .scopeCurated .scopeLbl{ color: var(--curated); }

.scopeSwitch > input:not(:checked) + .scopePill .scopeComplete .scopeNum{ color: var(--complete); }
.scopeSwitch > input:not(:checked) + .scopePill .scopeComplete .scopeLbl{ color: var(--complete); }

.scopeSwitch > input:checked + .scopePill .scopeComplete .scopeNum{ color: rgba(17,24,39,.45); }
.scopeSwitch > input:checked + .scopePill .scopeComplete .scopeLbl{ color: rgba(17,24,39,.38); }

.scopeSwitch > input:not(:checked) + .scopePill .scopeCurated .scopeNum{ color: rgba(17,24,39,.45); }
.scopeSwitch > input:not(:checked) + .scopePill .scopeCurated .scopeLbl{ color: rgba(17,24,39,.38); }

.scopeSwitch > input:focus-visible + .scopePill{
  outline: 3px solid rgba(37,99,235,.28);
  outline-offset: 2px;
}

.srOnly{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root{
  --embed-pill-h: 40px;
  --embed-pill-w: 210px;
  --embed-pill-r: 999px;
  --embed-pill-pad: 3px;

  --embed-all: #2563eb;
  --embed-ui:  #111827;

  --embed-bg: rgba(17,24,39,.06);
  --embed-border: rgba(17,24,39,.14);
  --embed-ink: rgba(17,24,39,.88);
  --embed-muted: rgba(17,24,39,.50);
}

.embedSwitch{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.embedSwitch > input{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.embedPill{
  position: relative;
  width: var(--embed-pill-w);
  height: var(--embed-pill-h);
  padding: var(--embed-pill-pad);
  border-radius: var(--embed-pill-r);
  border: 1px solid var(--embed-border);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(0,0,0,.04),
    0 6px 20px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.embedSide{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  font-family: var(--label-font);
  padding: 2px 6px;
}

.embedNum{
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .2px;
  color: var(--embed-ink);
}

.embedLbl{
  margin-top: 2px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--embed-muted);
}

.embedThumb{
  position: absolute;
  z-index: 1;
  top: var(--embed-pill-pad);
  left: var(--embed-pill-pad);
  width: calc(50% - (var(--embed-pill-pad) * 2));
  height: calc(100% - (var(--embed-pill-pad) * 2));
  border-radius: calc(var(--embed-pill-r) - var(--embed-pill-pad));
  background: var(--embed-bg);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.06),
    0 6px 16px rgba(0,0,0,.10);
}

.embedSwitch > input:checked + .srOnly + .embedPill .embedThumb{
  transform: translateX(0);
  background: color-mix(in srgb, var(--embed-all) 16%, #fff);
}

.embedSwitch > input:not(:checked) + .srOnly + .embedPill .embedThumb{
  transform: translateX(100%);
  background: color-mix(in srgb, var(--embed-ui) 10%, #fff);
}

.embedSwitch > input:checked + .srOnly + .embedPill .embedAll .embedNum,
.embedSwitch > input:checked + .srOnly + .embedPill .embedAll .embedLbl{
  color: var(--embed-all);
}

.embedSwitch > input:not(:checked) + .srOnly + .embedPill .embedUi .embedNum,
.embedSwitch > input:not(:checked) + .srOnly + .embedPill .embedUi .embedLbl{
  color: var(--embed-ui);
}

.embedSwitch > input:checked + .srOnly + .embedPill .embedUi .embedNum,
.embedSwitch > input:checked + .srOnly + .embedPill .embedUi .embedLbl{
  color: rgba(17,24,39,.40);
}

.embedSwitch > input:not(:checked) + .srOnly + .embedPill .embedAll .embedNum,
.embedSwitch > input:not(:checked) + .srOnly + .embedPill .embedAll .embedLbl{
  color: rgba(17,24,39,.40);
}

.embedSwitch > input:focus-visible + .srOnly + .embedPill{
  outline: 3px solid rgba(37,99,235,.28);
  outline-offset: 2px;
}

label.toggle{
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
label.toggle input{
  touch-action: pan-y;
}

.powerpill{
  display: inline-flex;
  align-items: center;
  height: 34px;
  border-radius: 9px;
  overflow: visible;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  gap: 0;
}

.powerpill-toggle{
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  cursor: pointer;
  user-select: none;
  background: rgba(37, 99, 235, .16);
  border-right: 1px solid rgba(0,0,0,.10);
  border-radius: 9px 0 0 9px;
}

.powerpill-toggle input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.powerpill-label{
  font-family: var(--label-font);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  color: rgba(18, 55, 140, 1);
  white-space: nowrap;
}

.powerpill.is-on .powerpill-toggle{
  background: rgba(0, 150, 60, .18);
}
.powerpill.is-on .powerpill-label{
  color: rgba(0, 120, 40, 1);
}

.powerpill-toggle input:checked ~ .powerpill-label{

}

.powerpill-toggle input:checked + .powerpill-label{

}
.powerpill-toggle:focus-within{
  outline: none;
}

.powerpill-toggle input:checked + .powerpill-label{

}

.powerpill-scope{
  display: inline-flex;
  align-items: center;
  height: 34px;
  margin: 0;
  padding: 0;
  background: rgba(255,255,255,.7);
  border-radius: 0 9px 9px 0;
}

.powerpill-btn{
  height: 34px;
  border: 0;
  background: transparent;
  padding: 0 24px 0 10px;
  font-family: var(--label-font);
  font-weight: 800;
  font-size: 12px;
  color: rgba(0,0,0,.72);
  cursor: pointer;
  outline: none;
  appearance: none;
}

.powerpill-scope{
  position: relative;
}
.powerpill-scope::after{
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(0,0,0,.55);
  pointer-events: none;
}
.powerpill-panel{
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 160px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 6px;
  z-index: 200;
}
.powerpill-item{
  width: 100%;
  height: 32px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 8px;
  text-align: left;
  padding: 0 8px;
  font-family: var(--label-font);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.powerpill-item:hover{
  color: rgba(0,0,0,.55);
}
.powerpill-item[aria-selected="true"]{
  border-color: rgba(0, 120, 40, .35);
  background: rgba(0, 150, 60, .18);
  color: rgba(0, 120, 40, 1);
}

.powerpill:focus-within{
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
  border-color: rgba(37, 99, 235, .35);
}

.powerpill-toggle input:checked{

}
.powerpill-toggle input:checked + .powerpill-label{

}

.powerpill.is-on .powerpill-toggle{
  background: rgba(0, 150, 60, .18);
}

.scope-toggle{
  display: inline-flex;
  align-items: center;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  position: relative;
}
.scope-toggle input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.scope-btn{
  appearance: none;
  border: 0;
  background: transparent;
  height: 34px;
  padding: 0 10px;
  font-family: var(--label-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2px;
  color: rgba(0,0,0,.55);
  cursor: pointer;
  white-space: nowrap;
}
.scope-toggle[data-mode="safe"] .scope-global:hover{
  background: rgba(0, 150, 60, .18);
}
.scope-toggle[data-mode="global"] .scope-safe:hover{
  background: rgba(0, 150, 60, .18);
}
.scope-toggle[data-mode="safe"] .scope-safe{
  background: rgba(0, 150, 60, .18);
  color: rgba(0, 120, 40, 1);
}
.scope-toggle[data-mode="global"] .scope-global{
  background: rgba(0, 150, 60, .18);
  color: rgba(0, 120, 40, 1);
}

#lexInfoPop .lip-main .lip-sub.lip-sub-ios{
  margin-top: 4px;
}
#lexInfoPop .lip-main .lip-sub.lip-sub-android{
  margin-top: 4px;
}

.lip-head{
  align-items: stretch;
}

.lip-head .lip-main{
  display: flex;
  flex-direction: column;
}

.lip-head .lip-main .lip-pills{
  margin-top: auto;
  padding-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lip-head .lip-main .lip-pills .lip-sub{
  margin: 0;
}
