:root{
  color-scheme:dark;
  --bg:#07100c;
  --panel:rgba(15,24,19,.88);
  --panel2:rgba(29,43,35,.82);
  --panel3:rgba(58,42,31,.72);
  --text:#f4f1e8;
  --muted:#aab8ae;
  --faint:#77887d;
  --line:rgba(211,233,218,.16);
  --line-strong:rgba(231,243,235,.28);
  --accent:#6fdaa0;
  --accent-strong:#31b978;
  --accent2:#f0a64d;
  --violet:#9b82e8;
  --danger:#ff796f;
  --ok:#6fdaa0;
  --warn:#f0a64d;
  --shadow:0 18px 48px rgba(0,0,0,.34);
  --radius:8px;
}

/* ВНИМАНИЕ: значения цветов из этого блока в светлой теме НЕ действуют — ниже по файлу
   есть второй :root[data-theme="light"] с той же специфичностью, и он выигрывает по
   позиции. Здесь живой остаётся только color-scheme. Правки палитры вносите там. */
:root[data-theme="light"]{
  color-scheme:light;
  --bg:#eef4ee;
  --panel:rgba(255,255,250,.9);
  --panel2:rgba(237,244,238,.86);
  --panel3:rgba(254,246,231,.82);
  --text:#16231d;
  --muted:#5e7067;
  --faint:#7a8b81;
  --line:rgba(35,63,49,.16);
  --line-strong:rgba(35,63,49,.28);
  --accent:#177e58;
  --accent-strong:#126b4b;
  --accent2:#bd761b;
  --violet:#6253b3;
  --danger:#ba3932;
  --ok:#177e58;
  --warn:#a66a19;
  --shadow:0 16px 38px rgba(22,35,29,.12);
}
*{box-sizing:border-box}
html{min-height:100%;background:var(--bg);scrollbar-gutter:stable}
body{
  min-height:100vh;
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:14px/1.45 Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:0;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:url("assets/armillaria-bg.png") center/cover no-repeat;
  filter:saturate(1.06) contrast(1.06);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:linear-gradient(115deg,rgba(3,8,6,.91),rgba(8,18,14,.78) 44%,rgba(34,22,19,.72));
}
:root[data-theme="light"] body::after{
  background:linear-gradient(115deg,rgba(238,244,238,.86),rgba(244,248,242,.8) 48%,rgba(251,238,214,.74));
}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
h1,h2,h3,p{margin:0}
h1{font-size:30px;line-height:1.08}
h2{font-size:18px;line-height:1.2}
h3{font-size:15px;line-height:1.25}
.sub{color:var(--muted);margin-top:6px;overflow-wrap:break-word}
.tiny{font-size:12px}
.muted{color:var(--muted)}
.ok-text{color:var(--ok)}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}
.mt{margin-top:16px}
.stack{display:grid;gap:12px;align-content:start}
.spacer{flex:1}
.grid{display:grid;gap:14px}
.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.tight-grid{gap:10px}
.is-hidden{display:none!important}
.brand{display:flex;gap:12px;align-items:center;min-width:0}
.brand-mark{
  width:42px;
  height:42px;
  flex:0 0 auto;
  border:1px solid var(--line-strong);
  border-radius:8px;
  background:rgba(246,242,230,.08);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 0 0 1px rgba(111,218,160,.08),0 12px 28px rgba(0,0,0,.22);
}
.brand-mark img{width:100%;height:100%;object-fit:cover}
.brand-title{display:grid;gap:2px;min-width:0}
.brand-title h1,.brand-title h2{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.auth-boot{
  min-height:100vh;
  min-height:100svh;
  display:grid;
  place-items:center;
  padding:24px;
  background:
    radial-gradient(circle at 50% 42%,rgba(111,218,160,.1),transparent 34%),
    linear-gradient(90deg,rgba(1,7,5,.96),rgba(1,5,4,.86)),
    url("assets/login-hero-hd.jpg") center/cover no-repeat;
}
.boot-card{
  display:grid;
  min-width:min(320px,100%);
  justify-items:center;
  gap:12px;
  padding:24px;
  border:1px solid rgba(111,218,160,.24);
  border-radius:8px;
  background:rgba(4,16,12,.82);
  box-shadow:0 24px 80px rgba(0,0,0,.36);
}
.boot-card .brand-mark{
  width:58px;
  height:58px;
}
.boot-card .brand-mark img{
  object-fit:contain;
  filter:drop-shadow(0 0 14px rgba(111,218,160,.4));
}
.boot-card strong{
  color:var(--accent);
  font-size:16px;
  line-height:1;
  letter-spacing:0;
}
.boot-card.has-preauth-release{
  width:min(520px,100%);
}
.boot-card.has-preauth-release .preauth-client-release{
  width:100%;
  min-width:0;
  justify-self:stretch;
  text-align:left;
}
.spinner{
  width:34px;
  height:34px;
  border:2px solid var(--line-strong);
  border-top-color:var(--accent);
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.login{
  min-height:100vh;
  display:grid;
  align-items:center;
  padding:28px;
}
.login-card{
  width:min(1120px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(360px,1fr);
  gap:18px;
  min-width:0;
}
.login-intro,.login-actions,.sidebar,.topbar,.card,.auth-section{
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  min-width:0;
}
.login-intro{
  width:100%;
  min-height:620px;
  border-radius:var(--radius);
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  position:relative;
  background:
    linear-gradient(180deg,rgba(4,11,8,.72),rgba(13,31,23,.88)),
    url("assets/armillaria-bg.png") center/cover no-repeat;
}
.login-intro::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:42%;
  background:linear-gradient(0deg,rgba(111,218,160,.16),transparent);
  pointer-events:none;
}
.login-copy{position:relative;z-index:1;max-width:430px}
.login-copy h1{font-size:36px}
.login-modules{display:grid;gap:10px;position:relative;z-index:1}
.module-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:10px;
  align-items:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:8px;
  padding:10px;
}
.module-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 18px rgba(111,218,160,.75);
}
.module-dot.violet{background:var(--violet);box-shadow:0 0 18px rgba(155,130,232,.72)}
.login-actions{
  width:100%;
  border-radius:var(--radius);
  padding:18px;
  display:grid;
  gap:14px;
}
.login-toolbar{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}
.auth-status{
  min-width:0;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:12px;
}
.auth-status .badge{flex:0 0 auto}
.auth-status span:last-child{
  min-width:0;
  overflow-wrap:break-word;
}
.seg{
  display:inline-flex;
  flex:0 0 auto;
  border:1px solid var(--line);
  border-radius:7px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.seg button{
  min-height:30px;
  min-width:38px;
  border:0;
  border-right:1px solid var(--line);
  background:transparent;
  color:var(--muted);
  cursor:pointer;
}
.seg button:last-child{border-right:0}
.seg button.active{background:var(--panel2);color:var(--text)}
.auth-section{box-shadow:none;border-radius:var(--radius);padding:14px;background:rgba(12,20,16,.64)}
:root[data-theme="light"] .auth-section{background:rgba(255,255,250,.72)}
.authkit-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin-bottom:12px;
}
.authkit-item{
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:10px;
  display:grid;
  gap:4px;
}
.authkit-item>span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--faint);
  box-shadow:0 0 0 3px rgba(119,136,125,.12);
}
.authkit-item.ok>span{background:var(--ok);box-shadow:0 0 0 3px rgba(111,218,160,.14),0 0 18px rgba(111,218,160,.45)}
.authkit-item.warn>span{background:var(--warn);box-shadow:0 0 0 3px rgba(240,166,77,.13)}
.authkit-item.bad>span{background:var(--danger);box-shadow:0 0 0 3px rgba(255,121,111,.13)}
.authkit-item b{font-size:12px;color:var(--text);overflow-wrap:break-word}
.authkit-item p{font-size:11px;color:var(--muted);line-height:1.3;overflow-wrap:break-word}
.section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}
.btn{
  min-height:38px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  color:var(--text);
  border-radius:7px;
  padding:9px 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:border-color .15s,background-color .15s;
}
.btn:hover{border-color:var(--accent);background:rgba(111,218,160,.1)}
.btn:active{transform:none}
.btn.primary{background:linear-gradient(180deg,var(--accent),var(--accent-strong));border-color:transparent;color:#06110c;font-weight:760}
.btn.warn{background:var(--accent2);border-color:var(--accent2);color:#1d1305}
.btn.danger{color:var(--danger)}
.btn.ghost{background:transparent}
.btn.sm{min-height:30px;padding:5px 9px;font-size:12px}
.btn:disabled{opacity:.55;cursor:not-allowed;transform:none}
.btn.is-disabled{opacity:.55;cursor:not-allowed;transform:none}
.btn-row{display:flex;gap:8px;flex-wrap:wrap;align-items:center;align-self:start}
.wallet-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.wallet-grid>.btn,.wallet-grid>.wallet-card{width:100%;min-width:0}
.wallet-card{
  position:relative;
  min-height:112px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  color:var(--text);
  padding:12px;
  display:grid;
  gap:7px;
  align-content:start;
  text-align:left;
  cursor:pointer;
}
.wallet-card:hover{border-color:var(--accent);background:rgba(111,218,160,.09)}
.wallet-card.primary{background:linear-gradient(180deg,rgba(111,218,160,.18),rgba(49,185,120,.1));border-color:rgba(111,218,160,.42)}
.wallet-card:disabled{opacity:.56;cursor:not-allowed}
.wallet-card.is-busy{opacity:1}
.wallet-card.is-busy::after{
  content:attr(data-busy-label);
  position:absolute;
  inset:0;
  border-radius:8px;
  display:grid;
  place-items:center;
  padding:12px;
  background:rgba(4,12,8,.88);
  color:var(--text);
  font-size:12px;
  font-weight:780;
  text-align:center;
}
.wallet-card-top{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
.wallet-icon{
  width:32px;
  height:32px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border:1px solid rgba(111,218,160,.42);
  border-radius:8px;
  background:rgba(111,218,160,.1);
  color:var(--ok);
  font-size:10px;
  font-weight:860;
}
.wallet-name{font-weight:820}
.wallet-desc{font-size:12px;line-height:1.35;color:var(--muted)}
.wallet-provider-count{
  display:block;
  margin-top:auto;
  color:var(--ok);
  font-size:11px;
  font-weight:760;
}
.wc-project-box{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr) auto;
  gap:8px;
  align-items:end;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.032);
  padding:10px;
  margin-top:8px;
}
.wc-project-box p{grid-column:1 / -1}
.downloads-grid{display:grid;gap:8px}
.download-card{
  border:1px solid var(--line);
  border-radius:8px;
  background:
    linear-gradient(135deg,rgba(111,218,160,.08),rgba(240,166,77,.06)),
    rgba(255,255,255,.035);
  padding:12px;
  min-height:126px;
  display:grid;
  gap:10px;
  align-content:space-between;
}
.download-card.recommended{
  border-color:rgba(111,218,160,.58);
  background:
    linear-gradient(135deg,rgba(111,218,160,.16),rgba(240,166,77,.07)),
    rgba(255,255,255,.045);
  box-shadow:inset 0 0 24px rgba(111,218,160,.08);
}
.download-card.unavailable{
  opacity:.78;
  background:rgba(255,255,255,.025);
}
.download-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.download-title{display:flex;align-items:flex-start;gap:10px;min-width:0}
.download-title>div{min-width:0}
.os-badge{
  width:38px;
  height:38px;
  border:1px solid rgba(111,218,160,.45);
  border-radius:8px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  background:rgba(111,218,160,.12);
  color:var(--ok);
  font-size:11px;
  font-weight:860;
}
.platform-card{min-height:168px}
.download-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.download-tags span{
  border:1px solid var(--line);
  border-radius:999px;
  padding:3px 7px;
  color:var(--muted);
  font-size:11px;
  line-height:1.2;
  background:rgba(255,255,255,.035);
}
.checksum{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.field{display:grid;gap:6px}
.field label{font-weight:650;font-size:12px;color:var(--muted)}
.wide-field{grid-column:1 / -1}
input,select,textarea{
  width:100%;
  min-width:0;
  border:1px solid var(--line);
  border-radius:7px;
  background:rgba(1,8,5,.42);
  color:var(--text);
  padding:9px 10px;
}
:root[data-theme="light"] input,:root[data-theme="light"] select,:root[data-theme="light"] textarea{background:rgba(255,255,255,.74)}
.field-readonly-status{
  display:flex;
  align-items:center;
  width:100%;
  min-width:0;
  min-height:38px;
  padding:9px 10px;
  border:1px solid var(--line);
  border-radius:7px;
  background:rgba(1,8,5,.42);
  color:var(--text);
  font-size:13px;
  line-height:1.4;
  white-space:normal;
  overflow-wrap:anywhere;
}
:root[data-theme="light"] .field-readonly-status{background:rgba(255,255,255,.74)}
textarea{min-height:100px;resize:vertical}
details{border:1px solid var(--line);border-radius:8px;padding:10px 12px;background:rgba(255,255,255,.035)}
summary{cursor:pointer}
.shell{min-height:100vh;display:grid;grid-template-columns:292px minmax(0,1fr)}
.shell main{min-width:0}
.sidebar{
  border-top:0;
  border-bottom:0;
  border-left:0;
  border-radius:0;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.tree-nav{display:grid;gap:7px}
.tree-group{
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  overflow:hidden;
}
.tree-group.active{
  border-color:rgba(111,218,160,.42);
  box-shadow:0 0 0 1px rgba(111,218,160,.14),inset 0 0 20px rgba(111,218,160,.07);
}
.tree-root{
  display:grid;
  grid-template-columns:14px minmax(0,1fr);
  gap:8px;
  align-items:center;
  min-height:48px;
  padding:10px;
  color:var(--text);
}
.tree-caret{
  width:0;
  height:0;
  border-left:5px solid var(--muted);
  border-top:4px solid transparent;
  border-bottom:4px solid transparent;
  transform:rotate(90deg);
}
.tree-root-main{display:grid;gap:1px;min-width:0}
.tree-label{font-weight:820}
.tree-sub{
  color:var(--muted);
  font-size:11px;
  line-height:1.25;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.tree-children{
  display:grid;
  gap:2px;
  padding:0 6px 7px 26px;
}
.tree-leaf{
  display:grid;
  grid-template-columns:8px minmax(0,1fr);
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:6px 8px;
  border:1px solid transparent;
  border-radius:7px;
  color:var(--muted);
}
.tree-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid var(--line-strong);
}
.tree-leaf.active,.tree-leaf:hover{
  color:var(--text);
  background:var(--panel2);
  border-color:rgba(111,218,160,.25);
}
.tree-leaf.active .tree-dot{border-color:var(--accent);background:var(--accent)}
.side-nav{display:grid;gap:6px}
.side-nav a{
  display:flex;
  gap:9px;
  align-items:center;
  min-height:38px;
  padding:9px 10px;
  border-radius:7px;
  color:var(--muted);
  border:1px solid transparent;
}
.side-nav a.active,.side-nav a:hover{
  background:var(--panel2);
  color:var(--text);
  border-color:rgba(111,218,160,.25);
}
.account-panel{
  display:grid;
  gap:9px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:8px;
  padding:10px;
}
.node-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--faint);
  box-shadow:0 0 0 3px rgba(119,136,125,.14);
}
.node-dot.ok{background:var(--ok);box-shadow:0 0 0 3px rgba(111,218,160,.14),0 0 18px rgba(111,218,160,.5)}
.node-dot.warn{background:var(--warn);box-shadow:0 0 0 3px rgba(240,166,77,.14)}
.node-dot.bad{background:var(--danger);box-shadow:0 0 0 3px rgba(255,121,111,.14)}
.area-card{
  display:grid;
  gap:7px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:8px;
  padding:12px;
}
.topbar{
  min-height:70px;
  border-top:0;
  border-right:0;
  border-left:0;
  border-radius:0;
  display:grid;
  align-content:center;
  gap:9px;
  padding:10px 18px;
  position:sticky;
  top:0;
  z-index:5;
}
.topbar-main{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.topbar-main>div:first-child{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
.area-tabs{
  display:flex;
  gap:8px;
  min-width:0;
  overflow-x:auto;
  scrollbar-width:none;
}
.area-tabs::-webkit-scrollbar{display:none}
.area-tabs a{
  flex:0 0 auto;
  border:1px solid var(--line);
  border-radius:7px;
  padding:8px 11px;
  color:var(--muted);
  background:rgba(255,255,255,.035);
  white-space:nowrap;
}
.area-tabs a.mode-tab{
  display:flex;
  align-items:center;
  min-width:214px;
  width:calc((100vw - 340px) / 3);
  max-width:360px;
  min-height:44px;
  padding:9px 12px;
  border-radius:8px;
  font-weight:820;
  color:var(--text);
  background:var(--panel2);
}
.area-tabs a.mode-tab.active{
  border-color:rgba(111,218,160,.65);
  box-shadow:0 0 0 1px rgba(111,218,160,.26),inset 0 0 18px rgba(111,218,160,.12);
  transform:translateY(-1px);
}
.section-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:7px;
}
.section-tabs button,.section-tabs a,.section-tabs span{
  min-height:36px;
  border:1px solid transparent;
  border-radius:7px;
  background:transparent;
  color:var(--muted);
  padding:8px 11px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.section-tabs button.active,.section-tabs a.active,.section-tabs span.active{
  background:var(--panel2);
  border-color:rgba(111,218,160,.42);
  color:var(--text);
}
.readiness-card{margin-top:14px}
.readiness-card.compact{box-shadow:none}
.readiness-list{display:grid;gap:8px}
.readiness-item{
  display:grid;
  grid-template-columns:68px minmax(0,1fr);
  gap:10px;
  align-items:start;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:9px 10px;
}
.readiness-item>span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  border-radius:999px;
  border:1px solid var(--line);
  font-size:10px;
  font-weight:860;
  text-transform:uppercase;
}
.readiness-item b{display:block;overflow-wrap:break-word}
.readiness-item p{margin-top:3px;color:var(--muted);font-size:12px;line-height:1.35;overflow-wrap:break-word}
.readiness-item.ok>span{border-color:rgba(111,218,160,.48);color:var(--ok);background:rgba(111,218,160,.1)}
.readiness-item.warn>span{border-color:rgba(240,166,77,.5);color:var(--warn);background:rgba(240,166,77,.09)}
.readiness-item.bad>span{border-color:rgba(255,121,111,.5);color:var(--danger);background:rgba(255,121,111,.08)}
.content{padding:18px;max-width:1280px;width:100%;min-width:0}
.mobile-nav{display:none}
.role-chip,.badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  border-radius:999px;
  padding:4px 8px;
  border:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
  min-width:0;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  /* Бейдж не сжимается ниже собственного текста.
     Измерено на странице загрузок: «релиз проверен» требует 106 px, а
     соседи по flex-строке ужимали его до 94 — подпись обрезалась многоточием
     на шести бейджах сразу. Многоточие здесь бессмысленно: текст короткий и
     несёт статус целиком, а «релиз пров…» не сообщает ничего.
     max-width:100% выше остаётся: в по-настоящему узком контейнере бейдж
     по-прежнему ужмётся, но не раньше, чем это действительно понадобится. */
  flex-shrink:0;
}
.role-chip.on,.badge.ok{border-color:rgba(111,218,160,.45);color:var(--ok);background:rgba(111,218,160,.1)}
.role-chip.warn,.badge.warn{border-color:rgba(240,166,77,.5);color:var(--warn);background:rgba(240,166,77,.09)}
.role-chip.bad,.badge.bad{border-color:rgba(255,121,111,.48);color:var(--danger);background:rgba(255,121,111,.08)}
.linked-wallets{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.linked-wallet-card{
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.032);
  padding:10px;
  display:grid;
  gap:9px;
}
.linked-wallet-card.active{
  border-color:rgba(111,218,160,.34);
  background:rgba(111,218,160,.055);
}
.linked-wallet-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  min-width:0;
}
.linked-wallet-head b{min-width:0;overflow:hidden;text-overflow:ellipsis}
.card{
  border-radius:var(--radius);
  padding:14px;
  width:100%;
}
.card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px}
.finance-hero{
  display:grid;
  grid-template-columns:minmax(240px,.78fr) minmax(0,1.22fr);
  gap:14px;
  align-items:stretch;
}
.finance-balance{
  min-height:180px;
  display:grid;
  align-content:end;
  background:
    linear-gradient(135deg,rgba(111,218,160,.16),rgba(240,166,77,.08)),
    var(--panel);
}
.modal-backdrop{
  position:fixed;
  inset:0;
  z-index:40;
  display:grid;
  place-items:center;
  padding:18px;
  background:rgba(1,6,4,.72);
  backdrop-filter:blur(14px);
}
.modal-card{
  width:min(760px,100%);
  max-height:min(760px,calc(100vh - 36px));
  overflow:auto;
  border:1px solid var(--line-strong);
  border-radius:var(--radius);
  background:var(--panel);
  box-shadow:var(--shadow);
  padding:14px;
}
.modal-card.wc-modal{width:min(840px,100%)}
.modal-card.injected-wallet-modal{width:min(680px,100%)}
.injected-wallet-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.injected-wallet-card{
  min-width:0;
  min-height:72px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:10px;
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
  text-align:left;
  cursor:pointer;
}
.injected-wallet-card:hover{
  border-color:rgba(111,218,160,.54);
  background:rgba(111,218,160,.08);
}
.injected-wallet-logo{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:8px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:rgba(111,218,160,.09);
  color:var(--ok);
  font-size:11px;
  font-weight:860;
}
.injected-wallet-logo img{width:100%;height:100%;object-fit:cover}
.injected-wallet-copy{min-width:0;display:grid;gap:3px}
.injected-wallet-copy b,.injected-wallet-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.injected-wallet-copy small{color:var(--muted);font-size:10px}
.wc-modal .copybox input{font-size:11px}
.wc-wallet-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.wc-wallet-card{
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.04);
  padding:10px;
  display:flex;
  align-items:center;
  gap:9px;
}
.wc-wallet-card:hover{border-color:rgba(111,218,160,.5);background:rgba(111,218,160,.08)}
.wc-wallet-card span:last-child{display:grid;gap:2px;min-width:0}
.wc-wallet-card b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.wc-wallet-card small{color:var(--muted);font-size:11px}
.wc-qr{width:100%;min-height:210px}
.dashboard-hero{
  position:relative;
  isolation:isolate;
  min-height:330px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:16px;
  align-items:end;
  padding:22px;
  background:url("assets/dashboard-hero.png") center/cover no-repeat;
}
.dashboard-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(90deg,rgba(2,7,5,.9),rgba(5,13,9,.72) 44%,rgba(5,13,9,.34));
}
.dashboard-hero-copy{max-width:620px;min-width:0}
.dashboard-hero .identity-grid{
  background:rgba(3,11,7,.58);
  border:1px solid rgba(231,243,235,.18);
  border-radius:8px;
  padding:12px;
  backdrop-filter:blur(12px);
}
.deposit-invoice-grid{
  display:grid;
  grid-template-columns:184px minmax(0,1fr);
  gap:12px;
  align-items:start;
}
#paymentModal .modal-card{width:min(980px,100%)}
.deposit-card{display:grid;gap:0;background:rgba(2,10,8,.72)}
.deposit-card .file-state-head{align-items:flex-start;gap:12px}
.deposit-card .file-state-head>div{min-width:0;display:grid;gap:4px}
.deposit-chain-mark{
  width:184px;
  min-height:184px;
  display:grid;
  place-content:center;
  gap:7px;
  border:1px solid rgba(111,218,160,.32);
  border-radius:8px;
  background:
    radial-gradient(circle at 50% 36%,rgba(111,218,160,.18),transparent 48%),
    rgba(2,12,9,.9);
  color:var(--text);
  text-align:center;
}
.deposit-chain-mark strong{font-size:25px;letter-spacing:.05em}
.deposit-chain-mark span{color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.12em}
.deposit-facts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
  min-width:0;
}
.deposit-facts>div,
.deposit-contract-grid>div{
  min-width:0;
  display:grid;
  gap:4px;
  padding:9px 10px;
  border:1px solid var(--line);
  border-radius:7px;
  background:rgba(255,255,255,.025);
}
.deposit-facts span,
.deposit-contract-grid span,
.deposit-address-block>span{
  color:var(--muted);
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.deposit-facts b,.deposit-contract-grid b{min-width:0;overflow-wrap:anywhere;font-size:11px}
.deposit-facts a,.deposit-contract-grid a,.deposit-submission-list a{color:var(--accent);font-size:10px}
.deposit-fact-wide{grid-column:1/-1}
.deposit-confirmation-meter{
  display:block;
  height:4px;
  margin-top:3px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}
.deposit-confirmation-meter i{display:block;width:var(--deposit-confirmations);height:100%;background:var(--accent)}
.deposit-address-block{
  display:grid;
  gap:5px;
  padding:10px 11px;
  border:1px solid var(--line);
  border-radius:7px;
  background:rgba(1,8,6,.72);
}
.deposit-address-block b{overflow-wrap:anywhere;font-size:11px}
.evm-deposit-flow{
  padding:12px;
  border:1px solid rgba(240,166,77,.32);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(240,166,77,.07),rgba(155,130,232,.05));
}
.deposit-contract-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
.deposit-submission-list{display:grid;gap:7px}
.deposit-submission-list>div{display:flex;align-items:center;gap:8px;min-width:0;flex-wrap:wrap}
.deposit-submission-list b{min-width:0;overflow-wrap:anywhere}
.qr-box{
  width:184px;
  min-height:184px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  display:grid;
  place-items:center;
  padding:8px;
  color:#405047;
}
.qr-box svg{display:block;width:168px;height:168px}
.compact-health>div{grid-template-columns:84px minmax(0,1fr)}
@media(max-width:700px){
  #paymentModal{padding:8px}
  #paymentModal .modal-card{max-height:calc(100svh - 16px);padding:11px}
  .deposit-invoice-grid{grid-template-columns:1fr}
  .deposit-chain-mark,.qr-box{width:min(184px,100%);min-height:168px;justify-self:center}
  .deposit-facts,.deposit-contract-grid{grid-template-columns:1fr}
  .deposit-fact-wide{grid-column:auto}
  .deposit-card .row-actions{display:grid;grid-template-columns:1fr}
  .deposit-card .row-actions>.btn{width:100%}
}
.domain-hero{
  display:grid;
  grid-template-columns:minmax(280px,.82fr) minmax(0,1.18fr);
  gap:14px;
  align-items:start;
}
.domain-summary{
  min-height:100%;
  background:
    linear-gradient(135deg,rgba(5,12,8,.78),rgba(24,16,28,.66)),
    url("assets/domain-hero.png") center/cover no-repeat;
}
.domain-manage-summary{background:linear-gradient(135deg,rgba(111,218,160,.12),rgba(155,130,232,.08)),var(--panel)}
.domain-flow{
  display:grid;
  gap:10px;
}
.domain-flow>div{
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  gap:4px 10px;
  align-items:start;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:10px;
}
.domain-flow span{
  grid-row:1 / span 2;
  width:28px;
  height:28px;
  border-radius:7px;
  display:grid;
  place-items:center;
  background:rgba(111,218,160,.14);
  color:var(--ok);
  font-weight:820;
}
.module-toggle-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.module-toggle{
  min-height:96px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  color:var(--text);
  display:grid;
  gap:4px;
  align-content:start;
  text-align:left;
  padding:11px;
  cursor:pointer;
  transition:border-color .15s,background-color .15s,box-shadow .15s,transform .15s;
}
.module-toggle span{color:var(--muted);font-size:12px;line-height:1.35}
.module-toggle.active{
  border-color:rgba(111,218,160,.62);
  background:linear-gradient(135deg,rgba(111,218,160,.18),rgba(155,130,232,.08));
}
.module-toggle:hover{
  border-color:rgba(111,218,160,.5);
  background:rgba(111,218,160,.08);
}
.module-toggle.active:hover{box-shadow:inset 0 0 22px rgba(111,218,160,.1)}
.module-toggle[aria-pressed="false"]{color:var(--muted)}
.form-module-picker .module-toggle{min-height:86px}
.module-select-panel{
  display:grid;
  gap:10px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.032);
  padding:12px;
}
.module-disabled{opacity:.46}
.module-disabled input,.module-disabled select,.module-disabled textarea{cursor:not-allowed}
.policy-preview{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.policy-preview>div{
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:9px;
  display:grid;
  gap:4px;
}
.policy-preview span{font-size:12px;color:var(--muted);line-height:1.35}
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:12px;
}
.manage-grid{grid-template-columns:1fr}
.service-manage-card{gap:14px}
.domain-details{box-shadow:none}
.service-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--panel);
  box-shadow:var(--shadow);
  padding:14px;
  display:grid;
  gap:12px;
  min-width:0;
}
.service-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  min-width:0;
}
.service-card-top>div{min-width:0}
.service-card h3{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.service-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.service-tags span{
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px 8px;
  color:var(--muted);
  font-size:12px;
  background:rgba(255,255,255,.035);
}
.service-tags span.ok{border-color:rgba(111,218,160,.45);color:var(--ok);background:rgba(111,218,160,.1)}
.service-tags span.warn{border-color:rgba(240,166,77,.45);color:var(--warn);background:rgba(240,166,77,.09)}
.service-tags span.bad{border-color:rgba(255,121,111,.48);color:var(--danger);background:rgba(255,121,111,.08)}
.dns-records{
  display:grid;
  gap:7px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:10px;
  background:rgba(255,255,255,.035);
}
.dns-records>div{
  display:grid;
  grid-template-columns:82px minmax(0,1fr);
  gap:10px;
  align-items:start;
}
.dns-records span{color:var(--muted);font-size:12px}
.dns-records b{min-width:0;overflow:hidden;text-overflow:ellipsis}
.connector-result textarea{min-height:230px}
.empty-state{display:grid;gap:8px;align-content:start}
/* An unavailable status is a compact message, never full-width SVG artwork. */
.service-unavailable-state{display:grid;grid-template-columns:40px minmax(0,1fr);align-items:start;gap:16px;width:100%;max-width:760px;margin-inline:auto;padding:24px}
.shell #view>.card.service-unavailable-state{max-width:760px}
.service-unavailable-state>.stat-icon{display:grid;place-items:center;width:40px;height:40px;min-width:40px;max-width:40px;overflow:hidden;border:1px solid var(--line);border-radius:10px;color:var(--accent)}
.service-unavailable-state>.stat-icon>svg{display:block;width:24px;height:24px;max-width:24px;max-height:24px}
.service-unavailable-copy{display:grid;gap:12px;min-width:0}
.service-unavailable-copy h2{margin:0;font-size:20px;line-height:1.3}
.service-unavailable-copy p{margin:0;font-size:14px;line-height:1.5;overflow-wrap:anywhere}
.service-unavailable-copy>.btn-row{justify-content:flex-start;margin-top:4px}
.service-unavailable-copy>.btn-row>.btn{width:auto;min-height:44px;padding:10px 16px}
.service-unavailable-details{min-width:0;color:var(--muted);font-size:13px;line-height:1.5}
.service-unavailable-details>summary{display:list-item;width:fit-content;max-width:100%;min-height:44px;padding-block:12px;cursor:pointer}
.service-unavailable-details>summary:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.service-unavailable-details>p{padding:12px;border:1px solid var(--line);border-radius:8px;font-size:13px}
.shell #view>.service-unavailable-state+[data-vpn-config-error]{width:100%;max-width:760px;margin-inline:auto;font-size:14px;line-height:1.5}
@media(max-width:480px){
  .service-unavailable-state{grid-template-columns:minmax(0,1fr);gap:12px;padding:16px}
}
.account-strip{
  width:100%;
  min-width:0;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:
    linear-gradient(110deg,rgba(10,20,15,.92),rgba(21,31,25,.78) 48%,rgba(59,39,27,.76)),
    url("assets/armillaria-bg.png") center/cover no-repeat;
  box-shadow:var(--shadow);
  padding:18px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(260px,.9fr);
  gap:16px;
  align-items:end;
}
:root[data-theme="light"] .account-strip{background:linear-gradient(110deg,rgba(255,255,250,.88),rgba(242,248,242,.76),rgba(255,238,209,.72)),url("assets/armillaria-bg.png") center/cover no-repeat}
.module-section{
  width:100%;
  min-width:0;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.product-card{
  position:relative;
  isolation:isolate;
  min-width:0;
  min-height:230px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--panel);
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:16px;
  display:grid;
  gap:14px;
  align-content:space-between;
  color:#f8f6ed;
}
.product-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:url("assets/dashboard-hero.png") center/cover no-repeat;
  opacity:1;
  filter:saturate(1.04) contrast(1.04);
}
.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 78% 18%,rgba(111,218,160,.18),transparent 38%),
    linear-gradient(180deg,rgba(2,7,5,.82),rgba(2,7,5,.96));
}
.product-card.domains::before{background-image:url("assets/domain-hero.png");background-position:center}
.product-card.vpn::before{background-image:url("assets/dashboard-hero.png");background-position:center}
.product-card.earning::before{background-image:url("assets/armillaria-bg.png");background-position:center}
.product-card.domains::after{
  background:
    radial-gradient(circle at 82% 20%,rgba(155,130,232,.18),transparent 38%),
    linear-gradient(180deg,rgba(2,7,5,.84),rgba(2,7,5,.97));
}
.product-card.vpn::after{
  background:
    radial-gradient(circle at 76% 22%,rgba(111,218,160,.2),transparent 36%),
    linear-gradient(180deg,rgba(2,7,5,.82),rgba(2,7,5,.96));
}
.product-card.earning::after{
  background:
    radial-gradient(circle at 78% 18%,rgba(240,166,77,.16),transparent 36%),
    linear-gradient(180deg,rgba(2,7,5,.86),rgba(2,7,5,.97));
}
.product-card.hero-card{
  min-height:260px;
  align-content:end;
}
.product-card h2,.product-card h3{color:#fffaf0;text-shadow:0 1px 12px rgba(0,0,0,.55)}
.product-card .sub{color:rgba(255,252,242,.9);text-shadow:0 1px 10px rgba(0,0,0,.5)}
.product-card .btn:not(.primary){background:rgba(4,12,8,.58);border-color:rgba(231,243,235,.26)}
.product-card .role-chip,.product-card .badge{background:rgba(4,12,8,.72);color:#eef8f1;border-color:rgba(231,243,235,.32)}
.file-state-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.identity-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.metric{display:grid;gap:3px}
.stat .k,.metric .k{font-size:12px;color:var(--muted)}
.stat .v,.metric .v{font-size:26px;font-weight:760;margin-top:3px}
.metric .v{font-size:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.module-card{display:grid;gap:12px}
.module-card .module-head{display:flex;align-items:center;justify-content:space-between;gap:10px;min-width:0}
.health-card{
  display:grid;
  gap:7px;
  align-content:start;
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:12px;
}
.health-list{
  display:grid;
  gap:7px;
}
.health-list>div{
  display:grid;
  grid-template-columns:minmax(110px,.6fr) minmax(0,1fr);
  gap:10px;
  align-items:start;
  border-top:1px solid var(--line);
  padding-top:7px;
}
.health-list>div:first-child{border-top:0;padding-top:0}
.health-list span{color:var(--muted);font-size:12px}
.health-list b{min-width:0;overflow:hidden;text-overflow:ellipsis}
.health-list b.mono{font-size:12px;white-space:nowrap}
.node-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:10px;
}
.node-card{
  display:grid;
  gap:8px;
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:10px;
}
.node-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  min-width:0;
}
.node-card-top>div{min-width:0}
.node-card-top b,.node-card-top p{display:block;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.node-card-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-top:1px solid var(--line);
  padding-top:7px;
  color:var(--muted);
}
.node-card-row b{
  color:var(--text);
  font-weight:680;
  text-align:right;
}
.table-wrap{overflow:auto;border:1px solid var(--line);border-radius:7px}
table{width:100%;border-collapse:collapse}
th,td{text-align:left;padding:10px;border-bottom:1px solid var(--line);vertical-align:top}
th{font-size:12px;color:var(--muted);font-weight:650}
tr:last-child td{border-bottom:0}
.copybox{display:flex;gap:8px}
.copybox input{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}
.row-actions{display:flex;gap:8px;flex-wrap:wrap}
.inline-result,.alert{
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  padding:10px;
}
.alert.warn{border-color:rgba(240,166,77,.45);background:rgba(240,166,77,.08);color:var(--warn)}
.alert.bad{border-color:rgba(255,121,111,.45);background:rgba(255,121,111,.08);color:var(--danger)}
.alert.ok{border-color:rgba(111,218,160,.45);background:rgba(111,218,160,.08);color:var(--ok)}
.node-earning-upgrade{display:flex;align-items:center;justify-content:space-between;gap:14px}
.node-earning-upgrade>div{min-width:0}
.node-earning-upgrade p{margin:4px 0 0;line-height:1.45}
@media(max-width:760px){
  .node-earning-upgrade{display:grid;justify-items:start}
  .node-earning-upgrade>.btn{width:100%}
}
.safe-readiness-card{border-color:rgba(240,166,77,.4);background:linear-gradient(135deg,rgba(240,166,77,.08),rgba(133,96,255,.055))}
.safe-readiness-details{border:1px solid var(--line);border-radius:8px;background:rgba(10,14,30,.28);padding:10px 12px;color:var(--muted);line-height:1.5}
.safe-readiness-details summary{cursor:default;list-style:none}
.safe-readiness-details summary::-webkit-details-marker{display:none}
.global-action-banner{padding:14px 22px 0;max-width:1500px;width:100%;margin:0 auto}
.global-action-banner:empty{display:none}
.global-action-banner .ton-sign-retry{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.global-action-banner .ton-sign-retry p{margin:3px 0 0}
.toast{
  position:fixed;
  right:16px;
  bottom:16px;
  max-width:min(360px,calc(100vw - 32px));
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:8px;
  padding:10px 12px;
  z-index:30;
}
.toast.ok{border-color:var(--ok)}
.toast.warn{border-color:var(--warn)}
.toast.bad{border-color:var(--danger)}
.registry-pending{display:flex;align-items:center;justify-content:space-between;gap:12px}
.registry-pending>div{min-width:0}
.registry-pending p{max-width:100%;overflow-wrap:anywhere;word-break:break-word}
.recovery-words{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}
.word{border:1px solid var(--line);border-radius:7px;padding:7px;background:var(--panel2);min-width:0}
.word b{color:var(--muted);font-size:11px;margin-right:5px}
@media(max-width:960px){
  body{overflow-x:hidden}
  .login{padding:14px}
  .login-card{grid-template-columns:minmax(0,1fr);width:100%;max-width:100%}
  .login-intro,.login-actions,.auth-section,.account-strip,.card{min-width:0;max-width:100%}
  .login-intro{min-height:360px}
  .login-copy h1{font-size:30px}
  .wallet-grid,.authkit-grid,.wc-wallet-grid,.injected-wallet-grid{grid-template-columns:1fr}
  .wc-project-box{grid-template-columns:1fr}
  .shell{grid-template-columns:1fr}
  .sidebar{display:none}
  .topbar{min-height:72px;padding:10px 14px}
  .topbar-main{flex-wrap:wrap}
  .topbar-main>div:first-child{width:100%;justify-content:space-between}
  .topbar-main>.spacer{display:none}
  .topbar-main .seg{margin-right:auto}
  .content{padding:14px 14px 76px;overflow-x:hidden}
  .cols-2,.cols-3,.account-strip,.dashboard-hero,.identity-grid,.product-grid,.finance-hero,.domain-hero,.policy-preview,.deposit-invoice-grid,.module-toggle-grid,.linked-wallets{grid-template-columns:1fr}
  .dashboard-hero{min-height:420px;padding:14px;background-position:center right}
  .dashboard-hero::before{background:linear-gradient(180deg,rgba(2,7,5,.86),rgba(5,13,9,.74))}
  .qr-box{width:100%;min-height:172px}
  .qr-box svg{width:156px;height:156px}
  .product-card{min-height:210px}
  .section-head,.card-head,.module-card .module-head{flex-wrap:wrap}
  .mobile-nav{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    background:var(--panel);
    border-top:1px solid var(--line);
    z-index:20;
    backdrop-filter:blur(16px);
  }
  .mobile-nav a{display:flex;align-items:center;justify-content:center;min-height:50px;min-width:0;padding:8px 2px;font-size:10px;color:var(--muted);text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  .mobile-nav a.active{color:var(--accent)}
  .recovery-words{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:520px){
  h1{font-size:25px}
  .login-copy h1{font-size:28px}
  .login{width:100vw;max-width:100vw}
  .login-card{width:calc(100vw - 28px);max-width:calc(100vw - 28px)}
  .login-intro,.login-actions,.card{padding:12px}
  .module-row{grid-template-columns:auto 1fr}
  .module-row .badge{grid-column:2}
  .section-head,.card-head,.module-card .module-head{display:grid;justify-content:stretch}
  .role-chip,.badge{white-space:normal}
  .copybox{display:grid}
  .registry-pending{align-items:stretch;flex-direction:column}
}

/* Reference workflow redesign, 2026-07-31. */
:root{
  --bg:#020706;
  --panel:rgba(5,13,11,.92);
  --panel2:rgba(9,22,18,.94);
  --panel3:rgba(16,21,25,.9);
  --text:#f4f7f3;
  --muted:#8e9a94;
  --faint:#56625c;
  --line:rgba(181,221,194,.14);
  --line-strong:rgba(186,243,204,.27);
  --accent:#8ce85b;
  --accent-strong:#50c93b;
  --accent2:#24c7cf;
  --violet:#a85cf2;
  --danger:#ff5d62;
  --ok:#8ce85b;
  --warn:#f0c94d;
  --shadow:0 18px 44px rgba(0,0,0,.42);
  --radius:7px;
}
/* ДЕЙСТВУЮЩАЯ палитра светлой темы. Одноимённый блок в начале файла имеет ту же
   специфичность (0,2,0) и по каскаду проигрывает этому — править цвета надо ЗДЕСЬ.
   Именно на этом и обожглась заготовка .pending-cabinet-fixes: она затемняла первый
   блок, а браузер продолжал брать значения отсюда, и «исправленный» контраст не менялся. */
:root[data-theme="light"]{
  --bg:#edf3ee;
  --panel:rgba(250,253,250,.94);
  --panel2:rgba(235,244,237,.96);
  --panel3:rgba(241,239,248,.94);
  --text:#101915;
  --muted:#52645a;
  --faint:#738178;
  --line:rgba(24,57,37,.17);
  --line-strong:rgba(24,73,42,.3);
  --accent:#338d2c;
  --accent-strong:#267425;
  --accent2:#087f88;
  --violet:#7540ae;
  --danger:#c8353c;
  /* --ok и --warn набираются как ОБЫЧНЫЙ текст (14px в .alert.*, 11px в .badge.*),
     поэтому им нужен порог WCAG AA 4.5:1, а не 3:1 как элементам интерфейса.
     Было: --warn #9b7110 → 4.06:1 на .alert.warn и 4.04:1 на .badge.warn поверх карточки,
     --ok #338d2c → 3.55:1 на подложке .badge.ok. Предупреждения и статусы — ровно тот текст,
     который обязан читаться, а он был ниже нормы во всей светлой теме.
     Стало (пересчитано по фактическим подложкам поверх --panel/--panel2/--panel3 и белого,
     с учётом полупрозрачных заливок): --warn худший случай 4.67:1, --ok — 4.70:1.
     Тон сохранён, изменена только светлота. Тёмная тема этими строками не затрагивается. */
  --ok:#2a7724;
  --warn:#856210;
}
body{
  background:#020706;
  color:var(--text);
}
body::before{
  background:url("assets/mycelium-network.png") center/cover no-repeat;
  filter:saturate(1.08) contrast(1.08);
  opacity:.16;
}
body::after{
  background:rgba(1,5,4,.91);
}
:root[data-theme="light"] body{background:var(--bg)}
:root[data-theme="light"] body::before{opacity:.08}
:root[data-theme="light"] body::after{background:rgba(238,246,240,.9)}
h1{font-size:32px;font-weight:760;letter-spacing:0}
h2{font-size:18px;font-weight:680;letter-spacing:0}
h3{font-size:15px;font-weight:680;letter-spacing:0}
.sub{line-height:1.5}
.brand-mark{
  width:38px;
  height:38px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:var(--accent);
}
.brand-mark img{
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(87%) sepia(42%) saturate(874%) hue-rotate(42deg) brightness(99%) contrast(89%) drop-shadow(0 0 9px rgba(140,232,91,.42));
}
.brand-title h2{color:var(--accent);font-size:16px;letter-spacing:0}
.btn{
  min-height:36px;
  border-color:rgba(190,216,198,.16);
  background:rgba(7,16,13,.78);
  border-radius:6px;
  font-weight:620;
}
.btn:hover{border-color:rgba(140,232,91,.62);background:rgba(140,232,91,.09)}
.btn.primary{
  background:linear-gradient(180deg,#a4f36e,#56cb3d);
  color:#061006;
  border-color:#80de56;
  box-shadow:0 0 20px rgba(108,221,71,.18);
}
.btn.primary:hover{background:linear-gradient(180deg,#b2fa80,#64d949)}
.btn.icon-only{width:34px;min-width:34px;padding:0;font-size:17px}
.seg{border-radius:6px;background:rgba(7,15,13,.78)}
.seg button{min-height:32px}
.role-chip,.badge{border-radius:999px;font-size:11px;padding:3px 8px}
.card,.auth-section,.login-actions,.login-intro{
  background:var(--panel);
  border-color:var(--line);
  box-shadow:var(--shadow);
}
.card{padding:14px}

/* Wallet-first login */
.login{align-items:stretch;padding:22px;background:#010403}
.login-card{
  width:min(1240px,100%);
  height:calc(100vh - 44px);
  max-height:960px;
  min-height:calc(100vh - 44px);
  grid-template-columns:minmax(360px,.86fr) minmax(560px,1.14fr);
  gap:1px;
  border:1px solid var(--line-strong);
  border-radius:8px;
  overflow:hidden;
  background:var(--line);
  box-shadow:0 24px 70px rgba(0,0,0,.52);
}
.login-intro{
  min-height:100%;
  border:0;
  border-radius:0;
  padding:26px;
  background:
    linear-gradient(180deg,rgba(2,7,6,.2),rgba(2,8,6,.92)),
    url("assets/login-hero.png") center/cover no-repeat;
}
.login-intro::after{height:48%;background:linear-gradient(0deg,rgba(3,10,7,.9),transparent)}
.login-copy{margin-top:auto;margin-bottom:28px;max-width:470px}
.login-copy h1{font-size:38px;max-width:420px}
.login-modules{grid-template-columns:repeat(2,minmax(0,1fr))}
.module-row{grid-template-columns:auto 1fr;border-radius:6px;background:rgba(2,8,6,.7);backdrop-filter:blur(12px)}
.module-row .badge{grid-column:2;justify-self:start}
.login-actions{
  border:0;
  border-radius:0;
  padding:20px;
  align-content:start;
  overflow:auto;
  background:rgba(4,11,9,.98);
}
.login-card>*,.login-intro>*,.login-actions>*,.auth-section>*,.login-copy,.login-modules,.module-row>div{
  min-width:0;
  max-width:100%;
}
.login-copy p,.module-row b,.module-row p,.auth-status span:last-child,.authkit-item p{
  overflow-wrap:anywhere;
  word-break:normal;
}
.auth-section{border-radius:7px;background:rgba(8,18,15,.72)}
.authkit-item,.wallet-card,.wc-project-box{border-radius:6px;background:rgba(10,22,18,.76)}
.wallet-card{min-height:118px}
.wallet-card.primary{background:rgba(140,232,91,.1);border-color:rgba(140,232,91,.42)}
.wallet-card:nth-child(2){border-color:rgba(36,199,207,.24)}
.wallet-card:nth-child(3){border-color:rgba(168,92,242,.27)}
.wallet-card.transport-limited{border-color:rgba(168,92,242,.34);background:rgba(88,35,126,.08)}
.wallet-card.transport-limited .wallet-icon{border-color:rgba(168,92,242,.45);background:rgba(168,92,242,.12);color:#c98cff}
.tangem-transport-modal{width:min(720px,calc(100vw - 28px))}
.tangem-state{display:grid;grid-template-columns:42px minmax(0,1fr);gap:12px;align-items:start;padding:14px;border:1px solid var(--line);border-radius:6px;background:rgba(2,9,7,.72)}
.tangem-state.ready{border-color:rgba(140,232,91,.4)}
.tangem-state.blocked{border-color:rgba(168,92,242,.34)}
.tangem-state p{margin:5px 0 0;color:var(--muted);line-height:1.48}
.wallet-icon{border-radius:6px}

/* Cabinet shell and navigation tree */
.shell{grid-template-columns:252px minmax(0,1fr);background:rgba(1,5,4,.78)}
.sidebar{
  height:100vh;
  position:sticky;
  top:0;
  overflow:auto;
  padding:18px 14px 14px;
  gap:18px;
  background:rgba(2,8,7,.96);
  border-right:1px solid var(--line);
  box-shadow:none;
  backdrop-filter:blur(18px);
}
.sidebar-brand{padding:0 8px 13px;border-bottom:1px solid var(--line)}
.tree-nav{gap:15px}
.tree-group{border:0;border-radius:0;background:transparent;overflow:visible;box-shadow:none}
.tree-group.active{border:0;box-shadow:none}
.tree-root{
  grid-template-columns:28px minmax(0,1fr) 10px;
  min-height:42px;
  padding:5px 7px;
  gap:8px;
  border-radius:6px;
  color:#cad3ce;
}
.tree-root:hover,.tree-root.active{background:rgba(140,232,91,.055)}
.tree-root-icon,.tree-leaf-icon{
  display:grid;
  place-items:center;
  color:#b6c0bb;
  border:1px solid transparent;
  font-size:15px;
}
.tree-root-icon{width:28px;height:28px;border-radius:6px;background:rgba(255,255,255,.025)}
.tree-group.active .tree-root-icon{color:var(--accent);border-color:rgba(140,232,91,.25);background:rgba(140,232,91,.08)}
.tree-label{font-size:12px;font-weight:760;text-transform:uppercase;color:inherit}
.tree-sub{display:none}
.tree-caret{justify-self:end;transform:rotate(90deg);border-left-color:#59675f}
.tree-children{gap:2px;padding:3px 0 0 9px}
/* ДЕРЕВО ВСЕГДА РАСКРЫТО — требование владельца.
   Здесь стояло display:none для неактивных веток: пользователь видел только
   ту ветку, в которой находится, и не знал, что в кабинете есть остальное.
   Именно так «пропали» разделы загрузки — они никуда не девались, их просто
   перестали показывать. */
.sidebar .tree-group:not(.active)>.tree-children{display:grid}
.tree-leaf{
  grid-template-columns:24px minmax(0,1fr);
  min-height:34px;
  padding:5px 8px;
  gap:8px;
  border-radius:6px;
  font-size:12px;
}
.tree-leaf-icon{width:24px;height:24px;color:#7d8a84;font-size:13px}
.tree-leaf.active,.tree-leaf:hover{
  color:#f5f8f4;
  background:rgba(140,232,91,.09);
  border-color:rgba(140,232,91,.27);
}
.tree-leaf.active .tree-leaf-icon{color:var(--accent)}
.account-panel{border-radius:7px;background:rgba(7,16,13,.86);padding:11px}
.account-panel-head{display:grid;grid-template-columns:32px minmax(0,1fr);gap:9px;align-items:center;min-width:0}
.account-panel-head>div{min-width:0}
.account-panel-head .mono{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.account-avatar,.topbar-avatar{
  display:grid;
  place-items:center;
  border:1px solid rgba(140,232,91,.3);
  border-radius:50%;
  color:var(--accent);
  background:rgba(140,232,91,.08);
  font-weight:760;
}
.account-avatar{width:32px;height:32px}
.topbar{
  min-height:64px;
  padding:10px 20px;
  background:rgba(2,8,7,.86);
  border-bottom:1px solid var(--line);
  box-shadow:none;
  backdrop-filter:blur(18px);
}
.topbar-main{gap:9px}
.page-heading{display:grid!important;grid-template-columns:34px minmax(0,1fr);gap:10px!important;align-items:center}
.page-heading>span:last-child{display:grid;min-width:0}
.page-heading strong{font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.page-heading small{font-size:10px;color:var(--muted);text-transform:uppercase}
.topbar-icon{width:34px;height:34px;display:grid;place-items:center;border:1px solid var(--line);border-radius:6px;color:var(--accent)}
.runtime-chip{display:inline-flex;align-items:center;gap:6px;max-width:230px;color:var(--muted);font-size:11px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.runtime-chip i{width:7px;height:7px;flex:0 0 auto;border-radius:50%;background:var(--accent);box-shadow:0 0 10px rgba(140,232,91,.65)}
.topbar-avatar{width:34px;height:34px}
.content{padding:20px;max-width:1500px;margin:0 auto}

/* Overview */
.dashboard-hero{
  min-height:286px;
  grid-template-columns:minmax(0,1.18fr) minmax(330px,.82fr);
  padding:24px;
  background:url("assets/dashboard-hero.png") center/cover no-repeat;
}
.dashboard-hero::before{background:linear-gradient(90deg,rgba(1,5,4,.96),rgba(3,8,7,.76) 53%,rgba(3,7,6,.24))}
.dashboard-hero-copy{max-width:680px}
.dashboard-hero-copy h1 span{color:var(--accent)}
.dashboard-hero .identity-grid{align-self:end;background:rgba(2,7,6,.72);border-radius:6px;padding:10px}
.overview-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.overview-stats .stat{position:relative;min-height:142px;overflow:hidden;padding:15px;background:rgba(5,13,11,.9)}
.overview-stats .stat-icon{width:28px;height:28px;display:grid;place-items:center;margin-bottom:10px;color:var(--accent);font-weight:760}
.overview-stats .stat-icon.economy{color:var(--accent2)}
.overview-stats .stat-icon.traffic{color:var(--violet)}
.overview-stats .stat .v{font-size:27px}
.overview-stats .stat .v small{font-size:13px;color:var(--muted);font-weight:500}
.product-grid{gap:12px}
.product-card{min-height:228px;padding:15px;border-color:var(--line-strong);background:#04100c}
.product-card::before{background-image:url("assets/dashboard-hero.png");background-position:center;filter:none}
.product-card::after{background:linear-gradient(180deg,rgba(1,5,4,.24),rgba(1,6,5,.94) 75%)}
.product-card.domains::before{background-image:url("assets/domain-shield.png");background-position:center}
.product-card.vpn::before{background-image:url("assets/vpn-shield.png");background-position:center}
.product-card.earning::before{background-image:url("assets/earning-hero.png");background-position:center}
.product-card.domains::after,.product-card.vpn::after,.product-card.earning::after{background:linear-gradient(180deg,rgba(1,5,4,.2),rgba(1,6,5,.95) 78%)}
.product-card.vpn{border-color:rgba(168,92,242,.27)}
.product-card.earning{border-color:rgba(240,201,77,.25)}

/* Domain, VPN, node and finance workflows */
.domain-summary{
  background:
    linear-gradient(180deg,rgba(2,7,6,.38),rgba(2,8,7,.95)),
    url("assets/domain-shield.png") center/cover no-repeat;
}
.domain-manage-summary{background:linear-gradient(135deg,rgba(140,232,91,.08),rgba(168,92,242,.07)),var(--panel)}
.domain-flow>div,.module-select-panel,.policy-preview>div,.health-card,.node-card,.dns-records,.linked-wallet-card{
  border-radius:6px;
  background:rgba(7,17,14,.72);
}
.domain-flow span{border-radius:50%;background:rgba(140,232,91,.09);border:1px solid rgba(140,232,91,.3)}
.module-toggle{border-radius:6px;background:rgba(7,17,14,.82)}
.module-toggle.active{background:rgba(140,232,91,.1);border-color:rgba(140,232,91,.55);box-shadow:inset 0 0 18px rgba(140,232,91,.06)}
.section-tabs{border-radius:7px;background:rgba(4,12,9,.86);padding:6px}
.section-tabs button{border-radius:5px}
.section-tabs button.active{background:rgba(140,232,91,.1);border-color:rgba(140,232,91,.35);color:var(--accent)}
.finance-balance{background:linear-gradient(135deg,rgba(140,232,91,.13),rgba(36,199,207,.05)),var(--panel)}
.table-wrap{border-radius:6px;background:rgba(3,10,8,.56)}
th{color:#87958e;text-transform:uppercase;font-size:10px}
td{font-size:12px}
.downloads-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:10px}
.download-card{min-height:150px;border-radius:6px;background:rgba(7,17,14,.88)}
.download-card.recommended{background:rgba(140,232,91,.08);border-color:rgba(140,232,91,.52)}
.os-badge{width:44px;height:44px;border-radius:7px;background:rgba(140,232,91,.08);font-size:10px}
.platform-card{min-height:190px}
.node-card{border-color:rgba(140,232,91,.17)}
.modal-backdrop{background:rgba(0,3,2,.82)}
.modal-card{border-radius:7px;background:#06100d}
.qr-box{border-radius:6px}
input,select,textarea{border-radius:6px;background:rgba(1,7,5,.72)}
details{border-radius:6px;background:rgba(7,17,14,.72)}

@media(max-width:1180px){
  .shell{grid-template-columns:232px minmax(0,1fr)}
  .overview-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .dashboard-hero{grid-template-columns:1fr}
  .dashboard-hero .identity-grid{max-width:680px}
}
@media(max-width:960px){
  .shell{grid-template-columns:minmax(0,1fr);width:100%;max-width:100%}
  .shell>main{width:100%;min-width:0}
  .login{padding:12px}
  .login-card{height:auto;max-height:none;min-height:calc(100vh - 24px);grid-template-columns:1fr;gap:1px}
  .login-intro{min-height:380px;padding:20px}
  .login-copy{margin-top:140px;margin-bottom:12px}
  .login-copy h1{font-size:32px}
  .login-modules{grid-template-columns:1fr}
  .topbar{padding:9px 12px}
  .runtime-chip{display:none}
  .content{padding:14px 14px 76px}
  .dashboard-hero{min-height:430px;background-position:65% center}
  .dashboard-hero::before{background:linear-gradient(180deg,rgba(1,5,4,.7),rgba(1,5,4,.96))}
  .mobile-nav{grid-template-columns:repeat(5,minmax(0,1fr));background:rgba(3,10,8,.96)}
  .mobile-nav a{display:grid;place-items:center;align-content:center;gap:1px;min-height:58px}
  .mobile-nav a span{font-size:16px;line-height:1}
  .mobile-nav a b{max-width:100%;overflow:visible;font-size:9px;font-weight:600;line-height:1.05;white-space:normal}
}
@media(max-width:620px){
  .overview-stats{grid-template-columns:1fr}
  .overview-stats .stat{min-height:122px}
  .dashboard-hero{padding:15px}
  .dashboard-hero .identity-grid{grid-template-columns:1fr}
  .login-copy h1{font-size:29px}
  .login-actions{padding:13px}
  .auth-section{padding:12px}
  .login-toolbar{align-items:flex-start;flex-wrap:wrap}
  .auth-status{flex:1 1 220px}
  .downloads-grid{grid-template-columns:1fr}
  .topbar-main{flex-wrap:nowrap}
  .page-heading{min-width:0;flex:1}
  .topbar-main .seg{margin:0}
  .topbar-avatar{display:none}
}

/* Download flows from the reference VPN and earnings boards. */
.download-page{display:grid;gap:0;min-width:0}
.download-page .download-hero{
  min-height:176px;
  height:176px;
  padding:16px;
  align-content:end;
}
.download-page .download-hero::after{
  background:linear-gradient(90deg,rgba(1,5,4,.94),rgba(1,5,4,.5) 52%,rgba(1,5,4,.15));
}
.download-page-stack{display:grid;gap:12px;min-width:0}
.download-page-stack>.card{min-width:0}
.vpn-download-page .download-page-stack>.card:first-child>.downloads-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
}
.node-download-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.download-page .download-card{
  min-width:0;
  min-height:160px;
  padding:11px;
  gap:8px;
  background:
    linear-gradient(180deg,rgba(12,28,21,.88),rgba(4,12,9,.97)),
    url("assets/mycelium-network.png") center/cover no-repeat;
}
.download-page .download-card.recommended{
  background:
    linear-gradient(180deg,rgba(33,72,37,.68),rgba(5,17,11,.97)),
    url("assets/mycelium-network.png") center/cover no-repeat;
}
.download-page .download-card.unavailable{background:rgba(7,16,13,.82)}
.download-page .download-platform-icon{
  width:45px;
  height:45px;
  border-radius:7px;
  font-size:23px;
  line-height:1;
}
.download-page .download-head h3{font-size:14px;line-height:1.18;overflow-wrap:anywhere}
.download-page .download-head .badge{flex:0 0 auto}
.download-page .download-tags{gap:4px}
.download-page .download-tags span{padding:3px 6px;font-size:9px}
.download-page .download-card .btn{min-height:29px;padding:5px 8px;font-size:10px}
.download-page .checksum{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.integration-card{gap:12px}
.integration-config-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding-top:2px;
}
.integration-config{grid-column:1/-1}
.integration-config textarea{min-height:96px;max-height:150px}
.download-guide{min-height:0}

@media(max-width:1280px){
  .vpn-download-page .download-page-stack>.card:first-child>.downloads-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .node-download-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:760px){
  .download-page .download-hero{height:auto;min-height:300px}
  .vpn-download-page .download-page-stack>.card:first-child>.downloads-grid,
  .node-download-grid{grid-template-columns:1fr}
  .integration-config-grid{grid-template-columns:1fr}
  .integration-config{grid-column:1}
}

/* Dashboard design system from images/exampledesign/design.png. */
:root{
  --bg:#030705;
  --panel:rgba(5,12,10,.96);
  --panel2:rgba(7,17,14,.96);
  --panel3:rgba(10,13,18,.96);
  --text:#f5f7f5;
  --muted:#919b96;
  --faint:#5b6660;
  --line:rgba(145,168,157,.2);
  --line-strong:rgba(175,199,188,.32);
  --accent:#7cff68;
  --accent-strong:#4fc943;
  --accent2:#22c3ce;
  --violet:#9040ff;
  --ok:#7cff68;
  --warn:#e6ca48;
  --shadow:0 14px 38px rgba(0,0,0,.38);
}
body::before{
  background:url("assets/mycelium-network.png") center/cover no-repeat;
  opacity:.08;
}
body::after{background:rgba(1,5,4,.96)}
.ui-icon,.stat-svg{display:block;width:100%;height:100%}

.shell{grid-template-columns:244px minmax(0,1fr);background:#020706}
.sidebar{
  padding:18px 12px 14px;
  gap:15px;
  background:rgba(2,8,7,.985);
}
.sidebar-brand{
  width:184px;
  height:61px;
  min-height:61px;
  margin:0 4px;
  padding:0;
  border:0;
  background:none;
}
.sidebar-brand>*{visibility:visible}
.tree-nav{gap:8px}
.tree-group{position:relative}
.tree-root{
  display:grid;
  grid-template-columns:20px minmax(0,1fr) 8px;
  min-height:30px;
  padding:4px 7px;
  gap:7px;
  color:#7f8b85;
  background:transparent!important;
  border:0!important;
  border-radius:6px;
}
.tree-root:hover,.tree-root.active{color:#cbd5cf;background:rgba(124,255,104,.04)!important}
.tree-root-icon{
  display:grid;
  width:20px;
  height:20px;
  place-items:center;
  padding:3px;
  color:#78847e;
  border:1px solid rgba(143,178,158,.12);
  border-radius:5px;
  background:rgba(255,255,255,.02);
}
.tree-group.active .tree-root-icon{color:var(--flow-green);border-color:rgba(124,255,104,.28);background:rgba(124,255,104,.07)}
.tree-root .tree-caret{display:block;justify-self:end;transform:rotate(90deg);border-left-color:#59675f}
.tree-sub{display:none}
.tree-label{font-size:10px;font-weight:760;letter-spacing:0;text-transform:uppercase;color:inherit}
.tree-children{position:relative;gap:1px;padding:2px 0 1px 24px}
.tree-children::before{
  content:"";
  position:absolute;
  top:1px;
  bottom:16px;
  left:12px;
  border-left:1px solid rgba(143,178,158,.18);
}
.tree-leaf{
  position:relative;
  grid-template-columns:21px minmax(0,1fr);
  min-height:31px;
  padding:3px 7px;
  border:1px solid transparent;
  border-radius:6px;
  color:#aeb7b2;
  font-size:11px;
}
.tree-leaf::before{
  content:"";
  position:absolute;
  top:50%;
  left:-12px;
  width:11px;
  border-top:1px solid rgba(143,178,158,.18);
}
.tree-leaf-icon{width:17px;height:17px;color:#9ca6a1;font-size:0}
.tree-leaf.active,.tree-leaf:hover{
  color:#f6faf7;
  background:linear-gradient(90deg,rgba(124,255,104,.12),rgba(124,255,104,.045));
  border-color:rgba(124,255,104,.36);
  box-shadow:inset 0 0 18px rgba(124,255,104,.045),0 0 16px rgba(124,255,104,.04);
}
.tree-leaf.active .tree-leaf-icon{color:var(--accent)}
.account-panel{
  border-color:rgba(145,168,157,.18);
  background:rgba(5,13,11,.94);
}
.account-avatar,.topbar-avatar{border-color:rgba(124,255,104,.38);color:var(--accent)}
.account-avatar .ui-icon{width:17px;height:17px}

.topbar{min-height:68px;padding:10px 20px;background:rgba(2,7,6,.97)}
.topbar-main{min-height:46px}
.topbar .seg,.topbar .icon-only{background:rgba(4,10,9,.86)}
.topbar-icon .ui-icon{width:18px;height:18px}
.content{padding:18px 22px 24px;max-width:1500px}

.dashboard-hero{
  min-height:270px;
  grid-template-columns:minmax(0,1.1fr) minmax(330px,.9fr);
  padding:22px 24px;
  border-color:rgba(145,168,157,.24);
  background:#030807;
}
.dashboard-hero::before{
  z-index:-1;
  background:linear-gradient(90deg,#030807 0%,#030807 46%,rgba(3,8,7,.96) 58%,rgba(3,8,7,.58) 72%,rgba(3,8,7,.08));
}
.dashboard-hero::after{
  content:"";
  position:absolute;
  z-index:-2;
  inset:0 0 0 56%;
  background:url("assets/dashboard-hero.png") 70% center/cover no-repeat;
}
.dashboard-hero-copy{max-width:660px}
.dashboard-hero-copy>.brand .brand-mark{
  width:39px;
  height:39px;
  border-radius:6px;
  background:rgba(124,255,104,.06);
}
.dashboard-hero-copy>.brand .brand-mark img{visibility:visible}
.dashboard-hero-copy>.brand .brand-title h2{color:#dce5df;font-size:14px}
.dashboard-hero-copy h1{font-size:31px}
.dashboard-hero-copy h1 span{color:#b7f19c}
.dashboard-hero .identity-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  padding:0;
  overflow:hidden;
  border-color:rgba(175,199,188,.26);
  background:rgba(2,8,7,.84);
}
.dashboard-hero .identity-grid .metric{min-height:58px;padding:10px 12px;border-right:1px solid var(--line)}
.dashboard-hero .identity-grid .metric:last-child{border-right:0}
.dashboard-hero .identity-grid .k{font-size:10px}
.dashboard-hero .identity-grid .v{font-size:12px;color:#a9f28d}

.overview-stats{gap:13px}
.overview-stats .stat{
  min-height:154px;
  padding:14px 15px;
  isolation:isolate;
  background:linear-gradient(145deg,rgba(6,15,12,.98),rgba(4,11,9,.94));
  border-color:rgba(145,168,157,.22);
}
.dashboard-reference-stats .stat::after{
  display:none;
}
.dashboard-reference-stats .balance-stat::after{display:none}
.dashboard-reference-stats .nodes-stat::after{background-position:53.7% 49%}
.dashboard-reference-stats .economy-stat::after{background-position:68.9% 49%}
.dashboard-reference-stats .traffic-stat::after{background-position:83% 49%}
.overview-stats .stat-icon{
  position:relative;
  z-index:2;
  width:24px;
  height:24px;
  margin:0 0 8px;
  color:var(--accent);
}
.overview-stats .stat-icon.economy{color:var(--accent)}
.overview-stats .stat-icon.traffic{color:#b064ff}
.overview-stats .stat-copy{position:relative;z-index:2;max-width:70%}
.overview-stats .stat .k{text-transform:uppercase;font-size:10px;letter-spacing:0;color:#909a95}
.overview-stats .stat .v{font-size:27px;line-height:1.08;color:#f6faf7}
.overview-stats .stat .sub{font-size:11px;line-height:1.4;color:#9aa59f}
.stat-chart{
  position:absolute;
  z-index:1;
  right:-2px;
  bottom:0;
  width:58%;
  height:76px;
  overflow:visible;
  color:var(--accent);
  opacity:.92;
}
.stat-chart.violet{color:#9c4fff}
.stat-chart .chart-grid{fill:none;stroke:rgba(143,165,154,.1);stroke-width:1}
.stat-chart .chart-area{fill:currentColor;opacity:.12}
.stat-chart .chart-line{fill:none;stroke:currentColor;stroke-width:2}
.stat-chart .chart-point{fill:currentColor;filter:drop-shadow(0 0 5px currentColor)}

.module-section>.card-head{align-items:end;margin-bottom:11px}
.scenario-link{display:inline-flex;align-items:center;gap:8px;color:#9ba69f;font-size:11px}
.scenario-link:hover{color:var(--accent)}
.product-grid{gap:13px}
.product-card{
  min-height:236px;
  padding:15px;
  background:#030907;
  border-color:rgba(145,168,157,.24);
}
.product-card::before{
  opacity:.92;
  filter:saturate(1.08) contrast(1.08);
  background-image:url("assets/dashboard-hero.png");
  background-size:cover;
  background-repeat:no-repeat;
}
.product-card::after{
  background:linear-gradient(90deg,rgba(2,8,6,.9) 0%,rgba(2,8,6,.7) 46%,rgba(2,8,6,.2) 74%,rgba(2,8,6,.04) 100%),linear-gradient(0deg,rgba(2,8,6,.72) 0%,rgba(2,8,6,.22) 38%,transparent 68%);
}
.product-card.domains::before{background-image:url("assets/domain-shield.png");background-position:center}
.product-card.vpn::before{background-image:url("assets/vpn-shield.png");background-position:center;transform:scaleX(-1)}
.product-card.earning::before{background-image:url("assets/earning-hero.png");background-position:center}
.product-card.domains::after,.product-card.vpn::after,.product-card.earning::after{
  background:linear-gradient(90deg,rgba(2,8,6,.9) 0%,rgba(2,8,6,.68) 45%,rgba(2,8,6,.18) 73%,rgba(2,8,6,.03) 100%),linear-gradient(0deg,rgba(2,8,6,.68) 0%,rgba(2,8,6,.18) 38%,transparent 68%);
}
.product-card.vpn{border-color:rgba(144,64,255,.36)}
.product-card.earning{border-color:rgba(145,168,157,.24)}
.product-card .module-head{align-items:start}
.product-card .module-head>div{max-width:72%}
.product-card .module-head h2{font-size:19px}
.product-card .module-head .sub{font-size:11px;line-height:1.45}
.product-card .btn{min-height:33px;padding:7px 11px;font-size:11px}

@media(min-width:961px){
  .sidebar-brand .brand-mark{
    background:rgba(124,255,104,.06);
  }
  .sidebar-brand .brand-mark img{visibility:visible}
  .topbar .page-heading,.topbar .runtime-chip{display:none!important}
}
@media(max-width:1180px){
  .dashboard-hero::after{inset:0;background-position:78.7% 14.6%;opacity:.7}
  .overview-stats .stat-copy{max-width:75%}
}
@media(max-width:960px){
  .shell{grid-template-columns:minmax(0,1fr);width:100%;max-width:100%}
  .shell>main{width:100%;min-width:0}
  .sidebar{display:none}
  .topbar{width:100%}
  .content{width:100%;padding:14px 14px 78px}
  .dashboard-hero{grid-template-columns:1fr;min-width:0}
  .dashboard-hero::after{
    inset:0;
    background:url("assets/domain-hero.png") 72% center/cover no-repeat;
    opacity:.64;
  }
  .tree-root-icon{display:grid}
  .mobile-nav a>span{display:grid;place-items:center;width:24px;height:24px}
  .mobile-nav .ui-icon{width:24px;height:24px}
}
@media(max-width:620px){
  .overview-stats .stat-copy{max-width:72%}
  .dashboard-hero .identity-grid{grid-template-columns:1fr}
  .dashboard-hero .identity-grid .metric{border-right:0;border-bottom:1px solid var(--line)}
  .dashboard-hero .identity-grid .metric:last-child{border-bottom:0}
  .scenario-link{display:none}
  .product-card .module-head>div{max-width:82%}
}

/* High-definition flow system: functional screens based on exampledesign/high definition. */
:root{
  --flow-green:#7cff68;
  --flow-green-dim:#3ebd54;
  --flow-purple:#984cff;
  --flow-cyan:#36d9f2;
  --flow-panel:#050d0b;
  --flow-panel-soft:#07110e;
  --flow-line:rgba(143,178,158,.22);
}
body::before{opacity:.13;filter:saturate(.95) contrast(1.12)}
body::after{background:rgba(1,7,5,.94)}
.shell{background:#010705}
.shell>main{background:radial-gradient(circle at 92% 5%,rgba(128,47,255,.035),transparent 26%),#010705}
.sidebar{background:rgba(1,8,6,.985);border-color:var(--flow-line)}
.topbar{border-color:var(--flow-line);box-shadow:none;backdrop-filter:blur(20px)}
.content{max-width:1720px;padding:18px 22px 32px}
.card,.service-card,.product-card,.download-card,.health-card,.module-select-panel,.module-toggle,.domain-flow>div{
  border-color:var(--flow-line);
}
.card,.service-card{background:rgba(4,13,10,.94);box-shadow:0 14px 38px rgba(0,0,0,.2)}
.card:hover,.service-card:hover{border-color:rgba(124,255,104,.28)}
.btn.primary{
  background:linear-gradient(180deg,#9aff71,#51d93d);
  color:#031006;
  box-shadow:0 0 0 1px rgba(158,255,127,.15),0 0 18px rgba(104,255,77,.14);
}
.btn.primary:hover{background:linear-gradient(180deg,#adff89,#63e650);border-color:transparent}
.btn:not(.primary):hover{border-color:rgba(124,255,104,.52);background:rgba(124,255,104,.07)}
input,select,textarea{background:rgba(1,8,6,.82);border-color:rgba(143,178,158,.24)}
input:focus,select:focus,textarea:focus{outline:0;border-color:rgba(124,255,104,.65);box-shadow:0 0 0 2px rgba(124,255,104,.08)}
.section-tabs{background:#030a08;border-color:var(--flow-line);padding:5px}
.section-tabs button.active{background:rgba(124,255,104,.1);border-color:rgba(124,255,104,.38);color:var(--flow-green)}
.badge,.role-chip{border-radius:7px;background:rgba(2,10,7,.74)}
.table-wrap{border:1px solid var(--flow-line);border-radius:7px;overflow:auto;background:rgba(1,8,6,.58)}
table{border-collapse:collapse;width:100%}
th{height:35px;color:#77877f;font-size:10px;text-transform:uppercase;background:rgba(8,17,14,.72)}
td{height:42px;color:#c4cec8}
th,td{padding:8px 10px;border-bottom:1px solid rgba(143,178,158,.13);text-align:left}
tbody tr:last-child td{border-bottom:0}
tbody tr:hover td{background:rgba(124,255,104,.035)}

/* Account flow */
.shell[data-area="account"] #view>.grid:first-child>.card{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:350px;
}
.shell[data-area="account"] #view>.grid:first-child{align-items:start}
.shell[data-area="account"] #view>.grid:first-child>.card::before{
  content:"";
  position:absolute;
  z-index:-2;
  inset:0 0 auto 0;
  height:126px;
  background:url("assets/domain-hero.png") 78% 33%/cover no-repeat;
  opacity:.46;
  mask-image:linear-gradient(180deg,#000,transparent);
}
.shell[data-area="account"] #view>.grid:first-child>.card::after{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:linear-gradient(180deg,rgba(3,10,8,.2),rgba(3,10,8,.94) 115px);
  pointer-events:none;
}
.shell[data-page="settings"] #view>.grid:first-child>.card:first-child::before,
.shell[data-page="recovery"] #view>.grid:first-child>.card:first-child::before{background-image:url("assets/mycelium-network.png");background-position:center}
.shell[data-page="settings"] #view>.grid:first-child>.card>*:first-child,
.shell[data-page="recovery"] #view>.grid:first-child>.card>h2{margin-top:96px}
.shell[data-page="settings"] .health-list>div,
.shell[data-page="billing"] .health-list>div{background:rgba(1,9,6,.62);border:1px solid rgba(143,178,158,.15);border-radius:6px;padding:8px 10px}
.shell[data-page="settings"] .health-list{grid-template-columns:repeat(2,minmax(0,1fr))}
.shell[data-page="settings"] .linked-wallet-card{background:rgba(5,17,12,.86);border-color:rgba(124,255,104,.28)}
.shell[data-page="recovery"] .recovery-words{grid-template-columns:repeat(4,minmax(0,1fr))}

/* Domain flow */
.shell[data-area="domains"] #view{position:relative}
.shell[data-page="protect"] .domain-hero{grid-template-columns:minmax(365px,.78fr) minmax(620px,1.22fr);gap:14px}
.shell[data-page="protect"] .domain-summary{
  position:sticky;
  top:86px;
  min-height:calc(100vh - 108px);
  background:
    linear-gradient(180deg,rgba(2,9,7,.68),rgba(2,9,7,.88) 42%,rgba(2,9,7,.98)),
    url("assets/domain-hero.png") 70% center/cover no-repeat;
}
.shell[data-page="protect"] #createSvc{
  background:
    linear-gradient(180deg,rgba(117,37,190,.075),transparent 130px),
    rgba(4,13,10,.96);
  border-color:rgba(149,70,255,.28);
}
.shell[data-page="protect"] .domain-summary .domain-flow>div{
  padding:11px 0;
  border:0;
  border-bottom:1px solid rgba(143,178,158,.16);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.shell[data-page="protect"] .domain-summary .domain-flow>div:last-child{border-bottom:0}
.shell[data-page="protect"] .module-toggle-grid{gap:8px}
.shell[data-page="protect"] .module-toggle{
  min-height:82px;
  background:linear-gradient(145deg,rgba(124,255,104,.055),rgba(143,63,255,.045)),rgba(2,10,7,.82);
}
.shell[data-page="protect"] .module-toggle:nth-child(2){border-color:rgba(151,78,255,.3)}
.shell[data-page="protect"] .module-toggle:nth-child(3){border-color:rgba(76,201,220,.3)}
.shell[data-page="protect"] .module-toggle.active{border-color:rgba(124,255,104,.58);background:rgba(124,255,104,.1);box-shadow:inset 0 0 22px rgba(124,255,104,.055)}
.shell[data-page="my-domains"] .domain-manage-summary{
  min-height:210px;
  padding-right:min(42%,540px);
  background:
    linear-gradient(90deg,rgba(2,9,7,.98) 0%,rgba(2,9,7,.9) 48%,rgba(2,9,7,.18)),
    url("assets/domain-hero.png") right 48%/58% auto no-repeat,
    #020907;
}
.shell[data-page="my-domains"] .service-manage-card{border-color:rgba(148,73,255,.24)}
.shell[data-page="health"] #view>.card:first-child{
  background:
    linear-gradient(90deg,rgba(2,9,7,.98),rgba(2,9,7,.8)),
    url("assets/mycelium-network.png") right center/60% auto no-repeat;
}
.health-card{min-height:116px;background:rgba(2,10,7,.76)}

/* VPN flow */
.shell[data-page="vpn"] .product-card.vpn,
.shell[data-page="download-vpn"] .product-card.vpn{
  border-color:rgba(151,71,255,.42);
  background:#020807;
}
.shell[data-page="vpn"] .product-card.vpn::before,
.shell[data-page="download-vpn"] .product-card.vpn::before{
  /* Wide artwork must not grow with the height of the access explanation. */
  inset:0 0 auto auto;
  width:100%;
  max-width:720px;
  height:100%;
  max-height:220px;
  background-image:url("assets/vpn-shield.png");
  background-position:left center;
  background-size:contain;
  transform:scaleX(-1);
  opacity:.92;
}
.shell[data-page="vpn"] .product-card.vpn::after,
.shell[data-page="download-vpn"] .product-card.vpn::after{
  background:linear-gradient(90deg,#020807 0%,rgba(2,8,7,.97) 48%,rgba(2,8,7,.5) 73%,rgba(2,8,7,.12));
}
.shell[data-page="vpn"] .product-card.vpn{min-height:310px}
.shell[data-page="download-vpn"] .download-hero{min-height:210px}
.shell[data-page="download-vpn"] .downloads-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
.download-page .download-card{
  position:relative;
  min-height:224px;
  padding:13px;
  background:linear-gradient(180deg,rgba(140,64,255,.055),transparent 48%),rgba(3,12,9,.96);
  border-color:rgba(138,159,147,.22);
}
.download-page .download-head>.badge{position:absolute;top:12px;right:12px}
.download-page .download-title{width:100%;padding-right:76px}
.download-page .download-card.recommended{
  border-color:rgba(124,255,104,.58);
  background:linear-gradient(180deg,rgba(124,255,104,.11),transparent 50%),rgba(3,12,9,.96);
}
.download-page .download-platform-icon{
  width:52px;
  height:52px;
  border-color:rgba(157,75,255,.4);
  color:#b16aff;
  background:rgba(139,55,255,.08);
}
.download-page .recommended .download-platform-icon{border-color:rgba(124,255,104,.46);color:var(--flow-green);background:rgba(124,255,104,.08)}
.download-platform-icon svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:1.45;stroke-linecap:round;stroke-linejoin:round}
.download-page .download-card .btn{min-height:34px;padding:7px 10px}
.download-page .download-tags span{border-radius:6px}
.vpn-settings-card{border-color:rgba(151,71,255,.32);background:linear-gradient(135deg,rgba(143,55,255,.08),transparent 38%),rgba(4,13,10,.96)}

/* Earnings and node flow */
.shell[data-page="nodes"] .product-card.earning,
.shell[data-page="download-node"] .product-card.earning{
  border-color:rgba(124,255,104,.32);
  background:#020807;
}
.shell[data-page="nodes"] .product-card.earning::before,
.shell[data-page="download-node"] .product-card.earning::before{
  background-image:url("assets/earning-hero.png");
  background-position:center;
  background-size:cover;
  transform:none;
  opacity:.9;
}
.shell[data-page="nodes"] .product-card.earning::after,
.shell[data-page="download-node"] .product-card.earning::after{
  background:linear-gradient(90deg,#020807 0%,rgba(2,8,7,.98) 48%,rgba(2,8,7,.46) 75%,rgba(2,8,7,.08));
}
.shell[data-page="nodes"] .product-card.earning{min-height:260px}
.earning-stats{grid-template-columns:repeat(4,minmax(0,1fr));display:grid;gap:12px}
.earning-stats .stat{min-height:145px}
.shell[data-page="download-node"] .node-download-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.shell[data-page="payouts"] #view>.grid:first-child>.card:first-child{
  background:linear-gradient(145deg,rgba(124,255,104,.13),rgba(76,201,220,.06)),rgba(4,13,10,.96);
}

/* Finance flow */
.shell[data-page="billing"] .finance-hero{grid-template-columns:minmax(250px,.68fr) minmax(0,1.32fr)}
.shell[data-page="billing"] .finance-balance{
  min-height:174px;
  background:
    linear-gradient(90deg,rgba(2,9,7,.98),rgba(2,9,7,.52)),
    url("assets/earnings-node-hd.jpg") right center/cover no-repeat;
  border-color:rgba(124,255,104,.34);
}
.shell[data-page="billing"] .finance-tabs{
  position:sticky;
  top:72px;
  z-index:4;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  backdrop-filter:blur(18px);
}
.shell[data-page="billing"] .finance-tabs>*{min-width:0;width:100%;white-space:normal}

@media(min-width:1800px){
  .shell{grid-template-columns:268px minmax(0,1fr)}
  .content{padding:22px 28px 40px}
  .dashboard-hero{min-height:310px}
  .download-page .download-card{min-height:244px}
}
@media(max-width:1280px){
  .shell[data-page="protect"] .domain-hero{grid-template-columns:minmax(330px,.78fr) minmax(0,1.22fr)}
  .shell[data-page="download-vpn"] .downloads-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .shell[data-page="download-node"] .node-download-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .earning-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:960px){
  .content{padding:14px 14px 82px}
  .shell[data-page="billing"] #view,
  .shell[data-page="billing"] #view>*{min-width:0;max-width:100%}
  .shell[data-page="billing"] .finance-hero{grid-template-columns:minmax(0,1fr)}
  .shell[data-page="billing"] .finance-tabs{position:relative;top:auto}
  .shell[data-page="billing"] .finance-balance{min-height:138px}
  .shell[data-page="protect"] .domain-hero{grid-template-columns:1fr}
  .shell[data-page="protect"] .domain-summary{position:relative;top:auto;min-height:520px}
  .shell[data-page="download-vpn"] .downloads-grid,
  .shell[data-page="download-node"] .node-download-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .shell[data-page="my-domains"] .domain-manage-summary{padding-right:16px;background:linear-gradient(90deg,rgba(2,9,7,.96),rgba(2,9,7,.72)),url("assets/domain-hero.png") center/cover no-repeat}
  .shell[data-area="account"] #view>.grid:first-child>.card{min-height:0}
}
@media(max-width:620px){
  .shell[data-page="billing"] .finance-tabs{grid-template-columns:repeat(2,minmax(0,1fr));gap:5px;padding:5px}
  .shell[data-page="billing"] .finance-tabs>*{padding:7px 6px;font-size:11px;line-height:1.25}
  .shell[data-page="billing"] .finance-hero>*{min-width:0;max-width:100%}
  .shell[data-page="billing"] .finance-hero .card-head{align-items:flex-start;flex-wrap:wrap}
  .shell[data-page="download-vpn"] .downloads-grid,
  .shell[data-page="download-node"] .node-download-grid,
  .earning-stats{grid-template-columns:1fr}
  .shell[data-page="settings"] #view>.grid:first-child>.card>*:first-child,
  .shell[data-page="recovery"] #view>.grid:first-child>.card>h2{margin-top:72px}
  .shell[data-page="recovery"] .recovery-words{grid-template-columns:repeat(2,minmax(0,1fr))}
  .download-page .download-card{min-height:190px}
  .shell[data-page="settings"] .health-list{grid-template-columns:1fr}
}

/* Functional flow pages. These use the supplied source artwork, never cropped
   screenshots of the design boards. */
.sidebar-brand{
  width:auto;
  height:54px;
  min-height:54px;
  margin:0 5px;
  padding:0 5px 12px;
  border-bottom:1px solid var(--flow-line);
  background:none;
}
.sidebar-brand>*{visibility:visible}
.sidebar-brand .brand-mark{
  width:34px;
  height:34px;
  border:0;
  background:rgba(124,255,104,.08);
  box-shadow:0 0 22px rgba(124,255,104,.08);
}
.sidebar-brand .brand-mark img{width:25px;height:25px;object-fit:contain}
.sidebar-brand .brand-title h2{font-size:14px;color:var(--flow-green)}
.sidebar-brand .brand-title p{font-size:10px;color:#7d8b83}
.dashboard-hero::after{
  inset:0 0 0 48%;
  background:url("assets/control-hero.png") 70% center/cover no-repeat;
  opacity:.9;
}
.dashboard-hero-copy>.brand .brand-mark{background:rgba(124,255,104,.08)}
.dashboard-hero-copy>.brand .brand-mark img{visibility:visible;width:29px;height:29px;object-fit:contain}
.dashboard-reference-stats .stat::after{display:none}
.overview-stats .stat-copy{max-width:78%}
.product-card::before{background-size:cover}
.product-card.domains::before{background-image:url("assets/domain-shield.png");background-position:center}
.product-card.vpn::before{background-image:url("assets/vpn-shield.png");background-position:center;transform:none}
.product-card.earning::before{background-image:url("assets/earning-hero.png");background-position:center}

.flow-hero{
  --flow-image:url("assets/mycelium-network.png");
  position:relative;
  isolation:isolate;
  min-height:172px;
  overflow:hidden;
  border:1px solid var(--flow-line);
  border-radius:7px;
  padding:22px 24px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  background:#030907;
  box-shadow:0 16px 42px rgba(0,0,0,.26);
}
.flow-hero::before{
  content:"";
  position:absolute;
  z-index:-2;
  inset:0;
  background:var(--flow-image) 64% center/cover no-repeat;
  opacity:.82;
}
.flow-hero::after{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:linear-gradient(90deg,#030907 0%,rgba(3,9,7,.97) 40%,rgba(3,9,7,.64) 68%,rgba(3,9,7,.2)),linear-gradient(0deg,rgba(3,9,7,.76),transparent 72%);
}
.flow-hero>div{max-width:760px}
.flow-hero .eyebrow{
  display:block;
  margin-bottom:7px;
  color:var(--flow-green);
  font-size:10px;
  font-weight:780;
  text-transform:uppercase;
}
.flow-hero h1{font-size:27px;line-height:1.1}
.flow-hero p{max-width:680px;margin-top:7px;color:#a5b0aa;font-size:12px}
.flow-hero>.badge,.flow-hero>.btn,.flow-hero>select{position:relative;z-index:1;flex:0 0 auto}
.flow-hero>select{width:min(280px,38%);background:rgba(1,8,6,.88)}
.profile-flow-hero{--flow-image:url("assets/profile-hero.png")}
.roles-flow-hero{--flow-image:url("assets/roles-hero.png")}
.keys-flow-hero{--flow-image:url("assets/keys-hero.png")}
.network-demand-flow-hero{--flow-image:url("assets/armillaria-bg.png")}
.settings-flow-hero{--flow-image:url("assets/mycelium-network.png")}
.health-flow-hero,.firewall-flow-hero{--flow-image:url("assets/firewall-hero.png")}
.vpn-connect-flow-hero{--flow-image:url("assets/vpn-connect-hero.png")}
.earnings-flow-hero{--flow-image:url("assets/earnings-network.png")}
.wallets-flow-hero,.payouts-flow-hero{--flow-image:url("assets/wallets-hero.png")}

.profile-layout,.network-flow-grid,.settings-flow-grid,.vpn-connect-layout,.earnings-layout,.wallets-layout,.payout-layout{
  display:grid;
  gap:14px;
  align-items:start;
}
.profile-layout{grid-template-columns:minmax(330px,.76fr) minmax(520px,1.24fr)}
.profile-layout>.card{min-height:300px}
.identity-primary{display:grid;grid-template-columns:78px minmax(0,1fr);gap:14px;align-items:center}
.identity-avatar{
  width:78px;
  height:78px;
  overflow:hidden;
  border:1px solid rgba(151,76,255,.42);
  border-radius:7px;
  background:rgba(151,76,255,.08);
}
.identity-avatar img{width:100%;height:100%;object-fit:cover}
.identity-primary>div:last-child{display:grid;gap:6px;min-width:0}
.identity-primary b,.identity-primary p{overflow-wrap:anywhere}
.profile-metrics{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  overflow:hidden;
  border:1px solid var(--flow-line);
  border-radius:6px;
  background:rgba(1,8,6,.58);
}
.profile-metrics>div{min-height:78px;padding:10px;border-right:1px solid var(--flow-line);display:grid;align-content:center;gap:2px}
.profile-metrics>div:last-child{border-right:0}
.profile-metrics span,.profile-metrics small{color:var(--muted);font-size:10px}
.profile-metrics b{font-size:17px;color:#e8f0eb;overflow-wrap:anywhere}
.profile-metrics b.warn,.profile-metrics b.ok{font-size:12px;line-height:1.18}
.role-flow-card{min-height:235px}
.role-flow-card.active{border-color:rgba(124,255,104,.4);background:linear-gradient(145deg,rgba(124,255,104,.045),transparent 48%),rgba(4,13,10,.94)}
.permission{display:inline-flex;min-width:54px;justify-content:center;font-size:11px;font-weight:720}
.permission.yes{color:var(--flow-green)}
.permission.no{color:#59655f}
.public-key-row{
  display:grid;
  grid-template-columns:36px minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
  min-height:66px;
  padding:9px 10px;
  border:1px solid var(--flow-line);
  border-radius:6px;
  background:rgba(1,8,6,.62);
}
.public-key-row.green{border-color:rgba(124,255,104,.25)}
.public-key-row.purple{border-color:rgba(151,76,255,.3)}
.public-key-row.gold{border-color:rgba(230,202,72,.26)}
.key-row-icon{width:36px;height:36px;padding:8px;border:1px solid currentColor;border-radius:6px;color:var(--flow-green);background:rgba(124,255,104,.05)}
.public-key-row.purple .key-row-icon{color:var(--flow-purple)}
.public-key-row.gold .key-row-icon{color:var(--warn)}
.public-key-row>div{min-width:0}
.public-key-row p{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.key-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}

.network-flow-grid{grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr)}
.region-demand-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
.region-demand{
  display:grid;
  gap:8px;
  min-height:112px;
  padding:11px;
  border:1px solid var(--flow-line);
  border-radius:6px;
  background:rgba(1,8,6,.62);
}
.region-demand>div{display:flex;justify-content:space-between;gap:8px;align-items:center}
.region-demand p,.region-demand small{color:var(--muted);font-size:11px}
.region-demand.warn{border-color:rgba(230,202,72,.32)}
.region-demand.bad{border-color:rgba(255,121,111,.34)}
.region-demand.purple{border-color:rgba(151,76,255,.34)}
.network-capacity{height:5px;overflow:hidden;border-radius:3px;background:rgba(143,178,158,.12)}
.network-capacity i{display:block;height:100%;background:linear-gradient(90deg,var(--flow-green-dim),var(--flow-green));box-shadow:0 0 10px rgba(124,255,104,.24)}
.network-geo-summary{
  margin-top:14px;
  padding:12px 0 13px;
  border-top:1px solid rgba(139,255,116,.13);
  border-bottom:1px solid rgba(139,255,116,.13);
}
.network-geo-heading{display:flex;align-items:center;justify-content:space-between;gap:12px}
.network-geo-heading>div{display:grid;gap:3px}
.network-geo-heading small{color:var(--flow-muted);font-size:9px}
.network-country-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin-top:10px}
.network-country-chip{
  display:grid;
  grid-template-columns:30px minmax(0,1fr) auto;
  align-items:center;
  gap:8px;
  min-height:66px;
  padding:8px 9px;
  border:1px solid rgba(139,255,116,.23);
  border-radius:6px;
  background:rgba(8,30,21,.72);
  color:var(--flow-text);
  font-size:11px;
}
.network-country-chip>strong{display:grid;place-items:center;width:30px;height:30px;border:1px solid rgba(139,255,116,.25);border-radius:5px;color:var(--flow-green);font-size:10px;background:rgba(2,12,8,.72)}
.network-country-chip>div{display:grid;gap:2px;min-width:0}
.network-country-chip>div b{overflow:hidden;color:var(--flow-text);font-size:11px;text-overflow:ellipsis;white-space:nowrap}
.network-country-chip>div span,.network-country-chip>small{color:var(--flow-muted);font-size:9px}
.network-country-chip>small{text-align:right;white-space:nowrap}
.network-country-chip>i{grid-column:1/-1;height:3px;overflow:hidden;border-radius:2px;background:rgba(143,178,158,.11)}
.network-country-chip>i span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--flow-green-dim),var(--flow-green));box-shadow:0 0 8px rgba(124,255,104,.24)}
.network-country-chip.legacy{grid-template-columns:30px minmax(0,1fr);min-height:48px}
.network-geo-footer{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:9px}
.network-geo-footer a{color:var(--flow-muted);font-size:9px;text-decoration:none}
.network-geo-footer a:hover{color:var(--flow-green)}
.network-geo-unverified{margin:0;color:var(--flow-muted);font-size:10px}
.network-geo-unverified.warn{color:#e3c65d}
.network-runtime-card{min-height:100%}

.network-demand-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:14px;align-items:stretch}
.network-demand-card,.network-demand-privacy-card{min-height:100%;border-color:rgba(124,255,104,.22);background:linear-gradient(145deg,rgba(124,255,104,.06),rgba(3,12,9,.94) 48%,rgba(18,8,30,.92))}
.network-demand-current{display:grid;grid-template-columns:46px minmax(0,1fr);gap:12px;align-items:center;margin-top:14px;padding:13px;border:1px solid rgba(124,255,104,.2);border-radius:7px;background:rgba(1,10,7,.7)}
.network-demand-current>span{display:grid;place-items:center;width:46px;height:46px;border:1px solid currentColor;border-radius:7px;color:var(--flow-green);background:rgba(124,255,104,.08)}
.network-demand-current>span svg{width:23px;height:23px}
.network-demand-current small{display:block;color:var(--flow-muted);font-size:9px;text-transform:uppercase;letter-spacing:.06em}
.network-demand-current b{display:block;margin-top:3px;color:var(--flow-text);font-size:18px;line-height:1.1}
.network-demand-current p{margin:5px 0 0;color:var(--flow-muted);font-size:11px;line-height:1.42}
.network-demand-current.warn{border-color:rgba(230,202,72,.32)}
.network-demand-current.warn>span{color:#e3c65d;background:rgba(230,202,72,.07)}
.network-demand-current.bad{border-color:rgba(255,121,111,.35)}
.network-demand-current.bad>span{color:#ff8589;background:rgba(255,121,111,.07)}
.network-demand-scale{margin-top:16px;padding-top:13px;border-top:1px solid rgba(124,255,104,.13)}
.network-demand-scale>span{color:var(--flow-muted);font-size:9px;font-weight:760;text-transform:uppercase;letter-spacing:.07em}
.network-demand-scale ol{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin:9px 0 0;padding:0;list-style:none}
.network-demand-level{display:grid;grid-template-columns:9px minmax(0,1fr);gap:7px;align-items:start;min-height:72px;padding:9px;border:1px solid rgba(143,178,158,.15);border-radius:6px;background:rgba(1,8,6,.46);opacity:.68}
.network-demand-level.is-current{opacity:1;border-color:rgba(124,255,104,.43);background:rgba(124,255,104,.08);box-shadow:inset 0 0 0 1px rgba(124,255,104,.05)}
.network-demand-level>i{width:8px;height:8px;margin-top:3px;border-radius:50%;background:#718077;box-shadow:0 0 8px rgba(171,187,176,.24)}
.network-demand-level.ok>i{background:var(--flow-green);box-shadow:0 0 9px rgba(124,255,104,.62)}
.network-demand-level.warn>i{background:#e3c65d;box-shadow:0 0 9px rgba(230,202,72,.55)}
.network-demand-level.bad>i{background:#ff8589;box-shadow:0 0 9px rgba(255,121,111,.55)}
.network-demand-level b{display:block;color:var(--flow-text);font-size:11px;line-height:1.25}
.network-demand-level small{display:block;margin-top:4px;color:var(--flow-muted);font-size:9px;line-height:1.35}
.network-demand-privacy-card{border-color:rgba(151,76,255,.26);background:linear-gradient(145deg,rgba(151,76,255,.08),rgba(5,9,14,.94) 58%)}
.network-demand-privacy-list{display:grid;gap:9px;margin:15px 0 0;padding:0;list-style:none}
.network-demand-privacy-list li{position:relative;padding:9px 10px 9px 25px;border:1px solid rgba(151,76,255,.17);border-radius:6px;color:#c6b8d5;font-size:11px;line-height:1.4;background:rgba(21,10,32,.48)}
.network-demand-privacy-list li::before{content:"";position:absolute;left:10px;top:13px;width:7px;height:7px;border:1px solid #be8cff;border-radius:50%;box-shadow:0 0 8px rgba(183,117,255,.58)}

:root[data-theme="light"] .network-demand-card,:root[data-theme="light"] .network-demand-privacy-card{border-color:rgba(8,123,131,.26);background:linear-gradient(145deg,rgba(239,251,247,.98),rgba(255,255,252,.97) 58%);box-shadow:var(--shadow)}
:root[data-theme="light"] .network-demand-current{border-color:rgba(8,123,131,.24);background:rgba(246,252,250,.96)}
:root[data-theme="light"] .network-demand-current>span{color:#087b83;background:rgba(8,123,131,.07)}
:root[data-theme="light"] .network-demand-current b{color:#173b35}
:root[data-theme="light"] .network-demand-current p,:root[data-theme="light"] .network-demand-current small{color:#526e67}
:root[data-theme="light"] .network-demand-level{border-color:rgba(34,93,53,.16);background:rgba(250,253,251,.96)}
:root[data-theme="light"] .network-demand-level.is-current{border-color:rgba(8,123,131,.38);background:rgba(226,247,240,.9)}
:root[data-theme="light"] .network-demand-level b{color:#1c4138}
:root[data-theme="light"] .network-demand-level small{color:#587069}
:root[data-theme="light"] .network-demand-privacy-card{border-color:rgba(109,60,164,.22);background:linear-gradient(145deg,rgba(246,241,253,.98),rgba(255,255,252,.97) 60%)}
:root[data-theme="light"] .network-demand-privacy-list li{border-color:rgba(109,60,164,.18);color:#5d506b;background:rgba(250,247,255,.9)}

@media(max-width:1100px){.network-demand-layout{grid-template-columns:1fr}}
@media(max-width:620px){.network-demand-scale ol{grid-template-columns:1fr}.network-demand-level{min-height:0}.network-demand-current{grid-template-columns:39px minmax(0,1fr);padding:11px}.network-demand-current>span{width:39px;height:39px}.network-demand-current b{font-size:16px}}

@media(max-width:620px){
  .network-country-list{grid-template-columns:1fr}
  .network-country-chip{grid-template-columns:30px minmax(0,1fr)}
  .network-country-chip>small{grid-column:2;text-align:left;white-space:normal}
  .network-geo-footer{align-items:flex-start;flex-direction:column}
}

.settings-flow-grid{grid-template-columns:minmax(390px,1fr) minmax(340px,.8fr) minmax(320px,.8fr)}
.setting-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(130px,190px);
  gap:14px;
  align-items:center;
  min-height:62px;
  padding:9px 0;
  border-bottom:1px solid rgba(143,178,158,.14);
}
.setting-row:last-of-type{border-bottom:0}
.switch{position:relative;justify-self:end;width:42px;height:23px}
.switch input{position:absolute;opacity:0;pointer-events:none}
.switch span{display:block;width:42px;height:23px;border:1px solid var(--flow-line);border-radius:12px;background:#15201b;cursor:pointer;transition:.18s}
.switch span::after{content:"";display:block;width:17px;height:17px;margin:2px;border-radius:50%;background:#7f8b85;transition:.18s}
.switch input:checked+span{border-color:rgba(124,255,104,.55);background:rgba(124,255,104,.2)}
.switch input:checked+span::after{transform:translateX(19px);background:var(--flow-green);box-shadow:0 0 12px rgba(124,255,104,.4)}
.endpoint-card{grid-column:3;grid-row:1}

.firewall-workspace{padding:0;overflow:hidden}
.firewall-workspace>.card-head{padding:16px 17px;border-bottom:1px solid var(--flow-line)}
.firewall-service-panel{display:grid;gap:14px;padding:16px 17px}
.protection-level-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px}
.protection-level{
  min-height:92px;
  padding:11px;
  display:grid;
  gap:4px;
  align-content:center;
  border:1px solid var(--flow-line);
  border-radius:6px;
  background:rgba(1,8,6,.66);
  color:var(--text);
  cursor:pointer;
  text-align:left;
}
.protection-level:hover,.protection-level.active{border-color:rgba(124,255,104,.58);background:rgba(124,255,104,.08)}
.protection-level b{font-size:13px}
.protection-level span{font-size:10px;color:var(--muted)}
.protection-level>span:first-child{
  width:32px;
  height:32px;
  padding:6px;
  display:grid;
  place-items:center;
  color:var(--flow-green);
  border:1px solid rgba(124,255,104,.3);
  border-radius:6px;
  background:rgba(124,255,104,.06);
}
.protection-level>span:first-child .ui-icon{width:18px;height:18px}
.protection-level em{font-size:10px;font-style:normal;color:var(--flow-green)}
.firewall-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding:13px;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.48)}
.firewall-service-panel .module-select-panel{margin:0}
.domain-health-panel{min-width:0}
.dns-route-card{min-height:260px}
.dns-route-visual{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr);gap:8px;align-items:center;margin:16px 0}
.dns-route-visual>div{min-height:86px;padding:11px;display:grid;place-items:center;align-content:center;gap:6px;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.66);text-align:center}
.dns-route-visual>div.active{border-color:rgba(124,255,104,.45);background:rgba(124,255,104,.07)}
.dns-route-visual svg{width:25px;height:25px;color:var(--flow-green)}
.dns-route-visual span{font-size:10px;color:var(--muted)}
.system-health-strip .health-card{padding:12px}

.vpn-connect-layout{grid-template-columns:minmax(0,1.08fr) minmax(350px,.92fr)}
.vpn-device-choice{display:grid;gap:8px}
.device-choice{
  display:grid;
  grid-template-columns:18px 34px minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
  min-height:64px;
  padding:9px 10px;
  border:1px solid var(--flow-line);
  border-radius:6px;
  background:rgba(1,8,6,.64);
  cursor:pointer;
}
.device-choice.active{border-color:rgba(124,255,104,.45);background:rgba(124,255,104,.07)}
.device-choice>span{width:34px;height:34px;padding:7px;color:var(--flow-green);border:1px solid rgba(124,255,104,.25);border-radius:6px}
.device-choice>div{min-width:0}
.device-choice em{font-style:normal;font-size:10px;color:var(--muted)}
.connection-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.connection-steps>div{min-height:70px;padding:9px;display:grid;grid-template-columns:23px minmax(0,1fr);gap:7px;align-items:center;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.58)}
.connection-steps b{width:23px;height:23px;display:grid;place-items:center;border:1px solid rgba(124,255,104,.35);border-radius:50%;color:var(--flow-green);font-size:10px}
.connection-steps span{font-size:11px;color:var(--muted)}
.connection-grant-card{border-color:rgba(151,76,255,.32)}
.exit-node-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.exit-node-grid article{display:grid;grid-template-columns:34px minmax(0,1fr) auto;gap:9px;align-items:center;min-height:62px;padding:9px;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.6)}
.exit-node-grid article>span{width:34px;height:34px;padding:7px;color:var(--flow-purple);border:1px solid rgba(151,76,255,.28);border-radius:6px}
.exit-node-grid article>div{min-width:0}
.exit-node-grid em{font-size:10px;color:var(--muted);font-style:normal}

.earnings-layout{grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr)}
.earnings-chart{
  position:relative;
  min-height:320px;
  margin-top:14px;
  padding:14px 14px 36px 54px;
  overflow:hidden;
  border:1px solid rgba(54,217,242,.3);
  border-radius:6px;
  background:
    linear-gradient(180deg,rgba(54,217,242,.075),transparent 58%),
    repeating-linear-gradient(90deg,transparent,transparent calc(20% - 1px),rgba(54,217,242,.075) 20%),
    repeating-linear-gradient(0deg,transparent,transparent 57px,rgba(54,217,242,.1) 58px),
    #020b0b;
  box-shadow:inset 0 0 38px rgba(54,217,242,.035);
}
.earnings-chart>.stat-chart{
  position:absolute;
  left:52px;
  right:12px;
  bottom:36px;
  width:calc(100% - 64px);
  height:244px;
  color:var(--flow-cyan);
  opacity:1;
  filter:drop-shadow(0 0 8px rgba(54,217,242,.22));
}
.earnings-chart>.stat-chart .chart-grid{stroke:rgba(54,217,242,.12)}
.earnings-chart>.stat-chart .chart-area{opacity:.2}
.earnings-chart>.stat-chart .chart-line{stroke-width:1.65}
.chart-scale{position:absolute;left:8px;top:15px;bottom:34px;display:flex;flex-direction:column;justify-content:space-between;color:var(--muted);font-size:9px}
.chart-caption{position:absolute;left:54px;right:14px;bottom:9px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr)) auto;align-items:center;color:var(--muted);font-size:10px}
.chart-caption span:nth-child(2){text-align:center}
.chart-caption span:nth-child(3){text-align:right}
.chart-caption b{color:var(--flow-cyan)}
.shell[data-page="earnings"] .earnings-overview .stat-chart{color:var(--flow-cyan)}
.shell[data-page="earnings"] .earnings-overview .stat:nth-child(3){border-color:rgba(54,217,242,.34)}
.dashboard-reference-stats .traffic-stat .stat-chart{color:var(--flow-cyan)}

.wallets-layout{grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr)}
.wallet-card-list{display:grid;gap:8px}
.payout-wallet-card{display:grid;grid-template-columns:46px minmax(0,1fr) auto;gap:11px;align-items:center;min-height:72px;padding:10px;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.62)}
.payout-wallet-card.active{border-color:rgba(124,255,104,.35)}
.payout-wallet-card.purple{border-color:rgba(151,76,255,.28)}
.payout-wallet-card.cyan{border-color:rgba(76,201,220,.28)}
.payout-wallet-card.gold{border-color:rgba(230,202,72,.28)}
.payout-wallet-card.orange{border-color:rgba(240,166,77,.28)}
.wallet-coin{width:46px;height:46px;display:grid;place-items:center;border:1px solid currentColor;border-radius:50%;color:var(--flow-green);font-size:10px;font-weight:820;background:rgba(124,255,104,.05)}
.payout-wallet-card.purple .wallet-coin{color:var(--flow-purple)}
.payout-wallet-card.cyan .wallet-coin{color:var(--flow-cyan)}
.payout-wallet-card.gold .wallet-coin{color:var(--warn)}
.payout-wallet-card.orange .wallet-coin{color:var(--accent2)}
.payout-wallet-card>div{min-width:0}
.payout-layout{grid-template-columns:minmax(360px,.7fr) minmax(0,1.3fr)}
.payout-steps{grid-template-columns:repeat(4,minmax(0,1fr))}
.payout-history-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.payout-history-grid article{display:grid;gap:7px;min-height:105px;padding:11px;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.6)}
.payout-history-grid article>div{display:flex;justify-content:space-between;gap:8px;align-items:center}
.payout-history-grid p,.payout-history-grid small{color:var(--muted);font-size:10px;overflow-wrap:anywhere}
.node-install-guide{min-width:0}
.install-tabs{position:relative;overflow:auto;flex-wrap:nowrap}
.install-tabs button{flex:0 0 auto}
.install-panels{min-width:0}
.install-panel{display:grid;gap:13px;min-width:0;padding:14px;border:1px solid var(--flow-line);border-radius:6px;background:linear-gradient(135deg,rgba(124,255,104,.035),rgba(151,76,255,.025)),rgba(1,8,6,.62)}
.install-panel-head{display:flex;justify-content:space-between;align-items:flex-start;gap:14px}
.install-panel-head>div{min-width:0}
.install-panel-head>.btn,.install-panel-head>.badge{flex:0 0 auto}
.install-code{position:relative;min-width:0;overflow:hidden;border:1px solid rgba(143,178,158,.18);border-radius:6px;background:#010604}
.install-code>.btn{position:absolute;top:8px;right:8px;z-index:1;background:rgba(4,13,10,.92)}
.install-code pre{max-width:100%;margin:0;padding:18px 80px 18px 16px;overflow:auto;color:#b7e9aa;font-size:11px;line-height:1.55;white-space:pre}
.shell[data-page="client"] .unified-client-page .unified-download-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.download-page .download-title{padding-right:58px}
.download-page .download-title h3{overflow-wrap:normal;word-break:normal}

@media(max-width:1360px){
  .settings-flow-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .endpoint-card{grid-column:auto;grid-row:auto}
  .profile-layout{grid-template-columns:1fr}
  .profile-layout>.card{min-height:0}
  .exit-node-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:1100px){
  .network-flow-grid,.vpn-connect-layout,.earnings-layout,.wallets-layout,.payout-layout{grid-template-columns:1fr}
  .protection-level-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .firewall-options{grid-template-columns:repeat(2,minmax(0,1fr))}
  .payout-history-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(min-width:1800px){
  .shell[data-page="client"] .unified-client-page .unified-download-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
}
@media(max-width:1280px){
  .shell[data-page="client"] .unified-client-page .unified-download-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:760px){
  .flow-hero{min-height:230px;padding:16px;align-items:flex-end;flex-wrap:wrap}
  .flow-hero::after{background:linear-gradient(0deg,#030907 0%,rgba(3,9,7,.9) 53%,rgba(3,9,7,.25))}
  .flow-hero>select{width:100%}
  .flow-hero h1{font-size:24px}
  .settings-flow-grid,.region-demand-grid{grid-template-columns:1fr}
  .profile-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
  .profile-metrics>div:nth-child(2){border-right:0}
  .profile-metrics>div:nth-child(-n+2){border-bottom:1px solid var(--flow-line)}
  .key-grid{grid-template-columns:1fr}
  .public-key-row{grid-template-columns:34px minmax(0,1fr)}
  .public-key-row>.btn,.public-key-row>.badge{grid-column:2;justify-self:start}
  .setting-row{grid-template-columns:1fr}
  .setting-row select{width:100%}
  .setting-row .switch{justify-self:start}
  .firewall-options,.exit-node-grid,.payout-history-grid{grid-template-columns:1fr}
  .dns-route-visual{grid-template-columns:1fr}
  .dns-route-visual>b{transform:rotate(90deg);justify-self:center}
  .connection-steps,.payout-steps{grid-template-columns:1fr}
  .payout-wallet-card{grid-template-columns:42px minmax(0,1fr)}
  .payout-wallet-card>.badge{grid-column:2;justify-self:start}
  .shell[data-page="client"] .unified-client-page .unified-download-grid{grid-template-columns:1fr}
  .install-panel-head{display:grid}
  .install-panel-head>.btn,.install-panel-head>.badge{justify-self:start}
  .install-code pre{padding:52px 12px 14px}
}
@media(max-width:480px){
  .profile-metrics,.protection-level-grid{grid-template-columns:1fr}
  .profile-metrics>div{border-right:0;border-bottom:1px solid var(--flow-line)}
  .profile-metrics>div:last-child{border-bottom:0}
  .identity-primary{grid-template-columns:58px minmax(0,1fr)}
  .identity-avatar{width:58px;height:58px}
  .device-choice{grid-template-columns:16px 30px minmax(0,1fr)}
  .device-choice em{grid-column:3}
}

/* Desktop overview uses the supplied full-resolution artwork directly. */
@media(min-width:961px){
  .sidebar-brand .brand-mark{
    background:rgba(124,255,104,.06);
  }
  .sidebar-brand .brand-mark img{visibility:visible}
  .dashboard-hero::after{
    inset:0 0 0 46%;
    background:url("assets/dashboard-hero.png") 68% center/cover no-repeat;
    opacity:1;
  }
  .dashboard-hero-copy>.brand .brand-mark{
    background:rgba(124,255,104,.06);
  }
  .dashboard-hero-copy>.brand .brand-mark img{visibility:visible}
  .dashboard-reference-stats .stat::after{
    display:none;
  }
  .product-card::before{
    background-image:url("assets/dashboard-hero.png");
    background-size:cover;
    background-repeat:no-repeat;
  }
  .product-card.domains::before{background-image:url("assets/domain-shield.png");background-position:center}
  .product-card.vpn::before{background-image:url("assets/vpn-shield.png");background-position:center;transform:scaleX(-1)}
  .product-card.earning::before{background-image:url("assets/earning-hero.png");background-position:center}
}

/* Unified client: the VPN and earnings routes expose the same signed binary. */
.unified-client-flow-hero{
  --flow-image:url("assets/vpn-connect-hero.png");
  min-height:232px;
  margin-bottom:14px;
}
.unified-client-flow-hero>div:first-child{max-width:660px}
.client-hero-modules{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.client-hero-modules span{display:flex;align-items:center;gap:6px;padding:6px 9px;border:1px solid rgba(124,255,104,.28);border-radius:6px;background:rgba(1,8,6,.68);font-size:10px;font-weight:760;text-transform:uppercase}
.client-hero-modules svg{width:15px;height:15px;color:var(--flow-green)}
.client-hero-state{position:relative;z-index:1;display:grid;justify-items:end;align-content:center;min-width:180px;padding:14px;border:1px solid rgba(151,76,255,.3);border-radius:6px;background:rgba(1,8,6,.76)}
.client-hero-state>b{font-size:42px;line-height:1;color:var(--flow-green)}
.client-hero-state small{margin-top:4px;color:var(--muted)}
.client-profile-card{border-color:rgba(151,76,255,.28);background:linear-gradient(135deg,rgba(151,76,255,.06),transparent 40%),rgba(3,12,9,.96)}
.client-profile-layout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(310px,.75fr);gap:14px;align-items:start}
.client-module-picker{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.client-module-picker .module-toggle{min-height:78px;grid-template-columns:18px 34px minmax(0,1fr) auto;align-items:center;align-content:center;gap:9px;padding:10px;cursor:pointer}
.client-module-picker .module-toggle>input{width:15px;height:15px;margin:0;accent-color:var(--flow-green)}
.client-module-picker .module-toggle>span{width:34px;height:34px;display:grid;place-items:center;padding:7px;border:1px solid rgba(151,76,255,.28);border-radius:6px;color:var(--flow-purple);background:rgba(151,76,255,.06)}
.client-module-picker .module-toggle>span svg{width:100%;height:100%}
.client-module-picker .module-toggle>div{min-width:0}
.client-module-picker .module-toggle b{font-size:12px}
.client-module-picker .module-toggle p{margin-top:3px;color:var(--muted);font-size:10px;line-height:1.35}
.client-module-picker .module-toggle em{color:var(--flow-green);font-size:9px;font-style:normal;text-transform:uppercase}
.client-module-picker .module-toggle:has(input:checked){border-color:rgba(124,255,104,.42);background:rgba(124,255,104,.055)}
.client-module-picker .module-toggle.locked{cursor:default}
.client-profile-form{padding:12px;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.58)}
.client-pairing-primary{
  display:grid;
  gap:10px;
  padding:15px;
  border:1px solid rgba(54,217,242,.3);
  border-radius:7px;
  background:linear-gradient(135deg,rgba(54,217,242,.07),rgba(124,255,104,.025)),rgba(1,10,8,.76);
}
.client-pairing-primary[data-client-pairing-ready="true"]{
  border-color:rgba(124,255,104,.52);
  box-shadow:inset 3px 0 rgba(124,255,104,.72),0 14px 30px rgba(0,0,0,.16);
}
.native-device-handoff{display:flex;align-items:center;justify-content:space-between;gap:14px}
.native-device-handoff>div{min-width:0}
.native-device-handoff p{margin-top:4px;line-height:1.45}
.native-device-handoff code{display:block;margin-top:7px;color:var(--flow-cyan);overflow-wrap:anywhere}
.client-pairing-primary>#createUnifiedClientProfile{width:min(100%,420px);min-height:46px;font-size:13px}
.client-pairing-primary>#createUnifiedClientProfile:disabled{
  border-color:rgba(152,213,172,.2);
  background:rgba(92,113,100,.24);
  color:#819087;
  box-shadow:none;
}
.client-bootstrap-note{color:var(--muted);font-size:10px;line-height:1.5}
.client-profile-import-note{max-width:760px;line-height:1.5}
.client-consent-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;max-width:900px}
.client-vpn-consent,
.client-earning-consent{
  display:grid;
  grid-template-columns:18px 36px minmax(0,1fr);
  align-items:center;
  gap:10px;
  padding:11px 12px;
  border:1px solid rgba(54,217,242,.32);
  border-radius:7px;
  color:var(--text);
  background:rgba(54,217,242,.045);
  cursor:pointer;
}
.client-earning-consent{border-color:rgba(151,76,255,.32);background:rgba(151,76,255,.045)}
.client-vpn-consent:has(input:checked),
.client-earning-consent:has(input:checked){border-color:rgba(124,255,104,.54);background:rgba(124,255,104,.065)}
.client-vpn-consent>input,
.client-earning-consent>input{width:16px;height:16px;margin:0;accent-color:var(--flow-green)}
.client-vpn-consent>span:nth-of-type(1),
.client-earning-consent>span:nth-of-type(1){width:36px;height:36px;display:grid;place-items:center;padding:8px;border:1px solid rgba(54,217,242,.3);border-radius:6px;color:var(--flow-cyan);background:rgba(54,217,242,.06)}
.client-earning-consent>span:nth-of-type(1){border-color:rgba(151,76,255,.3);color:var(--flow-purple);background:rgba(151,76,255,.06)}
.client-vpn-consent>span:nth-of-type(1) svg,
.client-earning-consent>span:nth-of-type(1) svg{width:100%;height:100%}
.client-vpn-consent>span:last-child,
.client-earning-consent>span:last-child{display:grid;gap:3px;min-width:0}
.client-vpn-consent b,.client-earning-consent b{font-size:12px}
.client-vpn-consent small,.client-earning-consent small{color:var(--muted);font-size:10px;line-height:1.4}
.client-earning-consent.is-disabled{cursor:default;opacity:.76}
.client-earning-consent.is-disabled .btn{justify-self:start;margin-top:5px;opacity:1}
.client-profile-advanced{
  margin-top:12px;
  padding:0;
  overflow:hidden;
  border-color:rgba(151,76,255,.27);
  background:rgba(2,10,8,.72);
}
.client-profile-advanced>summary{
  display:grid;
  grid-template-columns:36px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  min-height:58px;
  padding:10px 12px;
  list-style:none;
  color:var(--text);
}
.client-profile-advanced>summary::-webkit-details-marker{display:none}
.client-profile-advanced>summary:hover{background:rgba(151,76,255,.055)}
.client-profile-advanced>summary:focus-visible{outline:2px solid var(--flow-green);outline-offset:-2px}
.client-profile-advanced>summary>span:nth-child(2){display:grid;gap:3px;min-width:0}
.client-profile-advanced>summary b{font-size:12px}
.client-profile-advanced>summary small{color:var(--muted);font-size:10px;line-height:1.35}
.client-profile-advanced>summary>em{color:var(--flow-green);font-size:10px;font-style:normal;white-space:nowrap}
.client-profile-advanced>summary>em::after{content:" +";color:var(--muted)}
.client-profile-advanced[open]>summary>em::after{content:" −"}
.client-profile-advanced[open]>summary{border-bottom:1px solid var(--flow-line);background:rgba(151,76,255,.045)}
.client-profile-advanced-icon{width:36px;height:36px;display:grid;place-items:center;padding:8px;border:1px solid rgba(151,76,255,.3);border-radius:6px;color:var(--flow-purple);background:rgba(151,76,255,.07)}
.client-profile-advanced-icon svg{width:100%;height:100%}
.client-profile-advanced-body{display:grid;gap:12px;padding:12px}
.client-profile-advanced .client-profile-layout{margin:0}
.client-node-only{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:11px 12px;border:1px solid var(--flow-line);border-radius:6px;background:rgba(1,8,6,.58)}
.client-node-only>div{min-width:0}
.client-node-only p{margin-top:3px;line-height:1.4}
.client-node-only>.btn{flex:0 0 auto}
.unified-download-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
.shell[data-page="client"] .unified-client-page>.card:has(.unified-download-grid){
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}
.shell[data-page="client"] .unified-client-page>.card:has(.unified-download-grid)>.card-head{margin-bottom:12px}
.unified-manifest-warning{grid-column:1/-1}
.unified-client-card{
  --platform-rgb:54,217,242;
  display:flex;
  flex-direction:column;
  min-height:282px;
  padding:14px;
  overflow:hidden;
  border-color:rgba(var(--platform-rgb),.3);
  background:linear-gradient(180deg,rgba(var(--platform-rgb),.1),transparent 48%),rgba(3,12,9,.97);
  box-shadow:inset 0 1px rgba(255,255,255,.025),0 14px 30px rgba(0,0,0,.2);
}
.unified-client-card:nth-of-type(1){--platform-rgb:54,156,255}
.unified-client-card:nth-of-type(2){--platform-rgb:200,210,215}
.unified-client-card:nth-of-type(3){--platform-rgb:245,190,77}
.unified-client-card:nth-of-type(4){--platform-rgb:91,220,105}
.unified-client-card:nth-of-type(5){--platform-rgb:159,114,255}
.download-page .unified-client-card .download-platform-icon{
  width:58px;
  height:58px;
  color:rgb(var(--platform-rgb));
  border-color:rgba(var(--platform-rgb),.44);
  background:rgba(var(--platform-rgb),.09);
  box-shadow:inset 0 0 18px rgba(var(--platform-rgb),.05),0 10px 24px rgba(0,0,0,.24);
}
.download-page .unified-client-card .download-title h3{font-size:15px}
.unified-client-card .download-tags{margin-top:16px}
.unified-client-card .client-download-button{margin-top:auto;width:100%}
.unified-client-card .checksum{margin-top:9px;overflow-wrap:anywhere;line-height:1.35}
.client-download-next-step{
  display:grid;
  grid-template-columns:30px minmax(0,1fr);
  gap:9px;
  align-items:start;
  margin-top:10px;
  padding:10px;
  border:1px solid rgba(131,237,85,.34);
  border-radius:7px;
  color:#dff6df;
  background:rgba(131,237,85,.075);
}
.client-download-next-step[hidden]{display:none!important}
.client-download-next-step>span:last-child{display:grid;gap:3px;min-width:0}
.client-download-next-step b{font-size:10px;line-height:1.3}
.client-download-next-step small{color:var(--muted);font-size:9px;line-height:1.45;overflow-wrap:anywhere}
.client-download-next-icon{width:30px;height:30px;display:grid;place-items:center;padding:7px;border-radius:50%;color:var(--flow-green);background:rgba(131,237,85,.1)}
.client-download-next-icon svg{width:100%;height:100%}
.client-module-line{display:flex;align-items:center;gap:5px;margin:11px 0;color:var(--muted)}
.client-module-line span{width:23px;height:23px;display:grid;place-items:center;padding:4px;border:1px solid var(--flow-line);border-radius:50%;color:var(--flow-green)}
.client-module-line svg{width:100%;height:100%}
.client-module-line b{margin-left:3px;font-size:9px;font-weight:680}
.client-steps{grid-template-columns:repeat(4,minmax(0,1fr))}

/* Earnings board: real settlement graph, per-node bars, and verified mix. */
.earnings-chart.is-empty>.stat-chart{opacity:.68}
.chart-empty-label{position:absolute;inset:0;display:grid;place-items:center;color:#8aa9aa;font-size:11px;pointer-events:none}
.chart-caption{gap:10px}
.chart-caption b{justify-self:end;margin-left:0;white-space:nowrap}
.earnings-breakdown{display:grid;grid-template-columns:minmax(0,1.22fr) minmax(330px,.78fr);gap:12px}
.node-income-bars{display:grid;gap:12px;margin-top:16px}
.node-income-row{display:grid;grid-template-columns:minmax(120px,.35fr) minmax(140px,1fr) 82px 76px;gap:10px;align-items:center}
.node-income-row>div:first-child{display:grid;min-width:0}
.node-income-row>div:first-child b{font-size:10px;overflow:hidden;text-overflow:ellipsis}
.node-income-row>div:first-child span,.node-income-row small{color:var(--muted);font-size:9px}
.node-income-row strong{text-align:right;font-size:10px}
.node-income-track{height:8px;overflow:hidden;border:1px solid rgba(124,255,104,.18);border-radius:4px;background:rgba(124,255,104,.04)}
.node-income-track i{display:block;height:100%;background:linear-gradient(90deg,#50d85b,#9dff6c);box-shadow:0 0 10px rgba(124,255,104,.35)}
.earning-mix{display:grid;grid-template-columns:150px minmax(0,1fr);gap:16px;align-items:center;margin-top:14px}
.earning-donut{width:142px;aspect-ratio:1;border-radius:50%;display:grid;place-items:center;background:conic-gradient(var(--flow-purple) 0 var(--protected),var(--flow-green) var(--protected) 100%);box-shadow:0 0 20px rgba(151,76,255,.12)}
.earning-donut::before{content:"";grid-area:1/1;width:102px;aspect-ratio:1;border-radius:50%;background:#03100c;border:1px solid var(--flow-line)}
.earning-donut>div{grid-area:1/1;z-index:1;display:grid;text-align:center}
.earning-donut b{font-size:15px}.earning-donut span{color:var(--muted);font-size:9px;text-transform:uppercase}
.earning-mix-legend{display:grid;gap:9px}
.earning-mix-legend>div{display:grid;grid-template-columns:8px minmax(0,1fr) auto auto;gap:7px;align-items:center;font-size:9px}
.earning-mix-legend i{width:7px;height:7px;border-radius:50%}.earning-mix-legend i.green{background:var(--flow-green)}.earning-mix-legend i.violet{background:var(--flow-purple)}
.earning-mix-legend em{color:var(--muted);font-style:normal}.earning-mix-legend p{padding-top:8px;border-top:1px solid var(--flow-line);color:var(--muted);font-size:9px;line-height:1.45}

@media(max-width:1360px){.unified-download-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:1100px){.client-profile-layout,.earnings-breakdown{grid-template-columns:1fr}.unified-download-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){
  .client-hero-state{justify-items:start;width:100%}
  .client-module-picker,.unified-download-grid{grid-template-columns:1fr}
  .native-device-handoff{display:grid;justify-items:start}
  .client-pairing-primary{padding:12px}
  .client-pairing-primary>#createUnifiedClientProfile{width:100%}
  .client-consent-grid{grid-template-columns:minmax(0,1fr);gap:7px}
  .client-vpn-consent,.client-earning-consent{grid-template-columns:14px 28px minmax(0,1fr);align-items:start;gap:6px;padding:8px}
  .client-vpn-consent>input,.client-earning-consent>input{width:14px;height:14px;margin-top:7px}
  .client-vpn-consent>span:nth-of-type(1),.client-earning-consent>span:nth-of-type(1){width:28px;height:28px;padding:6px}
  .client-vpn-consent b,.client-earning-consent b{font-size:11px;line-height:1.15}
  .client-vpn-consent small,.client-earning-consent small{font-size:9px;line-height:1.32}
  .client-earning-consent.is-disabled .btn{min-height:26px;padding:4px 6px;font-size:8px}
  .client-node-only{display:grid;justify-items:start}
  .client-profile-advanced>summary{grid-template-columns:32px minmax(0,1fr);padding:10px}
  .client-profile-advanced>summary>em{grid-column:2}
  .client-profile-advanced-icon{width:32px;height:32px;padding:7px}
  .client-profile-advanced-body{padding:10px}
  .client-profile-form .cols-2{grid-template-columns:1fr}
  .client-steps{grid-template-columns:1fr}
  .node-income-row{grid-template-columns:minmax(110px,.5fr) minmax(100px,1fr) 72px}
  .node-income-row small{grid-column:2/4}
  .earning-mix{grid-template-columns:1fr}.earning-donut{justify-self:center}
}

/* Compact wallet chooser with one branded action per row. */
.login{
  min-height:100svh;
  padding:18px;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(1,5,3,.88),rgba(1,5,3,.24) 34%,rgba(1,5,3,.48) 68%,rgba(1,5,3,.9)),
    url("assets/login-hero.png") center/cover no-repeat fixed,
    #010403;
}
.login-card{
  position:relative;
  z-index:2;
  width:min(420px,calc(100vw - 36px))!important;
  height:auto;
  min-height:0;
  max-height:calc(100svh - 36px);
  grid-template-columns:minmax(0,1fr)!important;
  grid-template-rows:auto minmax(0,1fr);
  gap:0;
  overflow:hidden;
  border:1px solid rgba(124,255,104,.26);
  border-radius:8px;
  background:#020806;
  box-shadow:0 28px 90px rgba(0,0,0,.64),0 0 0 1px rgba(124,255,104,.035);
}
.login-intro,.login-actions{border:0;border-radius:0;box-shadow:none}
.login-intro{
  min-height:130px;
  padding:15px 17px;
  gap:12px;
  background:
    linear-gradient(90deg,rgba(1,7,4,.96),rgba(1,7,4,.6) 60%,rgba(1,7,4,.3)),
    url("assets/login-hero.png") 68% 43%/cover no-repeat;
}
.login-intro::after{height:100%;background:linear-gradient(0deg,rgba(2,11,7,.88),transparent 68%)}
.login-intro .brand{position:relative;z-index:1}
.login-intro .brand-mark{width:38px;height:38px;border:0;background:transparent;box-shadow:none;overflow:visible}
.login-intro .brand-mark img{object-fit:contain;filter:drop-shadow(0 0 12px rgba(124,255,104,.42))}
.login-copy{max-width:410px}
.login-copy h1{font-size:23px;line-height:1.08}
.login-copy .sub{
  max-width:390px;
  margin-top:4px;
  color:#a3aea8;
  font-size:10px;
  line-height:1.35;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.login-modules{display:none}
.login-actions{
  min-height:0;
  max-height:none;
  overflow:auto;
  padding:13px 15px 15px;
  gap:9px;
  align-content:start;
  background:rgba(2,9,7,.985);
}
.login-toolbar{min-height:30px}
.login-toolbar .seg button{min-height:27px;min-width:34px;font-size:10px}
.auth-status{font-size:10px}
.auth-status>span:last-child{display:none}
.login-actions .auth-section{padding:11px;border-color:rgba(143,178,158,.2);background:rgba(5,15,11,.88)}
.wallet-section-head{margin-bottom:9px;gap:8px}
.wallet-section-head h2{font-size:19px;line-height:1.1}
.wallet-section-head .sub{
  max-width:330px;
  margin-top:3px;
  font-size:10px;
  line-height:1.35;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.wallet-section-head .badge{font-size:8px}
.wallet-choice-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:6px}
.wallet-choice{
  position:relative;
  display:grid;
  min-width:0;
  height:47px;
  grid-template-columns:35px minmax(0,1fr) auto;
  grid-template-rows:1fr;
  gap:10px;
  justify-items:start;
  align-items:center;
  padding:5px 10px 5px 8px;
  overflow:hidden;
  border:1px solid rgba(199,223,208,.15);
  border-radius:6px;
  background:linear-gradient(90deg,rgba(13,27,20,.97),rgba(4,13,9,.97));
  color:var(--text);
  cursor:pointer;
  transition:border-color .18s,background-color .18s,transform .18s;
}
.wallet-choice::before{
  content:"";
  position:absolute;
  inset:6px auto 6px 0;
  width:2px;
  background:#7cff68;
  opacity:.45;
}
.wallet-choice:hover,.wallet-choice:focus-visible{
  border-color:rgba(124,255,104,.58);
  background:linear-gradient(90deg,rgba(21,42,31,.98),rgba(5,18,12,.98));
  transform:translateX(2px);
  outline:0;
}
.wallet-choice.detected{border-color:rgba(124,255,104,.42);box-shadow:inset 0 0 24px rgba(124,255,104,.055)}
.wallet-choice.ton{border-color:rgba(0,136,204,.42)}
.wallet-choice.ton::before{background:#08c}
.wallet-choice.tangem{border-color:rgba(203,210,207,.25)}
.wallet-choice.tangem::before{background:#f1f1f1}
.wallet-choice.is-busy{opacity:1}
.wallet-choice.is-busy::after{content:attr(data-busy-label);position:absolute;inset:0;z-index:4;display:grid;place-items:center;padding:9px;background:rgba(2,10,7,.96);color:#eff8f1;font-size:10px;font-weight:760;text-align:center}
.wallet-brand-icon{display:grid;width:35px;height:35px;place-items:center;padding:5px;border:1px solid rgba(211,232,218,.16);border-radius:7px;background:rgba(255,255,255,.045);box-shadow:0 7px 16px rgba(0,0,0,.26)}
.wallet-brand-icon svg{display:block;width:100%;height:100%}
.wallet-brand-tonkeeper{background:rgba(0,136,204,.12);border-color:rgba(0,136,204,.32)}
.wallet-brand-tangem{background:#0b0c0c;border-color:rgba(255,255,255,.18)}
.wallet-brand-file{background:rgba(124,255,104,.06);border-color:rgba(124,255,104,.22)}
.wallet-choice-name{max-width:100%;overflow:hidden;color:#eef5f0;font-size:11px;font-weight:760;text-overflow:ellipsis;white-space:nowrap}
.wallet-choice-action{justify-self:end;color:#7cff68;font-size:9px;font-weight:680;white-space:nowrap}
.wallet-choice.ton .wallet-choice-action{color:#4dc9ff}
.wallet-choice.tangem .wallet-choice-action{color:#dbe2de}
.login-actions [data-wallet-actions]{gap:6px}
.login-actions .wallet-login-action{
  position:relative;
  min-height:52px;
  padding:6px 9px;
  grid-template-columns:38px minmax(0,1fr) auto;
  gap:10px;
  overflow:hidden;
  border-radius:6px;
  background:linear-gradient(90deg,rgba(13,27,20,.97),rgba(4,13,9,.97));
}
.login-actions .wallet-login-action::before{
  content:"";
  position:absolute;
  inset:7px auto 7px 0;
  width:2px;
  background:var(--flow-green);
  opacity:.42;
}
.login-actions .wallet-login-action:hover,.login-actions .wallet-login-action:focus-visible{
  border-color:rgba(124,255,104,.58);
  background:linear-gradient(90deg,rgba(21,42,31,.98),rgba(5,18,12,.98));
  outline:0;
}
.login-actions .wallet-login-action.muted{opacity:.72}
.login-actions .wallet-login-action .injected-wallet-logo{width:38px;height:38px;border-radius:7px}
.login-actions .wallet-login-action .injected-wallet-logo>.wallet-brand-icon{width:100%;height:100%;padding:5px;border:0;background:transparent;box-shadow:none}
.login-actions .wallet-login-action .injected-wallet-copy b{font-size:11px}
.login-actions #authTechnical{padding:9px 11px}
.login-actions #authTechnical>summary{color:#c2ccc6;font-size:10px;list-style:none}
.login-actions #authTechnical>summary::-webkit-details-marker{display:none}
.wallet-detection{display:flex;min-width:0;align-items:center;gap:7px;margin-top:9px;color:var(--muted);font-size:9px;line-height:1.3}
.wallet-detection span:not(.status-led):not(.wallet-detection-separator){min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.status-led{width:7px;height:7px;flex:0 0 auto;border-radius:50%;background:#7cff47;box-shadow:0 0 10px rgba(124,255,71,.72)}
.wallet-detection-separator{width:1px;height:13px;flex:0 0 auto;background:var(--line)}
.login-actions .authkit-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:5px;margin:8px 0 0}
.login-actions .authkit-item{min-height:28px;padding:5px 6px;grid-template-columns:6px minmax(0,1fr);align-items:center;align-content:center;gap:5px}
.login-actions .authkit-item>span{grid-row:auto;width:6px;height:6px}
.login-actions .authkit-item b{font-size:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.login-actions #authTechnical[open] .authkit-item b{overflow:visible;text-overflow:clip;white-space:normal;overflow-wrap:anywhere}
.login-actions .authkit-item p{display:none}
.file-auth{padding:0!important;overflow:hidden}
.file-auth>summary{display:grid;grid-template-columns:38px minmax(0,1fr) 18px;gap:10px;align-items:center;padding:8px 11px;cursor:pointer;list-style:none}
.file-auth>summary::-webkit-details-marker{display:none}
.file-auth>summary .wallet-brand-icon{width:36px;height:36px;border-radius:7px}
.file-auth>summary>span:nth-child(2){display:grid;gap:2px;min-width:0}
.file-auth>summary b{font-size:11px}
.file-auth>summary small{color:var(--muted);font-size:9px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.file-auth-caret{width:8px;height:8px;border-right:1px solid var(--muted);border-bottom:1px solid var(--muted);transform:rotate(45deg);transition:transform .18s}
.file-auth[open] .file-auth-caret{transform:rotate(225deg)}
.file-auth-body{padding:4px 11px 11px;border-top:1px solid var(--line)}
.sidebar-brand .brand-mark,.dashboard-hero-copy>.brand .brand-mark{background:rgba(124,255,104,.04)!important}
.sidebar-brand .brand-mark img,.dashboard-hero-copy>.brand .brand-mark img{visibility:visible!important;object-fit:contain;filter:drop-shadow(0 0 9px rgba(124,255,104,.34))}

@media(min-width:1200px){
  .login-intro{
    position:fixed;
    z-index:1;
    top:50%;
    left:max(44px,calc(50% - 620px));
    width:330px;
    min-height:0;
    padding:0;
    justify-content:center;
    transform:translateY(-50%);
    background:none;
    overflow:visible;
  }
  .login-intro::after{display:none}
  .login-intro .brand{margin-bottom:28px}
  .login-copy h1{font-size:34px}
  .login-copy .sub{font-size:12px;line-height:1.5;-webkit-line-clamp:4}
}

@media(max-width:620px){
  .flow-hero{min-height:196px}
  .dashboard-hero{min-height:0;padding:15px}
  .dashboard-hero-copy h1{font-size:26px}
  .dashboard-hero .identity-grid .metric{min-height:47px;padding:8px 10px}
  .overview-stats{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .overview-stats .stat{min-height:130px;padding:11px}
  .overview-stats .stat-copy{max-width:88%}
  .overview-stats .stat .v{font-size:22px;overflow-wrap:anywhere}
  .overview-stats .stat .sub{font-size:9px}
  .overview-stats .stat-chart{width:64%;height:58px}
  .earnings-chart{min-height:250px;padding-left:46px}
  .earnings-chart>.stat-chart{left:44px;width:calc(100% - 56px);height:180px}
  .chart-caption{left:46px;grid-template-columns:repeat(3,minmax(0,1fr));font-size:8px}
  .chart-caption b{grid-column:1/-1;justify-self:end;margin-top:2px}
  .login{padding:0;align-items:start;background-attachment:scroll}
  .login-card{width:100%;max-width:none;min-height:100svh;max-height:none;border-width:0;border-radius:0;box-shadow:none;overflow:visible}
  .login-intro{min-height:118px;padding:13px 14px}
  .login-copy h1{font-size:21px}
  .login-actions{overflow:visible;padding:11px 13px 17px}
  .wallet-section-head{display:flex}
  .wallet-section-head .badge{justify-self:auto}
  .wallet-choice{height:auto;min-height:46px}
  .wallet-choice-name{overflow-wrap:anywhere;text-overflow:clip;white-space:normal}
  .wallet-choice-action{font-size:8px}
  .login-actions .wallet-login-action{grid-template-columns:38px minmax(0,1fr) auto}
  .login-actions .wallet-login-action .injected-wallet-copy b,
  .login-actions .wallet-login-action .injected-wallet-copy small{overflow-wrap:anywhere;text-overflow:clip;white-space:normal}
  .wallet-detection{flex-wrap:wrap}
  .wallet-detection-separator{display:none}
  .file-auth>summary small{overflow-wrap:anywhere;text-overflow:clip;white-space:normal}
}

/* The reference UI is dark-first, but the user-selectable light theme must remain legible. */
:root[data-theme="light"] body,
:root[data-theme="light"] .shell,
:root[data-theme="light"] .shell>main{
  background:var(--bg);
  color:var(--text);
}
:root[data-theme="light"] .shell>main{
  background-image:radial-gradient(circle at 92% 5%,rgba(117,64,174,.055),transparent 26%);
}
:root[data-theme="light"] .sidebar,
:root[data-theme="light"] .topbar{
  background:rgba(248,252,249,.97);
  border-color:var(--line);
}
:root[data-theme="light"] .card,
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .health-card,
:root[data-theme="light"] .account-panel,
:root[data-theme="light"] .module-row,
:root[data-theme="light"] .auth-section,
:root[data-theme="light"] .authkit-item,
:root[data-theme="light"] .wallet-card,
:root[data-theme="light"] .wc-project-box,
:root[data-theme="light"] details{
  background:var(--panel);
  color:var(--text);
  border-color:var(--line);
}
:root[data-theme="light"] .tree-root:hover,
:root[data-theme="light"] .tree-root.active,
:root[data-theme="light"] .tree-child.active,
:root[data-theme="light"] .section-tabs button.active{
  color:#17351f;
  background:rgba(51,141,44,.1)!important;
}
:root[data-theme="light"] .tree-root-icon,
:root[data-theme="light"] .topbar .seg,
:root[data-theme="light"] .topbar .icon-only,
:root[data-theme="light"] .section-tabs,
:root[data-theme="light"] .table-wrap,
:root[data-theme="light"] .readiness-item,
:root[data-theme="light"] .health-list>div{
  background:rgba(241,247,243,.9);
  color:var(--text);
  border-color:var(--line);
}
:root[data-theme="light"] input,
:root[data-theme="light"] select,
:root[data-theme="light"] textarea,
:root[data-theme="light"] .btn:not(.primary){
  background:rgba(255,255,255,.92);
  color:var(--text);
  border-color:var(--line-strong);
}
:root[data-theme="light"] th{background:rgba(232,241,235,.94);color:#4b6255}
:root[data-theme="light"] td{color:var(--text);border-color:var(--line)}
:root[data-theme="light"] .overview-stats .stat .v,
:root[data-theme="light"] .wallet-choice-name,
:root[data-theme="light"] .login-actions .wallet-login-action,
:root[data-theme="light"] .login-actions .wallet-login-action .injected-wallet-copy b{
  color:var(--text);
}
:root[data-theme="light"] .overview-stats .stat,
:root[data-theme="light"] .wallet-choice,
:root[data-theme="light"] .login-actions .wallet-login-action,
:root[data-theme="light"] .payout-wallet-card,
:root[data-theme="light"] .connection-steps>div,
:root[data-theme="light"] .exit-node-grid article{
  background:rgba(248,252,249,.94);
  border-color:var(--line);
}
/* .public-key-row единственная из карточек ключей осталась без светлого перекрытия: её
   тёмная подложка rgba(1,8,6,.62) в светлой теме композитится в ~rgb(95,101,98), и по ней
   шёл тёмный var(--text) (3.01:1) и золотая иконка var(--warn) (1.35:1). Затемнение --warn
   ради AA в .alert.warn/.badge.warn сделало бы эту иконку ещё хуже, поэтому поверхность
   переведена в светлую вместе с иконками: текст 17.3:1, --warn 5.41:1, badge.warn 5.10:1,
   зелёная и фиолетовая иконки 4.07:1 и 6.54:1 (порог для иконок 3:1). */
:root[data-theme="light"] .public-key-row{
  background:rgba(248,252,249,.94);
  border-color:var(--line);
}
:root[data-theme="light"] .key-row-icon{color:var(--accent);background:rgba(51,141,44,.06)}
:root[data-theme="light"] .public-key-row.purple .key-row-icon{color:var(--violet)}
:root[data-theme="light"] .public-key-row.gold .key-row-icon{color:var(--warn)}
:root[data-theme="light"] .login-intro,
:root[data-theme="light"] .login-intro .login-copy h1{color:#f4f7f3}
:root[data-theme="light"] .login-intro .sub,
:root[data-theme="light"] .login-intro .brand-title p{color:#aebdb4}
:root[data-theme="light"] .login-actions #authTechnical>summary{color:#40564a}

/* Final HD cabinet contract: direct artwork, a fully expanded tree, and a compact earnings board. */
.sidebar{
  height:100svh;
  min-height:0;
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
}
.tree-group:not(.active) .tree-children{display:grid}
.tree-group.active .tree-children{display:grid}
.tree-group:not(.active) .tree-caret{transform:rotate(90deg)}
.sidebar .spacer{min-height:8px;flex:1 1 auto}
.account-panel{
  position:sticky;
  z-index:3;
  bottom:0;
  flex:0 0 auto;
  margin-top:auto;
  box-shadow:0 -10px 24px rgba(1,8,6,.72);
}
.topbar .icon-only .ui-icon{width:17px;height:17px}

.dashboard-hero{background:#030807}
.dashboard-hero::after{
  background-image:url("assets/dashboard-hero.png");
  background-position:68% center;
  background-size:cover;
  background-repeat:no-repeat;
}
@media(min-width:961px){
  .dashboard-hero::before{
    background:linear-gradient(90deg,#030807 0%,#030807 34%,rgba(3,8,7,.92) 44%,rgba(3,8,7,.55) 57%,rgba(3,8,7,.12) 72%,rgba(3,8,7,.02));
  }
  .dashboard-hero::after{
    inset:0;
    background-position:right 21%;
    background-size:100% auto;
  }
}
.dashboard-reference-stats .stat::after{display:none!important}
.product-card::before{
  background-image:url("assets/dashboard-hero.png");
  background-size:cover;
  background-repeat:no-repeat;
  opacity:1;
  filter:saturate(1.06) contrast(1.04);
}
.product-card.domains::before{background-image:url("assets/domain-shield.png");background-position:center}
.product-card.vpn::before{background-image:url("assets/vpn-shield.png");background-position:center;transform:scaleX(-1)}
.product-card.earning::before{background-image:url("assets/earning-hero.png");background-position:center}
.product-card::after,
.product-card.domains::after,
.product-card.vpn::after,
.product-card.earning::after{
  background:
    linear-gradient(90deg,rgba(2,8,6,.88) 0%,rgba(2,8,6,.66) 44%,rgba(2,8,6,.16) 73%,rgba(2,8,6,.02) 100%),
    linear-gradient(0deg,rgba(2,8,6,.64) 0%,rgba(2,8,6,.14) 40%,transparent 68%);
}

.earnings-flow-hero{
  min-height:132px;
  padding:17px 20px;
  align-items:center;
  --flow-image:url("assets/earnings-network.png");
}
.earnings-flow-hero::before{background-position:72% center;opacity:.9}
.earnings-flow-hero::after{
  background:linear-gradient(90deg,#030907 0%,rgba(3,9,7,.94) 48%,rgba(3,9,7,.38) 78%,rgba(3,9,7,.1));
}
.earnings-flow-hero h1{font-size:24px}
.earnings-flow-hero p{max-width:720px;margin-top:5px;font-size:11px;line-height:1.45}
.earnings-kpis{grid-template-columns:repeat(3,minmax(0,1fr))}
.earnings-kpis .earnings-kpi{min-height:142px;padding:14px 15px}
.earnings-kpis .stat-icon{position:relative;z-index:2;width:23px;height:23px;margin-bottom:8px;color:var(--flow-cyan)}
.earnings-kpis .stat-icon.traffic{color:var(--flow-purple)}
.earnings-kpis .stat-icon.nodes{color:var(--flow-green)}
.earnings-kpis .stat-copy{position:relative;z-index:2;max-width:72%}
.earnings-layout{grid-template-columns:minmax(0,1.55fr) minmax(290px,.65fr);gap:12px}
.earnings-layout>*{min-width:0}
.earnings-chart-card,.earnings-economy-panel{min-width:0}
.earnings-chart-head{align-items:flex-start;gap:12px}
.earnings-chart-head>div:first-child{min-width:180px}
.earnings-chart-actions{display:flex;min-width:0;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
.earnings-period-control{flex:0 0 auto;padding:3px;background:rgba(1,9,8,.82)}
.earnings-period-control button{min-width:62px;min-height:28px;padding:5px 9px;font-size:10px}
.earnings-period-control button.active{color:#061108;background:var(--flow-green);border-color:transparent}
.earnings-chart{min-height:350px;margin-top:12px}
.earnings-chart>.stat-chart{height:270px}
.earnings-balance-callout{
  display:grid;
  gap:6px;
  margin-top:14px;
  padding:15px;
  border:1px solid rgba(54,217,242,.34);
  border-radius:6px;
  background:linear-gradient(135deg,rgba(54,217,242,.11),rgba(124,255,104,.035)),rgba(1,10,9,.82);
}
.earnings-balance-callout span{color:#8ba39a;font-size:10px;text-transform:uppercase}
.earnings-balance-callout strong{color:#f3faf6;font-size:27px;line-height:1.05;overflow-wrap:anywhere}
.earnings-balance-callout small{color:var(--flow-cyan);font-size:12px}
.earnings-economy-panel .health-list>div{min-width:0}
.earnings-economy-panel .health-list b{overflow-wrap:anywhere;text-align:right}
.chart-caption span{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

@media(max-width:1100px){
  .earnings-layout{grid-template-columns:1fr}
  .earnings-economy-panel .health-list{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:960px){
  .dashboard-hero::after{background-image:url("assets/dashboard-hero.png");background-position:64% center}
  .account-panel{position:relative;bottom:auto;box-shadow:none}
}
@media(max-width:620px){
  .content,#view,.earnings-layout,.earnings-layout>*{width:100%;max-width:100%;min-width:0}
  .earnings-flow-hero{min-height:188px;padding:15px;align-content:end;align-items:flex-end}
  .earnings-flow-hero>.btn{width:100%}
  .earnings-kpis{grid-template-columns:1fr}
  .earnings-kpis .earnings-kpi{min-height:126px}
  .earnings-kpis .stat-copy{max-width:78%}
  .earnings-chart-head{display:grid}
  .earnings-chart-actions{width:100%;justify-content:space-between}
  .earnings-period-control{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));width:100%}
  .earnings-period-control button{min-width:0;padding-inline:6px}
  .earnings-chart-actions>.badge{justify-self:end}
  .earnings-chart{min-height:246px;padding-left:42px}
  .earnings-chart>.stat-chart{left:40px;width:calc(100% - 52px);height:176px}
  .chart-scale{font-size:8px}
  .chart-caption{left:43px;right:9px;gap:6px}
  .earnings-economy-panel .health-list{grid-template-columns:1fr}
  .earnings-breakdown{grid-template-columns:1fr}
  .node-income-row{grid-template-columns:minmax(94px,.56fr) minmax(76px,1fr) 66px;gap:7px}
  .node-income-row small{grid-column:2/4}
  .product-card .module-head>div{max-width:76%}
}

/* Reference-precise dashboard and earnings polish. */
:is(.shell[data-page="overview"],.shell[data-page="earnings"]){
  --cabinet-glass-green:rgba(124,255,104,.34);
  --cabinet-glass-purple:rgba(152,76,255,.34);
  --cabinet-glass-cyan:rgba(54,217,242,.34);
  --cabinet-glass-line:rgba(174,204,190,.23);
}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) #view,
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) #view>*{min-width:0;max-width:100%}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) h1,
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) h2,
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) p{overflow-wrap:anywhere}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) .tree-nav{gap:9px}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) .tree-root{
  min-height:34px;
  padding:5px 7px;
}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) .tree-root-icon{width:21px;height:21px}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) .tree-children{gap:2px;padding-top:4px;padding-bottom:3px}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) .tree-leaf{min-height:32px}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) .tree-group.active .tree-root{
  background:linear-gradient(90deg,rgba(124,255,104,.105),rgba(54,217,242,.025))!important;
  box-shadow:inset 2px 0 0 rgba(124,255,104,.62),inset 0 0 18px rgba(124,255,104,.035);
}
:root:not([data-theme="light"]) :is(.shell[data-page="overview"],.shell[data-page="earnings"]) .tree-group.active .tree-label{color:#dce9e0}
:is(.shell[data-page="overview"],.shell[data-page="earnings"]) .account-panel{
  border-color:rgba(124,255,104,.22);
  backdrop-filter:blur(18px);
}
:root:not([data-theme="light"]) :is(.shell[data-page="overview"],.shell[data-page="earnings"]) .sidebar{
  background:linear-gradient(180deg,rgba(2,11,8,.99),rgba(1,7,5,.99));
  box-shadow:inset -1px 0 rgba(54,217,242,.035);
}
:root:not([data-theme="light"]) :is(.shell[data-page="overview"],.shell[data-page="earnings"]) .topbar{
  background:rgba(2,9,7,.9);
  box-shadow:0 12px 34px rgba(0,0,0,.16);
}
:root:not([data-theme="light"]) :is(.shell[data-page="overview"],.shell[data-page="earnings"]) .account-panel{
  background:linear-gradient(145deg,rgba(7,20,15,.96),rgba(2,10,7,.96));
  box-shadow:0 -12px 28px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.025);
}

.shell[data-page="overview"] .dashboard-hero{
  min-height:282px;
  padding:24px 25px;
  border-color:rgba(170,198,185,.3);
  box-shadow:inset 0 1px rgba(255,255,255,.035),inset 0 -54px 100px rgba(0,0,0,.2),0 22px 54px rgba(0,0,0,.29);
}
.shell[data-page="overview"] .dashboard-hero::after{
  filter:saturate(.94) contrast(1.08) brightness(.94);
}
.shell[data-page="overview"] .dashboard-hero-copy{align-self:center}
.shell[data-page="overview"] .dashboard-hero-copy h1{font-size:33px;line-height:1.06}
.shell[data-page="overview"] .dashboard-hero-copy>.sub{max-width:590px;line-height:1.52}
.shell[data-page="overview"] .dashboard-hero .identity-grid{
  width:min(100%,490px);
  justify-self:end;
  border-color:rgba(174,204,190,.3);
  backdrop-filter:blur(18px) saturate(1.08);
  box-shadow:inset 0 1px rgba(255,255,255,.035),0 16px 34px rgba(0,0,0,.3);
}
:root:not([data-theme="light"]) .shell[data-page="overview"] .dashboard-hero .identity-grid{
  background:linear-gradient(110deg,rgba(3,13,10,.91),rgba(6,11,10,.78));
}
.shell[data-page="overview"] .dashboard-reference-stats{gap:12px}
.shell[data-page="overview"] .dashboard-reference-stats .stat{
  min-height:154px;
  border-color:var(--cabinet-glass-line);
  box-shadow:inset 0 1px rgba(255,255,255,.028),0 16px 34px rgba(0,0,0,.21);
}
:root:not([data-theme="light"]) .shell[data-page="overview"] .dashboard-reference-stats .stat{
  background:linear-gradient(145deg,rgba(8,20,16,.97),rgba(3,11,9,.94));
}
.shell[data-page="overview"] .dashboard-reference-stats .balance-stat{border-color:var(--cabinet-glass-green)}
.shell[data-page="overview"] .dashboard-reference-stats .nodes-stat{border-color:rgba(124,255,104,.27)}
.shell[data-page="overview"] .dashboard-reference-stats .economy-stat{border-color:var(--cabinet-glass-cyan)}
.shell[data-page="overview"] .dashboard-reference-stats .traffic-stat{border-color:var(--cabinet-glass-purple)}
.shell[data-page="overview"] .dashboard-reference-stats .stat-copy{max-width:74%}
.shell[data-page="overview"] .dashboard-reference-stats .stat-chart{width:62%;height:78px;opacity:.98}
.shell[data-page="overview"] .dashboard-reference-stats .economy-stat .stat-chart{color:var(--flow-cyan)}
.shell[data-page="overview"] .dashboard-reference-stats .traffic-stat .stat-chart{color:var(--flow-purple)}
.shell[data-page="overview"] .dashboard-reference-stats .stat-chart .chart-line{stroke-width:2.15}
.shell[data-page="overview"] .dashboard-reference-stats .stat-chart .chart-area{opacity:.15}
.shell[data-page="overview"] .module-section>.card-head{margin-bottom:12px}
.shell[data-page="overview"] .product-grid{gap:12px}
.shell[data-page="overview"] .product-card{
  min-height:238px;
  border-color:var(--cabinet-glass-line);
  box-shadow:inset 0 1px rgba(255,255,255,.03),0 19px 40px rgba(0,0,0,.25);
}
.shell[data-page="overview"] .product-card.domains{border-color:var(--cabinet-glass-cyan)}
.shell[data-page="overview"] .product-card.vpn{border-color:var(--cabinet-glass-purple)}
.shell[data-page="overview"] .product-card.earning{border-color:var(--cabinet-glass-green)}
.shell[data-page="overview"] .product-card .module-head h2{font-size:19px;line-height:1.15}
.shell[data-page="overview"] .product-card .module-head .sub{max-width:270px;color:rgba(235,243,238,.86)}

.shell[data-page="earnings"] .earnings-flow-hero{
  min-height:142px;
  border-color:rgba(174,204,190,.29);
  box-shadow:inset 0 1px rgba(255,255,255,.035),inset 0 -42px 90px rgba(0,0,0,.2),0 20px 48px rgba(0,0,0,.25);
}
.shell[data-page="earnings"] .earnings-flow-hero::before{filter:saturate(.9) contrast(1.08) brightness(.85)}
.shell[data-page="earnings"] .earnings-kpis{gap:12px}
.shell[data-page="earnings"] .earnings-kpis .earnings-kpi{
  min-height:148px;
  border-color:var(--cabinet-glass-line);
  box-shadow:inset 0 1px rgba(255,255,255,.028),0 16px 34px rgba(0,0,0,.2);
}
:root:not([data-theme="light"]) .shell[data-page="earnings"] .earnings-kpis .earnings-kpi{
  background:linear-gradient(145deg,rgba(7,20,16,.97),rgba(3,12,10,.94));
}
.shell[data-page="earnings"] .earnings-kpis .earnings-kpi:nth-child(1){border-color:var(--cabinet-glass-cyan)}
.shell[data-page="earnings"] .earnings-kpis .earnings-kpi:nth-child(2){border-color:var(--cabinet-glass-purple)}
.shell[data-page="earnings"] .earnings-kpis .earnings-kpi:nth-child(3){border-color:var(--cabinet-glass-green)}
.shell[data-page="earnings"] .earnings-kpis .earnings-kpi:nth-child(1) .stat-chart{color:var(--flow-cyan)}
.shell[data-page="earnings"] .earnings-kpis .earnings-kpi:nth-child(2) .stat-chart{color:var(--flow-purple)}
.shell[data-page="earnings"] .earnings-kpis .earnings-kpi:nth-child(3) .stat-chart{color:var(--flow-green)}
.shell[data-page="earnings"] .earnings-kpis .stat-chart{width:58%;height:74px;opacity:.98}
.shell[data-page="earnings"] .earnings-kpis .stat-chart .chart-line{stroke-width:2.1}
.shell[data-page="earnings"] .earnings-kpis .stat-chart .chart-area{opacity:.14}
.shell[data-page="earnings"] .earnings-layout{grid-template-columns:minmax(0,1.62fr) minmax(294px,.68fr)}
.shell[data-page="earnings"] .earnings-chart-card{
  border-color:var(--cabinet-glass-cyan);
  box-shadow:inset 0 1px rgba(255,255,255,.028),0 20px 46px rgba(0,0,0,.24);
}
:root:not([data-theme="light"]) .shell[data-page="earnings"] .earnings-chart-card{
  background:linear-gradient(145deg,rgba(4,18,17,.97),rgba(3,12,10,.96));
}
.shell[data-page="earnings"] .earnings-chart{min-height:382px}
.shell[data-page="earnings"] .earnings-chart>.stat-chart{
  height:298px;
  color:var(--flow-cyan);
  filter:drop-shadow(0 0 10px rgba(54,217,242,.28));
}
.shell[data-page="earnings"] .earnings-chart>.stat-chart .chart-line{stroke-width:2.2}
.shell[data-page="earnings"] .earnings-chart>.stat-chart .chart-area{opacity:.18}
.shell[data-page="earnings"] .earnings-chart.is-empty>.stat-chart{opacity:1}
.shell[data-page="earnings"] .earnings-chart.is-empty>.stat-chart .chart-area{opacity:0}
.shell[data-page="earnings"] .earnings-chart.is-empty>.stat-chart .chart-line{stroke-width:2.2}
.shell[data-page="earnings"] .chart-empty-label{color:#9bbfc0;font-size:11px;text-shadow:0 1px 10px rgba(0,0,0,.72)}
.shell[data-page="earnings"] .earnings-economy-panel{
  border-color:rgba(124,255,104,.26);
  box-shadow:inset 0 1px rgba(255,255,255,.028),0 20px 46px rgba(0,0,0,.22);
}
:root:not([data-theme="light"]) .shell[data-page="earnings"] .earnings-economy-panel{
  background:linear-gradient(155deg,rgba(7,20,15,.97),rgba(3,11,9,.96));
}
.shell[data-page="earnings"] .earnings-balance-callout{border-color:var(--cabinet-glass-cyan)}
.shell[data-page="earnings"] .earnings-breakdown>.card:first-child{border-color:rgba(54,217,242,.24)}
.shell[data-page="earnings"] .earnings-breakdown>.card:last-child{border-color:rgba(152,76,255,.24)}

@media(min-width:961px){
  .shell[data-page="overview"] .dashboard-hero::after{background-position:right 44%}
  .shell[data-page="earnings"] .earnings-flow-hero::before{background-position:72% 72%}
}
@media(max-width:1100px){
  .shell[data-page="earnings"] .earnings-layout{grid-template-columns:1fr}
}
@media(max-width:960px){
  .shell[data-page="overview"] .dashboard-hero{min-height:0}
  .shell[data-page="overview"] .dashboard-hero-copy h1{font-size:30px}
  .shell[data-page="overview"] .dashboard-hero .identity-grid{width:100%;justify-self:stretch}
}
@media(max-width:620px){
  :is(.shell[data-page="overview"],.shell[data-page="earnings"]) #view,
  :is(.shell[data-page="overview"],.shell[data-page="earnings"]) #view>*{width:100%;max-width:100%;min-width:0}
  :is(.shell[data-page="overview"],.shell[data-page="earnings"]) .content{padding-inline:14px}
  .shell[data-page="overview"] .dashboard-hero{padding:15px;box-shadow:inset 0 1px rgba(255,255,255,.03),0 14px 34px rgba(0,0,0,.22)}
  .shell[data-page="overview"] .dashboard-hero-copy h1{font-size:26px}
  .shell[data-page="overview"] .dashboard-reference-stats{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .shell[data-page="overview"] .dashboard-reference-stats .stat{min-height:132px;padding:11px}
  .shell[data-page="overview"] .dashboard-reference-stats .stat-copy{max-width:88%}
  .shell[data-page="overview"] .dashboard-reference-stats .stat-chart{width:64%;height:58px}
  .shell[data-page="overview"] .product-card{min-height:216px}
  .shell[data-page="earnings"] .earnings-flow-hero{min-height:188px}
  .shell[data-page="earnings"] .earnings-kpis{grid-template-columns:1fr;gap:8px}
  .shell[data-page="earnings"] .earnings-kpis .earnings-kpi{min-height:128px}
  .shell[data-page="earnings"] .earnings-kpis .stat-chart{height:62px}
  .shell[data-page="earnings"] .earnings-chart-card{padding:12px}
  .shell[data-page="earnings"] .earnings-chart{min-height:264px;padding-left:42px}
  .shell[data-page="earnings"] .earnings-chart>.stat-chart{left:40px;width:calc(100% - 52px);height:188px}
  .shell[data-page="earnings"] .earnings-chart-actions{gap:6px}
}

/* Login and modal dark surfaces must not inherit a persisted light theme. */
.login,
:root[data-theme="light"] .login{
  --panel:rgba(5,13,11,.96);
  --panel2:rgba(9,22,18,.98);
  --panel3:rgba(16,21,25,.96);
  --text:#f4f8f5;
  --muted:#a8b8af;
  --faint:#788a80;
  --line:rgba(181,221,194,.18);
  --line-strong:rgba(186,243,204,.3);
  --accent:#8ce85b;
  --accent-strong:#50c93b;
  --accent2:#24c7cf;
  --violet:#c98cff;
  --danger:#ff7b80;
  --ok:#8ce85b;
  --warn:#f0c94d;
  color-scheme:dark;
  color:var(--text);
}
:root[data-theme="light"] .login .login-card,
:root[data-theme="light"] .login .login-actions,
:root[data-theme="light"] .login .auth-section,
:root[data-theme="light"] .login details,
:root[data-theme="light"] .login .authkit-item{
  color:var(--text);
  border-color:var(--line);
}
:root[data-theme="light"] .login .wallet-choice,
:root[data-theme="light"] .login .login-actions .wallet-login-action{
  color:var(--text);
  border-color:rgba(199,223,208,.17);
  background:linear-gradient(90deg,rgba(13,27,20,.97),rgba(4,13,9,.97));
}
:root[data-theme="light"] .login .btn:not(.primary),
:root[data-theme="light"] .login input,
:root[data-theme="light"] .login select,
:root[data-theme="light"] .login textarea{
  color:var(--text);
  border-color:var(--line-strong);
  background:rgba(7,16,13,.94);
}
:root[data-theme="light"] .login .login-actions #authTechnical>summary{color:#c2ccc6}

.modal-card,
:root[data-theme="light"] .modal-card{
  --modal-bg:#06100d;
  --panel:rgba(8,20,16,.98);
  --panel2:rgba(12,27,22,.98);
  --text:#f4f8f5;
  --muted:#a8b8af;
  --faint:#788a80;
  --line:rgba(181,221,194,.2);
  --line-strong:rgba(186,243,204,.32);
  --accent:#8ce85b;
  --accent-strong:#50c93b;
  --accent2:#24c7cf;
  --violet:#c98cff;
  --danger:#ff7b80;
  --ok:#8ce85b;
  --warn:#f0c94d;
  color-scheme:dark;
  color:var(--text);
  border-color:var(--line-strong);
  background:var(--modal-bg);
  box-shadow:0 26px 72px rgba(0,0,0,.66),0 0 0 1px rgba(140,232,91,.035);
}
.modal-card h1,
.modal-card h2,
.modal-card h3,
.modal-card strong,
.modal-card b,
.modal-card label{color:var(--text)}
.modal-card p{color:#d1ddd6}
.modal-card .sub,
.modal-card .muted,
.modal-card small,
.modal-card .tangem-state p{color:var(--muted)}
.modal-card .eyebrow{color:#9bf37a}
:root .modal-card .btn:not(.primary){
  color:#edf5f0;
  border-color:rgba(181,221,194,.27);
  background:rgba(12,28,22,.96);
  box-shadow:none;
}
:root .modal-card .btn:not(.primary):hover{
  color:#fff;
  border-color:rgba(140,232,91,.62);
  background:rgba(140,232,91,.12);
}
:root .modal-card .btn.danger{color:#ff969a}
:root .modal-card input,
:root .modal-card select,
:root .modal-card textarea{
  color:var(--text);
  border-color:var(--line-strong);
  background:#030b08;
}
:root .modal-card input::placeholder,
:root .modal-card textarea::placeholder{color:var(--faint)}

/* Cabinet reference fidelity: HD imagery, icon-first wallet entry, and factual settlement plots. */
.sidebar-brand .brand-mark{
  width:43px;
  height:43px;
  border:0;
  background:transparent!important;
  box-shadow:none;
}
.sidebar-brand .brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 0 12px rgba(124,255,104,.38));
}
.sidebar-brand .brand-title h2{font-size:15px}
.dashboard-hero::after{
  background-image:url("assets/dashboard-hero-hd.jpg");
  background-position:right center;
}
.dashboard-hero-copy>.brand .brand-mark{
  width:46px;
  height:46px;
  border:0;
  background:transparent!important;
}
.dashboard-hero-copy>.brand .brand-mark img{object-fit:contain}
.product-card.earning::before,
.shell[data-page="nodes"] .product-card.earning::before,
.shell[data-page="download-node"] .product-card.earning::before{
  background-image:url("assets/earnings-node-hd.jpg");
}
.earnings-flow-hero{--flow-image:url("assets/earnings-node-hd.jpg")}
.unified-client-flow-hero{
  min-height:184px;
  --flow-image:url("assets/client-vpn-hd.jpg");
}
.unified-client-flow-hero::before{background-position:68% center;filter:saturate(1.04) contrast(1.05)}
.client-downloads-card>.card-head{margin-bottom:12px}
.client-downloads-card .unified-download-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.client-downloads-card .unified-client-card{min-height:264px}
.client-downloads-card .unified-client-card.unavailable{opacity:1}
.client-downloads-card .unified-client-card .download-title{padding-right:104px}
.client-downloads-card .unified-client-card .download-title h3{
  min-height:34px;
  line-height:1.12;
}
.client-downloads-card .unified-client-card .download-head>.badge{
  max-width:94px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.node-artifact-downloads-card .node-artifact-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.node-artifact-card{min-height:238px!important}
.node-artifact-card .download-title{padding-right:112px!important}
.node-artifact-card .download-head>.badge{max-width:106px}
.node-artifact-card .node-artifact-copy{margin:12px 0;line-height:1.5}
.node-artifact-card .btn-row{margin-top:auto}
.node-artifact-card[data-release-state="needs-resigning"]{border-color:rgba(240,166,77,.46);background:linear-gradient(180deg,rgba(240,166,77,.1),transparent 52%),rgba(3,12,9,.97)}
.node-artifact-card[data-release-state="unavailable"]{border-color:rgba(143,178,158,.22);background:linear-gradient(180deg,rgba(143,178,158,.06),transparent 52%),rgba(3,12,9,.97)}

.login,
:root[data-theme="light"] .login{
  background:
    radial-gradient(circle at 71% 61%,rgba(135,66,255,.1),transparent 29%),
    linear-gradient(90deg,rgba(1,5,3,.92),rgba(1,5,3,.3) 37%,rgba(1,5,3,.4) 69%,rgba(1,5,3,.9)),
    url("assets/login-hero-hd.jpg") center/cover no-repeat fixed,
    #010403;
}
.login-card{
  width:min(454px,calc(100vw - 36px))!important;
  border-color:rgba(202,225,211,.24);
  background:linear-gradient(180deg,rgba(5,14,11,.985),rgba(2,8,6,.99));
  box-shadow:0 30px 100px rgba(0,0,0,.7),0 0 0 1px rgba(124,255,104,.04),0 0 70px rgba(88,217,93,.055);
}
.login-intro{
  background:
    linear-gradient(90deg,rgba(1,7,4,.97),rgba(1,7,4,.5) 64%,rgba(1,7,4,.22)),
    url("assets/login-hero-hd.jpg") 70% 43%/cover no-repeat;
}
.login-intro .brand-mark{
  width:48px;
  height:48px;
}
.login-intro .brand-mark img{content:url("assets/armillaria-logo-512.png?v=4")}
.login-actions{padding:14px 16px 16px}
.login-actions .auth-section{padding:12px}
.wallet-section-head h2{font-size:20px}
.wallet-section-head .sub{-webkit-line-clamp:3}
.login-actions [data-wallet-actions]{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:8px;
}
.login-actions .wallet-login-action{
  grid-column:span 2;
  min-width:0;
  min-height:94px;
  grid-template-columns:1fr;
  grid-template-rows:46px auto;
  justify-items:center;
  align-content:center;
  gap:7px;
  padding:10px 7px 9px;
  text-align:center;
  background:linear-gradient(180deg,rgba(17,31,24,.98),rgba(4,13,9,.98));
}
.login-actions .wallet-login-action:nth-child(n+4){grid-column:span 3}
.login-actions .wallet-login-action::before{
  inset:auto 10px 0;
  width:auto;
  height:2px;
}
.login-actions .wallet-login-action .injected-wallet-logo{
  width:46px;
  height:46px;
  border-radius:8px;
}
.login-actions .wallet-login-action .injected-wallet-copy{
  display:block;
  width:100%;
}
.login-actions .wallet-login-action .injected-wallet-copy b{
  display:block;
  max-width:100%;
  color:#f2f7f3;
  font-size:10px;
  line-height:1.2;
  overflow-wrap:anywhere;
  white-space:normal;
}
.login-actions .wallet-login-action>span:last-child{
  position:absolute;
  top:7px;
  right:8px;
  color:#78ff67;
  font-size:13px;
}
.login-actions .wallet-login-action.muted{
  opacity:.58;
  filter:saturate(.7);
}
.wallet-login-proof{
  display:flex;
  min-width:0;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-top:10px;
  color:#8fa198;
  font-size:8px;
  text-transform:uppercase;
}
.wallet-login-proof i{width:1px;height:10px;background:rgba(188,215,198,.2)}
.tangem-login-action{
  border-color:rgba(238,241,239,.36)!important;
  background:linear-gradient(145deg,rgba(246,248,247,.1),rgba(16,25,20,.98) 48%,rgba(61,30,87,.28))!important;
  box-shadow:inset 0 1px rgba(255,255,255,.12),0 0 24px rgba(194,116,255,.08);
}
.tangem-login-action::before{background:linear-gradient(180deg,#f5f7f6,#a66bff)!important;opacity:.78!important}
.login-actions .tangem-login-action .injected-wallet-copy small{display:block;margin-top:3px;color:#c9d2cd;font-size:8px;line-height:1.2}
.wallet-login-action.is-requested{border-color:rgba(124,255,104,.78)!important;box-shadow:inset 0 0 0 1px rgba(124,255,104,.16),0 0 28px rgba(124,255,104,.14)}
.wallet-login-action.is-requested::after{content:"";position:absolute;top:8px;left:8px;width:5px;height:5px;border-radius:50%;background:#9dff6c;box-shadow:0 0 10px rgba(157,255,108,.95)}
.login-intent{display:grid;grid-template-columns:26px minmax(0,1fr);gap:8px;align-items:center;margin:0 0 9px;padding:8px 9px;border:1px solid rgba(124,255,104,.3);border-radius:6px;background:linear-gradient(90deg,rgba(124,255,104,.1),rgba(10,23,16,.72));color:#eaf5ed}
.login-intent>span{display:grid;place-items:center;color:#9dff6c}
.login-intent svg{width:19px;height:19px}
.login-intent b{display:block;font-size:10px;line-height:1.25}
.login-intent p{margin:2px 0 0;color:#a8b8af;font-size:8px;line-height:1.35}
.auth-identity-notice{display:grid;grid-template-columns:25px minmax(0,1fr) auto;gap:8px;align-items:center;margin-top:9px;padding:8px 9px;border:1px solid rgba(167,112,255,.27);border-radius:6px;background:linear-gradient(100deg,rgba(93,44,135,.14),rgba(4,14,10,.88) 58%)}
.auth-identity-mark{display:grid;place-items:center;width:25px;height:25px;border:1px solid rgba(187,129,255,.34);border-radius:6px;color:#c989ff;background:rgba(185,106,255,.08)}
.auth-identity-mark svg{width:14px;height:14px}
.auth-identity-notice b{display:block;color:#ecf4ee;font-size:9px;line-height:1.2}
.auth-identity-notice p{margin:2px 0 0;color:#a3b2aa;font-size:8px;line-height:1.35}
.auth-identity-state{align-self:start;padding:3px 5px;border:1px solid rgba(124,255,104,.27);border-radius:999px;color:#a4ef83;font-size:7px;line-height:1;text-transform:uppercase;white-space:nowrap}

.earnings-chart{
  background:linear-gradient(180deg,rgba(16,61,66,.21),rgba(2,12,12,.84) 66%),#020b0b;
}
.earnings-chart>.earnings-plot{
  position:absolute;
  left:52px;
  right:12px;
  bottom:36px;
  width:calc(100% - 64px);
  height:298px;
  overflow:visible;
}
.earnings-plot-grid path{
  fill:none;
  stroke:rgba(78,197,211,.13);
  stroke-width:1;
  vector-effect:non-scaling-stroke;
}
.earnings-zero-axis{
  fill:none;
  stroke:rgba(150,225,231,.3);
  stroke-width:1;
  stroke-dasharray:5 7;
  vector-effect:non-scaling-stroke;
}
.earnings-area{fill:url(#earningsArea)}
.earnings-line-glow{
  fill:none;
  stroke:#36d9f2;
  stroke-width:8;
  opacity:.13;
  filter:blur(5px);
  vector-effect:non-scaling-stroke;
}
.earnings-line{
  fill:none;
  stroke:#42e4f4;
  stroke-width:2.35;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 6px rgba(54,217,242,.55));
}
.earnings-point{
  fill:#03100f;
  stroke:#68eff8;
  stroke-width:1.5;
  vector-effect:non-scaling-stroke;
}
.earnings-last-point{
  fill:#7cf9ff;
  stroke:#083b40;
  stroke-width:2;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 7px rgba(54,217,242,.9));
}
.earnings-chart.is-empty>.earnings-plot{opacity:.62}
.earnings-chart.is-empty .chart-empty-label{
  inset:50% auto auto 50%;
  width:min(310px,calc(100% - 90px));
  min-height:108px;
  padding:15px;
  transform:translate(-50%,-50%);
  display:grid;
  justify-items:center;
  align-content:center;
  gap:5px;
  border:1px solid rgba(54,217,242,.22);
  border-radius:7px;
  background:rgba(2,16,16,.88);
  box-shadow:0 16px 38px rgba(0,0,0,.28),inset 0 0 30px rgba(54,217,242,.035);
  text-align:center;
}
.earnings-chart.is-empty .chart-empty-label>span{color:var(--flow-cyan)}
.earnings-chart.is-empty .chart-empty-label svg{width:25px;height:25px}
.earnings-chart.is-empty .chart-empty-label b{color:#dff4f2;font-size:12px}
.earnings-chart.is-empty .chart-empty-label small{color:#86a2a0;font-size:9px;line-height:1.4}

@media(max-width:1360px){
  .client-downloads-card .unified-download-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .node-artifact-downloads-card .node-artifact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:960px){
  .client-downloads-card .unified-download-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  .login,
  :root[data-theme="light"] .login{
    min-height:100svh;
    padding:12px;
    align-items:center;
    background-attachment:scroll;
  }
  .login-card{
    width:100%!important;
    min-height:0;
    max-height:calc(100svh - 24px);
    border-width:1px;
    border-radius:8px;
    overflow:auto;
  }
  .login-intro{min-height:112px;padding:12px 13px}
  .login-intro .brand-mark{width:42px;height:42px}
  .login-copy h1{font-size:20px}
  .login-intro .login-copy .sub{
    display:block;
    max-width:none;
    overflow:visible;
    -webkit-line-clamp:unset;
    -webkit-box-orient:initial;
    white-space:normal;
    overflow-wrap:anywhere;
  }
  .login-actions{padding:10px 11px 12px}
  .login-actions .auth-section{padding:10px}
  .login-actions #authTechnical[open] .authkit-grid{
    grid-template-columns:minmax(0,1fr);
    gap:6px;
  }
  .login-actions #authTechnical[open] .authkit-item{
    min-height:0;
    padding:7px 8px;
    grid-template-columns:7px minmax(0,1fr);
    align-items:start;
    gap:7px;
  }
  .login-actions #authTechnical[open] .authkit-item>span{
    width:7px;
    height:7px;
    margin-top:.22em;
  }
  .login-actions #authTechnical[open] .authkit-item b{
    font-size:9px;
    line-height:1.35;
    overflow:visible;
    text-overflow:clip;
    white-space:normal;
    overflow-wrap:anywhere;
  }
  .wallet-section-head h2{font-size:18px}
  .login-actions [data-wallet-actions]{gap:6px}
  .login-actions .wallet-login-action{min-height:82px;grid-template-rows:40px auto;padding:8px 5px 7px}
  .login-actions .wallet-login-action .injected-wallet-logo{width:40px;height:40px}
  .login-actions .wallet-login-action .injected-wallet-copy b{font-size:9px}
  .wallet-login-proof{gap:5px;font-size:7px}
  .auth-identity-notice{grid-template-columns:23px minmax(0,1fr);gap:7px}
  .auth-identity-mark{width:23px;height:23px}
  .auth-identity-state{grid-column:2;justify-self:start}
  .client-downloads-card .unified-download-grid{grid-template-columns:1fr}
  .node-artifact-downloads-card .node-artifact-grid{grid-template-columns:1fr}
  .client-downloads-card .unified-client-card{min-height:238px}
  .earnings-chart>.earnings-plot{
    left:40px;
    width:calc(100% - 52px);
    height:188px;
  }
}

/* Finalimage control-center fidelity layer. */
:root{
  --final-bg:#010605;
  --final-panel:#04100d;
  --final-panel-raised:#071712;
  --final-line:rgba(157,196,174,.22);
  --final-line-bright:rgba(143,224,147,.36);
  --final-green:#83ed55;
  --final-cyan:#37d9e8;
  --final-violet:#a054ff;
  --final-gold:#d9d25b;
}
html{background:var(--final-bg);scrollbar-color:rgba(131,237,85,.38) rgba(2,8,6,.8)}
html.final-overlay-open{overflow:hidden}
body{background:var(--final-bg);font-variant-numeric:tabular-nums}
body::before{
  position:fixed;
  opacity:.18;
  background-image:url("assets/mycelium-network.png");
  background-position:78% 12%;
  background-size:cover;
  filter:saturate(1.2) contrast(1.08);
}
body::after{position:fixed;background:linear-gradient(115deg,rgba(1,6,5,.975),rgba(1,6,5,.92) 55%,rgba(7,3,12,.91))}
img{image-rendering:auto}
.shell[data-finalimage="true"]{
  grid-template-columns:252px minmax(0,1fr);
  min-height:100svh;
  background:transparent;
}
.shell[data-finalimage="true"]>main{min-width:0;background:transparent}
.shell[data-finalimage="true"] .sidebar{
  z-index:20;
  width:252px;
  padding:18px 14px 14px;
  gap:13px;
  border-right-color:rgba(156,192,171,.2);
  background:linear-gradient(180deg,rgba(2,9,7,.99),rgba(1,7,5,.985));
  box-shadow:18px 0 50px rgba(0,0,0,.18);
}
.shell[data-finalimage="true"] .sidebar-brand{
  width:auto;
  height:64px;
  min-height:64px;
  margin:0 4px 3px;
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:10px;
  align-items:center;
  border-bottom:1px solid rgba(157,196,174,.15);
}
.shell[data-finalimage="true"] .sidebar-brand .brand-mark{width:52px;height:52px}
.shell[data-finalimage="true"] .sidebar-brand .brand-mark img{
  width:52px;
  height:52px;
  content:url("assets/armillaria-glyph.svg?v=5");
  filter:drop-shadow(0 0 10px rgba(131,237,85,.42));
}
.shell[data-finalimage="true"] .dashboard-hero-copy .brand-mark img,
.login-intro .brand-mark img,
:root[data-theme="light"] .login-intro .brand-mark img,
.identity-avatar img{
  content:url("assets/armillaria-glyph.svg?v=5");
}
.shell[data-finalimage="true"] .sidebar-brand .brand-title h2{
  color:var(--final-green);
  font-size:17px;
  font-weight:680;
}

.shell[data-finalimage="true"] .sidebar-brand .brand-title p{font-size:9px;text-transform:uppercase;color:#718078}
.shell[data-finalimage="true"] .tree-nav{gap:7px;padding:0 2px 4px}
.shell[data-finalimage="true"] .tree-group{
  padding:0 0 7px;
  border-bottom:1px solid rgba(157,196,174,.1);
}
.shell[data-finalimage="true"] .tree-group:last-child{border-bottom:0}
.shell[data-finalimage="true"] .tree-root{
  min-height:29px;
  padding:3px 6px;
  color:#78857e;
}
.shell[data-finalimage="true"] .tree-root-icon{width:20px;height:20px;padding:3px}
.shell[data-finalimage="true"] .tree-label{font-size:10px;color:#7f8b84}
.shell[data-finalimage="true"] .tree-caret{display:none}
.shell[data-finalimage="true"] .tree-children,
.shell[data-finalimage="true"] .final-tree-children{
  display:grid;
  gap:1px;
  padding:1px 0 0 16px;
}
.shell[data-finalimage="true"] .tree-children::before{left:8px;bottom:15px;border-color:rgba(143,178,158,.15)}
.shell[data-finalimage="true"] .tree-leaf{
  min-height:29px;
  padding:2px 6px;
  grid-template-columns:19px minmax(0,1fr);
  gap:6px;
  color:#9aa69f;
  font-size:11px;
}
.shell[data-finalimage="true"] .tree-leaf::before{left:-8px;width:8px;border-color:rgba(143,178,158,.15)}
.shell[data-finalimage="true"] .tree-leaf-icon{width:16px;height:16px}
.shell[data-finalimage="true"] .tree-leaf.active{
  color:#f1f6f2;
  border-color:rgba(131,237,85,.42);
  background:linear-gradient(90deg,rgba(101,225,74,.16),rgba(101,225,74,.06));
  box-shadow:inset 0 0 18px rgba(108,236,80,.05),0 0 16px rgba(88,210,68,.035);
}
.shell[data-finalimage="true"] .account-panel{
  position:sticky;
  bottom:0;
  margin-top:auto;
  padding:10px;
  border-color:rgba(131,237,85,.24);
  background:linear-gradient(145deg,rgba(9,25,18,.98),rgba(3,12,9,.99));
  box-shadow:0 -12px 32px rgba(1,6,4,.95),0 0 24px rgba(89,215,68,.035);
}
.shell[data-finalimage="true"] .account-panel .btn{width:100%;min-height:30px;font-size:10px}

.shell[data-finalimage="true"] .topbar{
  position:sticky;
  top:0;
  z-index:15;
  min-height:78px;
  padding:10px 24px;
  border-bottom-color:rgba(157,196,174,.17);
  background:rgba(2,8,7,.9);
  backdrop-filter:blur(22px) saturate(1.2);
}
.shell[data-finalimage="true"] .topbar-main{min-height:56px;gap:10px}
.shell[data-finalimage="true"] .topbar .page-heading{
  display:grid!important;
  grid-template-columns:36px minmax(0,1fr);
  min-width:260px;
}
.shell[data-finalimage="true"] .topbar-icon{
  width:36px;
  height:36px;
  border-color:rgba(131,237,85,.25);
  color:var(--final-green);
  background:rgba(131,237,85,.06);
}
.shell[data-finalimage="true"] .page-heading strong{font-size:18px;color:#eef4ef;text-transform:none}
.shell[data-finalimage="true"] .page-heading small{display:none}
.final-page-subtitle{
  grid-column:2;
  min-width:0;
  color:#7f8d85;
  font-size:10px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.shell[data-finalimage="true"] .runtime-chip{display:none}
.final-network-status{
  width:160px;
  min-height:46px;
  padding:7px 10px;
  display:grid;
  align-content:center;
  gap:3px;
  border:1px solid rgba(157,196,174,.16);
  border-radius:7px;
  background:rgba(5,15,12,.82);
}
.final-network-status small{color:#6f7c75;font-size:8px;text-transform:uppercase}
.final-network-status b{display:flex;align-items:center;gap:6px;color:#a4afa9;font-size:10px;white-space:nowrap}
.final-network-status i{width:8px;height:8px;border-radius:50%;background:#778078;box-shadow:0 0 9px rgba(170,180,174,.35)}
.final-network-status.ok i{background:var(--final-green);box-shadow:0 0 11px rgba(131,237,85,.78)}
.final-network-status.ok b{color:var(--final-green)}
.final-network-status.warn i{background:var(--final-gold);box-shadow:0 0 11px rgba(217,210,91,.58)}
.final-network-status.warn b{color:var(--final-gold)}
.final-network-status.bad i{background:#ff666b;box-shadow:0 0 11px rgba(255,102,107,.52)}
.final-network-status.bad b{color:#ff8589}
.final-icon-button{
  position:relative;
  width:38px;
  min-width:38px;
  height:38px;
  padding:9px;
  display:grid;
  place-items:center;
  border:1px solid transparent;
  border-radius:6px;
  color:#c4cec8;
  background:transparent;
  cursor:pointer;
}
.final-icon-button svg{width:20px;height:20px}
.final-icon-button:hover,.final-icon-button:focus-visible{
  color:var(--final-green);
  border-color:rgba(131,237,85,.3);
  background:rgba(131,237,85,.07);
}
.final-menu-button{display:none}
.final-notification-count{
  position:absolute;
  top:1px;
  right:1px;
  min-width:15px;
  height:15px;
  padding:0 3px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#061006;
  background:var(--final-green);
  font-size:8px;
  font-weight:800;
}
.shell[data-finalimage="true"] .content{
  width:100%;
  max-width:1640px;
  padding:20px 24px 38px;
  margin:0 auto;
}

.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{
  position:relative;
  min-height:334px;
  padding:30px 32px;
  grid-template-columns:minmax(0,1fr);
  overflow:hidden;
  border-color:rgba(157,196,174,.26);
  background:#020807;
  box-shadow:inset 0 0 70px rgba(35,91,57,.035),0 18px 44px rgba(0,0,0,.25);
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::before{
  z-index:-1;
  background:linear-gradient(90deg,#020807 0%,rgba(2,8,7,.97) 44%,rgba(2,8,7,.68) 61%,rgba(2,8,7,.08) 87%);
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::after{
  z-index:-2;
  inset:0 0 0 37%;
  background-image:url("assets/dashboard-hero-hd.jpg");
  background-position:right center;
  background-size:cover;
  opacity:1;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy{
  max-width:680px;
  padding-bottom:82px;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.brand{display:none}
.final-dashboard-wordmark{display:grid;gap:3px;margin:0 0 18px}
.final-dashboard-wordmark strong{
  color:#9be96e;
  font-size:48px;
  line-height:1;
  font-weight:520;
  letter-spacing:8px;
  text-shadow:0 0 22px rgba(131,237,85,.14);
}
.final-dashboard-wordmark span{color:#a2ada6;font-size:11px;letter-spacing:5px}
.shell[data-page="overview"][data-finalimage="true"] .final-original-dashboard-title{display:none}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.sub{
  max-width:570px;
  margin-top:0;
  color:#aab4ae;
  font-size:13px;
  line-height:1.55;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row{margin-top:18px}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row .role-chip{display:none}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{
  position:absolute;
  left:32px;
  bottom:24px;
  width:min(680px,56%);
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  padding:0;
  border:0;
  background:transparent;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .metric{
  min-height:62px;
  padding:10px 12px;
  border:1px solid rgba(157,196,174,.2);
  border-radius:6px;
  background:rgba(3,13,10,.82);
  backdrop-filter:blur(12px);
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .k{color:#89968f;font-size:9px;text-transform:uppercase}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .v{color:#a6ef7e;font-size:11px}
.shell[data-finalimage="true"] .overview-stats{gap:12px}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat{
  min-height:202px;
  padding:17px;
  border-color:rgba(157,196,174,.23);
  background:
    radial-gradient(circle at 88% 30%,rgba(131,237,85,.055),transparent 38%),
    linear-gradient(145deg,rgba(5,16,12,.99),rgba(3,11,9,.98));
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(3){
  border-color:rgba(160,84,255,.31);
  background:radial-gradient(circle at 88% 28%,rgba(160,84,255,.09),transparent 40%),rgba(5,12,11,.98);
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(4){
  border-color:rgba(55,217,232,.28);
  background:radial-gradient(circle at 86% 30%,rgba(55,217,232,.08),transparent 40%),rgba(5,12,11,.98);
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-icon{width:31px;height:31px;margin-bottom:16px}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-copy{max-width:76%}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .k{font-size:10px}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .v{font-size:30px}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart{width:68%;height:100px;opacity:.98}
.shell[data-page="overview"][data-finalimage="true"] .module-section{margin-top:22px}
.shell[data-page="overview"][data-finalimage="true"] .module-section>.card-head{
  padding-bottom:10px;
  border-bottom:1px solid rgba(157,196,174,.16);
}
.shell[data-page="overview"][data-finalimage="true"] .product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.shell[data-page="overview"][data-finalimage="true"] .product-card{
  min-height:276px;
  padding:18px;
  border-color:rgba(157,196,174,.25);
}
.shell[data-page="overview"][data-finalimage="true"] .product-card::before{background-size:cover;opacity:1}
.shell[data-page="overview"][data-finalimage="true"] .product-card.domains::after,
.shell[data-page="overview"][data-finalimage="true"] .product-card.vpn::after,
.shell[data-page="overview"][data-finalimage="true"] .product-card.earning::after{
  background:linear-gradient(90deg,rgba(2,8,6,.96) 0%,rgba(2,8,6,.66) 52%,rgba(2,8,6,.16) 82%),linear-gradient(0deg,rgba(2,8,6,.83),transparent 66%);
}
.shell[data-page="overview"][data-finalimage="true"] .product-card .module-head>div{max-width:76%}
.shell[data-page="overview"][data-finalimage="true"] .product-card .module-head h2{font-size:21px}
.shell[data-page="overview"][data-finalimage="true"] .product-card .btn-row{margin-top:auto}

.shell[data-finalimage="true"] .flow-hero{
  min-height:236px;
  padding:24px 26px;
  border-color:rgba(157,196,174,.25);
  box-shadow:inset 0 0 55px rgba(67,138,88,.025),0 16px 38px rgba(0,0,0,.2);
}
.shell[data-finalimage="true"] .flow-hero::before{filter:saturate(1.08) contrast(1.08);opacity:.92}
.shell[data-finalimage="true"] .flow-hero::after{background:linear-gradient(90deg,rgba(2,9,7,.98),rgba(2,9,7,.79) 54%,rgba(2,9,7,.18))}
.shell[data-finalimage="true"] .flow-hero h1{font-size:30px}
.shell[data-finalimage="true"] .flow-hero .eyebrow{color:var(--final-green);letter-spacing:1px}
.shell[data-finalimage="true"] .card,
.shell[data-finalimage="true"] .service-card,
.shell[data-finalimage="true"] .download-card,
.shell[data-finalimage="true"] .module-toggle,
.shell[data-finalimage="true"] .health-card{
  border-color:var(--final-line);
  background-color:rgba(4,13,10,.95);
}
.shell[data-finalimage="true"] .card{box-shadow:0 12px 32px rgba(0,0,0,.18)}
.shell[data-finalimage="true"] .card:hover,
.shell[data-finalimage="true"] .final-action-surface:hover{border-color:rgba(131,237,85,.34)}
.final-action-surface{cursor:default;transition:border-color .18s ease,box-shadow .18s ease}
.final-action-surface:hover{transform:none;box-shadow:0 18px 38px rgba(0,0,0,.25)}
.final-action-surface:focus-visible{outline:2px solid var(--final-green);outline-offset:2px}

.shell[data-area="account"][data-finalimage="true"] .profile-layout,
.shell[data-area="account"][data-finalimage="true"] .grid.cols-2{gap:14px}
.shell[data-page="profile"][data-finalimage="true"] .identity-card{
  border-color:rgba(131,237,85,.3);
  background:linear-gradient(145deg,rgba(131,237,85,.055),transparent 38%),rgba(4,13,10,.97);
}
.shell[data-page="profile"][data-finalimage="true"] .session-card{border-color:rgba(160,84,255,.28)}
.shell[data-page="roles"][data-finalimage="true"] .role-flow-card.active{border-color:rgba(131,237,85,.38)}
.shell[data-page="keys"][data-finalimage="true"] .key-card{border-color:rgba(55,217,232,.28)}
.shell[data-page="settings"][data-finalimage="true"] .settings-layout,
.shell[data-page="recovery"][data-finalimage="true"] .grid{align-items:start}

.shell[data-area="domains"][data-finalimage="true"] .domain-flow{gap:9px}
.shell[data-page="protect"][data-finalimage="true"] .domain-hero{
  grid-template-columns:minmax(330px,.7fr) minmax(0,1.3fr);
  gap:14px;
}
.shell[data-page="protect"][data-finalimage="true"] .domain-summary{
  top:98px;
  min-height:calc(100vh - 124px);
  border-color:rgba(131,237,85,.3);
}
.shell[data-page="protect"][data-finalimage="true"] #createSvc{border-color:rgba(160,84,255,.31)}
.shell[data-page="protect"][data-finalimage="true"] .module-toggle-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.shell[data-page="protect"][data-finalimage="true"] .module-toggle{min-height:104px}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-manage-summary{min-height:242px}
.shell[data-page="my-domains"][data-finalimage="true"] .service-manage-card{border-color:rgba(160,84,255,.28)}
.shell[data-page="health"][data-finalimage="true"] .health-domain-stats .stat:nth-child(2n){border-color:rgba(55,217,232,.26)}

.shell[data-area="vpn"][data-finalimage="true"] .flow-hero,
.shell[data-page="client"][data-finalimage="true"] .unified-client-flow-hero{border-color:rgba(160,84,255,.34)}
.shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn{
  min-height:0;
  align-content:start;
  gap:12px;
}
.shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn>.mt{margin-top:0}
.shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn>.module-head>div{max-width:100%;min-width:0}
.shell[data-page="client"][data-finalimage="true"] .unified-client-flow-hero{min-height:244px}
.shell[data-page="client"][data-finalimage="true"] .client-hero-state{
  border-color:rgba(55,217,232,.28);
  background:rgba(3,15,14,.76);
}
.shell[data-page="client"][data-finalimage="true"] .client-downloads-card .unified-download-grid{gap:12px}
.shell[data-page="client"][data-finalimage="true"] .unified-client-card{
  min-height:288px;
  border-color:rgba(157,196,174,.22);
}
.shell[data-page="client"][data-finalimage="true"] .unified-client-card.recommended{border-color:rgba(131,237,85,.55)}
.shell[data-page="vpn-connect"][data-finalimage="true"] .vpn-connect-layout>.card:first-child{border-color:rgba(160,84,255,.34)}

.shell[data-area="earning"][data-finalimage="true"] .earnings-flow-hero,
.shell[data-area="earning"][data-finalimage="true"] .wallets-flow-hero,
.shell[data-area="earning"][data-finalimage="true"] .payouts-flow-hero{min-height:230px}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpis{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi{min-height:176px}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-layout{grid-template-columns:minmax(0,1.6fr) minmax(310px,.66fr)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-chart-card{border-color:rgba(55,217,232,.34)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-chart{min-height:430px}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-chart>.earnings-plot{height:316px}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-economy-panel{border-color:rgba(131,237,85,.31)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-balance-callout{
  background:linear-gradient(135deg,rgba(131,237,85,.12),rgba(55,217,232,.04));
}
.shell[data-page="wallets"][data-finalimage="true"] .payout-wallet-card:nth-child(2n){border-color:rgba(160,84,255,.25)}
.shell[data-page="payouts"][data-finalimage="true"] .payout-layout>form{border-color:rgba(131,237,85,.31)}

.final-overlay[hidden]{display:none!important}
.final-overlay{position:fixed;z-index:120;inset:0;display:grid}
.final-overlay-backdrop{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  border-radius:0;
  background:rgba(0,4,3,.82);
  backdrop-filter:blur(10px);
}
.final-dialog{
  position:relative;
  z-index:1;
  width:min(640px,calc(100vw - 32px));
  max-height:min(720px,calc(100svh - 40px));
  margin:auto;
  padding:16px;
  overflow:auto;
  border:1px solid rgba(157,196,174,.28);
  border-radius:8px;
  color:#eef4ef;
  background:linear-gradient(145deg,rgba(7,19,15,.99),rgba(2,10,7,.995));
  box-shadow:0 28px 90px rgba(0,0,0,.7),0 0 45px rgba(85,213,69,.05);
}
.final-dialog>header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}
.final-dialog>header span{color:var(--final-green);font-size:8px;letter-spacing:1px;text-transform:uppercase}
.final-dialog>header h2{margin-top:3px;font-size:20px}
.final-search-field{
  min-height:50px;
  padding:0 13px;
  display:grid;
  grid-template-columns:22px minmax(0,1fr);
  align-items:center;
  gap:9px;
  border:1px solid rgba(131,237,85,.3);
  border-radius:7px;
  color:var(--final-green);
  background:rgba(1,8,6,.86);
}
.final-search-field svg{width:20px;height:20px}
.final-search-field input{min-height:46px;padding:0;border:0;background:transparent;box-shadow:none}
.final-search-results{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin-top:12px}
.final-search-results a{
  min-width:0;
  min-height:58px;
  padding:10px;
  display:grid;
  grid-template-columns:30px minmax(0,1fr);
  align-items:center;
  gap:2px 9px;
  border:1px solid rgba(157,196,174,.16);
  border-radius:6px;
  color:#dce5df;
  background:rgba(6,16,13,.72);
}
.final-search-results a:hover,.final-search-results a:focus-visible{border-color:rgba(131,237,85,.4);background:rgba(131,237,85,.07)}
.final-search-results a>span{grid-row:1/3;width:24px;height:24px;color:var(--final-green)}
.final-search-results a>span svg{width:24px;height:24px}
.final-search-results a b{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px}
.final-search-results a small{color:#75827a;font-size:9px}
.final-notification-list{display:grid;gap:8px}
.final-notification{
  min-height:58px;
  padding:11px;
  display:grid;
  grid-template-columns:9px minmax(0,1fr);
  gap:10px;
  align-items:start;
  border:1px solid rgba(157,196,174,.16);
  border-radius:6px;
  background:rgba(4,14,10,.75);
}
.final-notification i{width:9px;height:9px;margin-top:4px;border-radius:50%;background:var(--final-green);box-shadow:0 0 9px rgba(131,237,85,.6)}
.final-notification.warn i{background:var(--final-gold);box-shadow:0 0 9px rgba(217,210,91,.45)}
.final-notification.bad i{background:#ff666b;box-shadow:0 0 9px rgba(255,102,107,.45)}
.final-notification p{color:#aab6af;font-size:11px;line-height:1.5}

@media(min-width:1700px){
  .shell[data-finalimage="true"]{grid-template-columns:286px minmax(0,1fr)}
  .shell[data-finalimage="true"] .sidebar{width:286px;padding-inline:18px}
  .shell[data-finalimage="true"] .content{padding:24px 30px 44px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{min-height:366px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat{min-height:220px}
}

@media(max-width:1240px){
  .shell[data-finalimage="true"]{grid-template-columns:238px minmax(0,1fr)}
  .shell[data-finalimage="true"] .sidebar{width:238px;padding-inline:10px}
  .shell[data-finalimage="true"] .topbar{padding-inline:16px}
  .shell[data-finalimage="true"] .content{padding-inline:16px}
  .final-network-status{width:132px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat{min-height:178px}
  .shell[data-page="overview"][data-finalimage="true"] .product-grid{grid-template-columns:1fr}
  .shell[data-page="overview"][data-finalimage="true"] .product-card{min-height:236px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-layout{grid-template-columns:1fr}
}

@media(max-width:960px){
  .shell[data-finalimage="true"]{display:block;width:100%;max-width:100%}
  .shell[data-finalimage="true"] .sidebar{display:none}
  .shell[data-finalimage="true"] .topbar{min-height:66px;padding:8px 12px}
  .shell[data-finalimage="true"] .topbar-main{min-height:48px}
  .shell[data-finalimage="true"] .topbar .page-heading{min-width:0;grid-template-columns:32px minmax(0,1fr)}
  .shell[data-finalimage="true"] .topbar-icon{width:32px;height:32px}
  .shell[data-finalimage="true"] .page-heading strong{font-size:14px}
  .final-page-subtitle{font-size:8px}
  .final-menu-button{display:grid;order:-2}
  .final-network-status{display:none}
  .final-search-button,.final-notifications-button{width:34px;min-width:34px;height:34px;padding:8px}
  .shell[data-finalimage="true"] .topbar .seg{display:none}
  .shell[data-finalimage="true"] .content{padding:14px 14px 84px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{min-height:520px;padding:20px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::before{background:linear-gradient(180deg,rgba(2,8,7,.67),rgba(2,8,7,.98) 70%)}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::after{inset:0;background-position:64% top;opacity:.75}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy{padding-top:0;padding-bottom:0}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{position:static;width:100%;margin-top:14px}
  .shell[data-page="overview"][data-finalimage="true"] .product-grid{grid-template-columns:1fr}
  .shell[data-page="protect"][data-finalimage="true"] .domain-hero{grid-template-columns:1fr}
  .shell[data-page="protect"][data-finalimage="true"] .domain-summary{position:relative;top:auto;min-height:500px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-kpis{grid-template-columns:1fr}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-layout{grid-template-columns:1fr}
}

@media(max-width:620px){
  .shell[data-finalimage="true"] .topbar-avatar{display:none}
  .shell[data-finalimage="true"] .topbar .icon-only{width:34px;min-width:34px;height:34px}
  .shell[data-finalimage="true"] .content{padding-inline:10px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{min-height:548px;padding:14px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy{padding-top:0}
  .final-dashboard-wordmark{margin-bottom:12px}
  .final-dashboard-wordmark strong{font-size:32px;letter-spacing:4px}
  .final-dashboard-wordmark span{font-size:8px;letter-spacing:2px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.sub{font-size:11px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row{display:grid;grid-template-columns:1fr 1fr}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row .btn{width:100%;font-size:10px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{grid-template-columns:1fr}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .metric{min-height:48px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat{min-height:164px;padding:12px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-icon{width:25px;height:25px;margin-bottom:10px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-copy{max-width:100%}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .v{font-size:22px;overflow-wrap:anywhere}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .sub{font-size:9px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart{width:74%;height:66px;opacity:.8}
  .shell[data-page="overview"][data-finalimage="true"] .product-card{min-height:250px;padding:14px}
  .shell[data-finalimage="true"] .flow-hero{min-height:270px;padding:15px;align-items:flex-end}
  .shell[data-finalimage="true"] .flow-hero h1{font-size:24px}
  .shell[data-page="protect"][data-finalimage="true"] .module-toggle-grid{grid-template-columns:1fr}
  .shell[data-page="client"][data-finalimage="true"] .client-downloads-card .unified-download-grid{grid-template-columns:1fr}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-chart{min-height:318px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-chart>.earnings-plot{height:205px}
  .final-search-results{grid-template-columns:1fr}
  .final-dialog{width:calc(100vw - 20px);max-height:calc(100svh - 20px);padding:12px}
}

@media(prefers-reduced-motion:reduce){
  .final-action-surface,.final-icon-button{transition:none!important}
  .final-action-surface:hover{transform:none}
}
/* Finalimage release composition layer. */
:root{
  --release-ink:#010705;
  --release-panel:#04110d;
  --release-panel-deep:#020a07;
  --release-panel-soft:#071a14;
  --release-line:rgba(152,213,172,.19);
  --release-line-strong:rgba(132,237,85,.48);
  --release-text:#edf6ef;
  --release-muted:#91a59b;
  --release-green:#8af454;
  --release-cyan:#37d9e8;
  --release-purple:#a65cff;
  --release-radius:8px;
}

html,
body{background:var(--release-ink);letter-spacing:0}
body::before{
  opacity:.16;
  background-image:url("assets/mycelium-network.png");
  background-position:right top;
  background-size:cover;
}
body::after{background:rgba(1,7,5,.92)}

.shell[data-finalimage="true"]{
  grid-template-columns:252px minmax(0,1fr);
  min-height:100svh;
  background:transparent;
}
.shell[data-finalimage="true"] .sidebar{
  position:sticky;
  top:0;
  align-self:start;
  width:252px;
  height:100svh;
  min-height:0;
  overflow-y:auto;
  overflow-x:hidden;
  padding:15px 14px 14px;
  gap:10px;
  border:0;
  border-right:1px solid var(--release-line);
  border-radius:0;
  background:rgba(2,10,7,.97);
  box-shadow:18px 0 42px rgba(0,0,0,.2);
  scrollbar-width:thin;
  scrollbar-gutter:stable;
  overscroll-behavior:contain;
}
.shell[data-finalimage="true"] .sidebar-brand{
  height:68px;
  min-height:68px;
  margin:0 3px 5px;
  padding:0 2px 13px;
  grid-template-columns:47px minmax(0,1fr);
  gap:10px;
  border-bottom:1px solid var(--release-line);
}
.shell[data-finalimage="true"] .sidebar-brand .brand-mark,
.shell[data-finalimage="true"] .sidebar-brand .brand-mark img{width:46px;height:46px}
.shell[data-finalimage="true"] .sidebar-brand .brand-title h2{
  color:var(--release-green);
  font-size:16px;
  line-height:1.1;
  letter-spacing:0;
}
.shell[data-finalimage="true"] .sidebar-brand .brand-title p{
  color:#78877f;
  font-size:9px;
  letter-spacing:0;
}
.shell[data-finalimage="true"] .tree-nav{gap:7px;padding:0 0 4px}
.shell[data-finalimage="true"] .tree-group{
  padding:0 0 7px;
  border-bottom:1px solid rgba(152,213,172,.12);
}
.shell[data-finalimage="true"] .tree-group:last-child{border-bottom:0}
.shell[data-finalimage="true"] .tree-root{
  min-height:31px;
  padding:6px 8px;
  border:1px solid transparent;
  border-radius:6px;
  background:transparent;
  color:#a4b2aa;
}
.shell[data-finalimage="true"] .tree-root.active{
  border-color:rgba(135,235,88,.17);
  background:rgba(88,178,54,.075);
  color:#dff0df;
}
.shell[data-finalimage="true"] .tree-root-icon{width:17px;height:17px;padding:1px;color:var(--release-green)}
.shell[data-finalimage="true"] .tree-root-main{gap:0}
.shell[data-finalimage="true"] .tree-label{
  color:inherit;
  font-size:10px;
  font-weight:720;
  letter-spacing:0;
  text-transform:uppercase;
}
.shell[data-finalimage="true"] .tree-sub{display:none}
.shell[data-finalimage="true"] .tree-caret{display:none}
.shell[data-finalimage="true"] .tree-children,
.shell[data-finalimage="true"] .final-tree-children{
  gap:1px;
  margin:4px 0 0 8px;
  padding:0 0 0 8px;
  border-left:1px solid rgba(152,213,172,.14);
}
.shell[data-finalimage="true"] .tree-children::before{display:none}
.shell[data-finalimage="true"] .tree-leaf{
  min-height:29px;
  padding:5px 8px;
  gap:8px;
  border:1px solid transparent;
  border-radius:6px;
  color:#aebbb4;
  font-size:11px;
  line-height:1.15;
}
.shell[data-finalimage="true"] .tree-leaf::before{display:none}
.shell[data-finalimage="true"] .tree-leaf-icon{width:15px;height:15px;color:#8f9c95}
.shell[data-finalimage="true"] .tree-leaf:hover{background:rgba(116,219,82,.06);color:#e7f2e8}
.shell[data-finalimage="true"] .tree-leaf.active{
  border-color:rgba(135,235,88,.5);
  background:linear-gradient(90deg,rgba(80,177,49,.22),rgba(80,177,49,.075));
  color:#eff9ef;
  box-shadow:inset 3px 0 var(--release-green),0 0 18px rgba(105,229,74,.06);
}
.shell[data-finalimage="true"] .tree-leaf.active .tree-leaf-icon{color:var(--release-green)}
.shell[data-finalimage="true"] .account-panel{
  position:sticky;
  bottom:0;
  z-index:2;
  margin-top:auto;
  padding:11px;
  border-color:rgba(132,237,85,.26);
  border-radius:var(--release-radius);
  background:rgba(4,18,13,.97);
  box-shadow:none;
}
.shell[data-finalimage="true"] .account-panel-head{gap:8px}
.shell[data-finalimage="true"] .account-avatar{width:28px;height:28px;color:var(--release-green)}
.shell[data-finalimage="true"] .account-panel .btn-row{gap:5px;margin:9px 0}
.shell[data-finalimage="true"] .account-panel .btn{min-height:29px;font-size:10px}

.shell[data-finalimage="true"] main{min-width:0;background:transparent}
.shell[data-finalimage="true"] .topbar{
  position:sticky;
  top:0;
  z-index:15;
  min-height:72px;
  padding:0 20px;
  border:0;
  border-bottom:1px solid var(--release-line);
  border-radius:0;
  background:rgba(2,10,7,.92);
  box-shadow:0 8px 28px rgba(0,0,0,.1);
  backdrop-filter:blur(16px);
}
.shell[data-finalimage="true"] .topbar-main{min-height:72px;gap:10px}
.shell[data-finalimage="true"] .topbar .page-heading{gap:0}
.shell[data-finalimage="true"] .topbar-icon{display:none}
.shell[data-finalimage="true"] .page-heading strong{
  color:var(--release-text);
  font-size:21px;
  line-height:1.1;
  font-weight:720;
  letter-spacing:0;
}
.shell[data-finalimage="true"] .page-heading small{display:none}
.shell[data-finalimage="true"] .final-page-subtitle{
  display:block;
  margin-top:5px;
  color:#87958e;
  font-size:11px;
  line-height:1.25;
}
.shell[data-finalimage="true"] .runtime-chip{display:none}
.shell[data-finalimage="true"] .seg{
  min-height:34px;
  border-color:var(--release-line);
  border-radius:6px;
  background:#04100d;
}
.shell[data-finalimage="true"] .seg button{min-height:32px;color:#aab7af}
.shell[data-finalimage="true"] .seg button.active{background:rgba(132,237,85,.12);color:#ecf8ed}
.shell[data-finalimage="true"] .topbar-avatar{
  width:34px;
  height:34px;
  border-color:rgba(132,237,85,.7);
  color:var(--release-green);
  background:rgba(23,60,21,.32);
}
.shell[data-finalimage="true"] .content{
  width:100%;
  max-width:1540px;
  min-height:calc(100svh - 72px);
  margin:0 auto;
  padding:16px 20px 36px;
}
.shell[data-finalimage="true"] #view>*{min-width:0;max-width:100%}

/* Stable async route geometry: API-backed views replace this reserved surface
   without flashing an empty page or moving the persistent shell. */
.route-skeleton{
  display:grid;
  gap:12px;
  min-height:calc(100svh - 124px);
  overflow:hidden;
  contain:layout paint;
}
.route-skeleton-hero,
.route-skeleton-panel,
.route-skeleton-tabs,
.route-skeleton-cards>i{
  border:1px solid rgba(152,213,172,.14);
  border-radius:var(--release-radius);
  background:linear-gradient(105deg,rgba(4,17,13,.96) 20%,rgba(14,35,25,.94) 42%,rgba(4,17,13,.96) 64%);
  background-size:220% 100%;
  animation:route-skeleton-pulse 1.25s ease-in-out infinite;
}
.route-skeleton-tabs{height:48px}
.route-skeleton-hero{height:184px}
.route-skeleton-overview .route-skeleton-hero{height:304px}
.route-skeleton-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.route-skeleton-overview .route-skeleton-cards{grid-template-columns:repeat(4,minmax(0,1fr))}
.route-skeleton-cards>i{display:block;height:138px}
.route-skeleton-overview .route-skeleton-cards>i{height:172px}
.route-skeleton-panel{height:220px}
@keyframes route-skeleton-pulse{50%{background-position:100% 0}}

.shell[data-finalimage="true"] .card,
.shell[data-finalimage="true"] .service-card,
.shell[data-finalimage="true"] .download-card,
.shell[data-finalimage="true"] .module-toggle,
.shell[data-finalimage="true"] .health-card,
.shell[data-finalimage="true"] .product-card{
  border-color:var(--release-line);
  border-radius:var(--release-radius);
  background:rgba(4,16,12,.9);
  box-shadow:0 14px 34px rgba(0,0,0,.15);
}
.shell[data-finalimage="true"] .card:hover,
.shell[data-finalimage="true"] .final-action-surface:hover{border-color:rgba(132,237,85,.48)}
.shell[data-finalimage="true"] .card-head h2,
.shell[data-finalimage="true"] .module-head h2{color:var(--release-text);letter-spacing:0}
.shell[data-finalimage="true"] .sub,
.shell[data-finalimage="true"] .muted{color:var(--release-muted)}
.shell[data-finalimage="true"] .badge{border-radius:5px}
.shell[data-finalimage="true"] .btn{
  min-height:35px;
  border-radius:6px;
  border-color:rgba(152,213,172,.24);
  background:rgba(4,18,13,.84);
  color:#dceade;
  box-shadow:none;
}
.shell[data-finalimage="true"] .btn.primary{
  border-color:rgba(157,255,96,.6);
  background:var(--release-green);
  color:#081108;
  box-shadow:0 7px 18px rgba(110,236,73,.22);
}
.shell[data-finalimage="true"] .btn.primary:hover{filter:brightness(1.07)}
.shell[data-finalimage="true"] input,
.shell[data-finalimage="true"] select,
.shell[data-finalimage="true"] textarea{
  border-radius:6px;
  border-color:var(--release-line);
  background:#03100c;
  color:var(--release-text);
}

.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(340px,.78fr);
  min-height:304px;
  padding:23px 24px 21px;
  overflow:hidden;
  border-color:rgba(152,213,172,.22);
  border-radius:var(--release-radius);
  background:#020b08;
  box-shadow:0 18px 42px rgba(0,0,0,.2);
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.28;
  background:url("assets/mycelium-network.png") right bottom/62% auto no-repeat;
  pointer-events:none;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  opacity:1;
  background:
    linear-gradient(90deg,#020b08 0%,rgba(2,11,8,.96) 34%,rgba(2,11,8,.64) 61%,rgba(2,11,8,.08) 100%),
    url("assets/dashboard-hero-hd.jpg") right center/cover no-repeat;
  pointer-events:none;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy{
  position:relative;
  z-index:1;
  grid-column:1;
  grid-row:1;
  align-self:start;
  max-width:555px;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.brand,
.shell[data-page="overview"][data-finalimage="true"] .final-original-dashboard-title{display:none}
.shell[data-page="overview"][data-finalimage="true"] .final-dashboard-wordmark{margin:0 0 17px;gap:4px}
.final-dashboard-wordmark strong{
  color:var(--release-green);
  font-size:48px;
  font-weight:720;
  line-height:.98;
  letter-spacing:0;
  text-shadow:0 0 22px rgba(130,244,83,.2);
}
.final-dashboard-wordmark span{
  color:#aeb8b1;
  font-size:10px;
  font-weight:700;
  letter-spacing:0;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.sub{
  max-width:462px;
  margin-top:0;
  color:#b3c0b8;
  font-size:13px;
  line-height:1.55;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row{margin-top:18px;gap:9px}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row .role-chip{display:none}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{
  position:relative;
  z-index:1;
  grid-column:1;
  grid-row:1;
  align-self:end;
  width:min(100%,650px);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .metric{
  min-height:66px;
  padding:10px 11px;
  border:1px solid rgba(152,213,172,.2);
  border-radius:7px;
  background:rgba(3,14,10,.77);
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .k{
  color:#7f8e87;
  font-size:9px;
  letter-spacing:0;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .v{
  display:block;
  margin-top:5px;
  overflow:hidden;
  color:#a7ef80;
  font-size:11px;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.shell[data-page="overview"][data-finalimage="true"] .overview-stats,
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat{
  position:relative;
  min-height:172px;
  overflow:hidden;
  padding:15px;
  border-color:rgba(152,213,172,.22);
  background:#04110d;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.2;
  background:right bottom/78% auto no-repeat;
  pointer-events:none;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .balance-stat::before{background-image:url("assets/earnings-network.png")}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .nodes-stat::before{background-image:url("assets/mycelium-network.png")}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .economy-stat::before{background-image:url("assets/earning-hero.png")}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .traffic-stat::before{background-image:url("assets/vpn-shield.png")}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat>*{position:relative;z-index:1}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(3){border-color:rgba(166,92,255,.32)}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(4){border-color:rgba(55,217,232,.3)}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-icon{width:27px;height:27px;margin-bottom:10px}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-copy{max-width:80%}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .k{color:#93a299;font-size:10px;letter-spacing:0}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .v{color:#f0f7f1;font-size:28px;line-height:1.06}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .sub{max-width:82%;font-size:11px;line-height:1.35}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart{
  right:14px;
  bottom:12px;
  width:63%;
  height:64px;
  opacity:1;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart.green{color:var(--release-green)}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart.violet{color:var(--release-purple)}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(3) .stat-chart{color:var(--release-purple)}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(4) .stat-chart{color:var(--release-cyan)}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .chart-area{opacity:.16}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .chart-line{stroke-width:2.2}
.shell[data-page="overview"][data-finalimage="true"] .module-section{margin-top:23px}
.shell[data-page="overview"][data-finalimage="true"] .module-section>.card-head{margin-bottom:11px}
.shell[data-page="overview"][data-finalimage="true"] .module-section>.card-head h2{font-size:17px}
.shell[data-page="overview"][data-finalimage="true"] .product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.shell[data-page="overview"][data-finalimage="true"] .product-card{
  position:relative;
  min-height:210px;
  padding:16px;
  overflow:hidden;
  background:#04110d;
}
.shell[data-page="overview"][data-finalimage="true"] .product-card::before{
  z-index:0;
  opacity:.64;
  background-position:right bottom;
  background-size:auto 100%;
}
.shell[data-page="overview"][data-finalimage="true"] .product-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:linear-gradient(90deg,rgba(4,17,13,.98),rgba(4,17,13,.75) 53%,rgba(4,17,13,.09));
  pointer-events:none;
}
.shell[data-page="overview"][data-finalimage="true"] .product-card.domains{border-color:rgba(55,217,232,.28)}
.shell[data-page="overview"][data-finalimage="true"] .product-card.vpn{border-color:rgba(166,92,255,.34)}
.shell[data-page="overview"][data-finalimage="true"] .product-card.earning{border-color:rgba(132,237,85,.29)}
.shell[data-page="overview"][data-finalimage="true"] .product-card>*{position:relative;z-index:1}
.shell[data-page="overview"][data-finalimage="true"] .product-card .module-head>div{max-width:73%}
.shell[data-page="overview"][data-finalimage="true"] .product-card .module-head h2{font-size:20px}
.shell[data-page="overview"][data-finalimage="true"] .product-card .module-head .sub{font-size:11px;line-height:1.42}
.shell[data-page="overview"][data-finalimage="true"] .product-card .btn-row{margin-top:auto;gap:7px}
.shell[data-page="overview"][data-finalimage="true"] .product-card .btn{min-height:32px;font-size:10px}

.shell[data-finalimage="true"] .flow-hero,
.shell[data-finalimage="true"] .earnings-flow-hero,
.shell[data-finalimage="true"] .wallets-flow-hero,
.shell[data-finalimage="true"] .payouts-flow-hero{
  min-height:184px;
  padding:20px 22px;
  border-color:rgba(152,213,172,.22);
  border-radius:var(--release-radius);
  background-color:#03100c;
  box-shadow:0 16px 35px rgba(0,0,0,.18);
}
.shell[data-finalimage="true"] .flow-hero::before{
  inset:0 0 auto auto;
  width:100%;
  max-width:720px;
  height:100%;
  max-height:220px;
  background-size:contain;
  background-position:right center;
  opacity:.76;
  filter:saturate(1.05) contrast(1.04);
}
.shell[data-finalimage="true"] .flow-hero::after{background:linear-gradient(90deg,rgba(3,12,9,.98),rgba(3,12,9,.82) 51%,rgba(3,12,9,.1))}
.shell[data-finalimage="true"] .flow-hero h1{font-size:30px;letter-spacing:0}
.shell[data-finalimage="true"] .flow-hero p{max-width:620px;color:#aabbb1;font-size:13px;line-height:1.45}
.shell[data-finalimage="true"] .flow-hero .eyebrow{color:var(--release-green);letter-spacing:0}
.shell[data-area="domains"][data-finalimage="true"] .flow-hero{border-color:rgba(55,217,232,.28)}
.shell[data-area="vpn"][data-finalimage="true"] .flow-hero{border-color:rgba(166,92,255,.32)}
.shell[data-area="earning"][data-finalimage="true"] .flow-hero{border-color:rgba(132,237,85,.28)}
.shell[data-page="profile"][data-finalimage="true"] .profile-layout,
.shell[data-page="roles"][data-finalimage="true"] .grid.cols-2,
.shell[data-page="keys"][data-finalimage="true"] .grid.cols-2,
.shell[data-page="settings"][data-finalimage="true"] .settings-layout{gap:12px}
.shell[data-page="profile"][data-finalimage="true"] .identity-card{border-color:rgba(132,237,85,.38)}
.shell[data-page="profile"][data-finalimage="true"] .session-card{border-color:rgba(166,92,255,.35)}
.shell[data-page="roles"][data-finalimage="true"] .role-flow-card.active{border-color:rgba(132,237,85,.45)}
.shell[data-page="keys"][data-finalimage="true"] .key-card{border-color:rgba(55,217,232,.3)}
.shell[data-area="domains"][data-finalimage="true"] .service-manage-card,
.shell[data-area="domains"][data-finalimage="true"] .domain-summary{border-color:rgba(166,92,255,.28)}
.shell[data-area="domains"][data-finalimage="true"] .domain-flow{gap:10px}
.shell[data-area="domains"][data-finalimage="true"] .module-toggle-grid{gap:10px}
.shell[data-area="domains"][data-finalimage="true"] .module-toggle{min-height:98px;padding:13px}
.shell[data-area="vpn"][data-finalimage="true"] .product-card.vpn,
.shell[data-page="vpn-connect"][data-finalimage="true"] .vpn-connect-layout>.card:first-child{border-color:rgba(166,92,255,.36)}

.shell[data-page="earnings"][data-finalimage="true"] .earnings-flow-hero{
  min-height:184px;
  border-color:rgba(132,237,85,.3);
}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpis{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi{
  min-height:138px;
  padding:14px;
  overflow:hidden;
}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi:nth-child(1){border-color:rgba(55,217,232,.34)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi:nth-child(2){border-color:rgba(166,92,255,.34)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi:nth-child(3){border-color:rgba(132,237,85,.34)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi .stat-chart{width:61%;height:54px;opacity:1}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi:nth-child(1) .stat-chart{color:var(--release-cyan)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi:nth-child(2) .stat-chart{color:var(--release-purple)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi:nth-child(3) .stat-chart{color:var(--release-green)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi .chart-area{opacity:.15}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-layout{grid-template-columns:minmax(0,1.55fr) minmax(300px,.68fr);gap:12px}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-chart-card{padding:16px;border-color:rgba(55,217,232,.42)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-chart{min-height:310px;background:rgba(2,16,16,.52)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-chart>.earnings-plot{height:218px}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-plot-grid{color:rgba(79,180,188,.17)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-area{fill:rgba(55,217,232,.18)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-line,
.shell[data-page="earnings"][data-finalimage="true"] .earnings-last-point{stroke:var(--release-cyan);fill:var(--release-cyan)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-point{stroke:#d5fcff;fill:#082e31}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-chart.is-empty{
  border:1px dashed rgba(55,217,232,.4);
  background:rgba(2,16,16,.72);
}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-economy-panel{border-color:rgba(132,237,85,.34)}
.shell[data-page="earnings"][data-finalimage="true"] .earnings-balance-callout{border-color:rgba(55,217,232,.36)}

.shell[data-finalimage="true"] .table-wrap,
.shell[data-finalimage="true"] table{border-color:var(--release-line)}
.shell[data-finalimage="true"] th{color:#84948b;background:rgba(4,17,13,.92);letter-spacing:0}
.shell[data-finalimage="true"] td{border-color:rgba(152,213,172,.13)}
.shell[data-finalimage="true"] .metric{border-color:rgba(152,213,172,.16)}
.shell[data-finalimage="true"] .metric .k{color:#8a9a91;letter-spacing:0}
.shell[data-finalimage="true"] .metric .v{color:#e9f6eb}

@media(max-width:1240px){
  .shell[data-finalimage="true"]{grid-template-columns:238px minmax(0,1fr)}
  .shell[data-finalimage="true"] .sidebar{width:238px;padding-inline:10px}
  .shell[data-finalimage="true"] .topbar{padding-inline:17px}
  .shell[data-finalimage="true"] .content{padding-inline:17px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{grid-template-columns:minmax(0,1fr) minmax(285px,.7fr)}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .shell[data-page="overview"][data-finalimage="true"] .product-grid{grid-template-columns:1fr}
  .shell[data-page="overview"][data-finalimage="true"] .product-card{min-height:190px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-layout{grid-template-columns:1fr}
  .route-skeleton-overview .route-skeleton-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:960px){
  .shell[data-finalimage="true"]{display:block;width:100%;max-width:100%}
  .shell[data-finalimage="true"] .sidebar{display:none}
  .shell[data-finalimage="true"] .topbar{
    min-height:64px;
    padding:7px 12px;
    background:rgba(2,10,7,.96);
  }
  .shell[data-finalimage="true"] .topbar-main{min-height:48px;gap:7px}
  .shell[data-finalimage="true"] .page-heading strong{font-size:16px}
  .shell[data-finalimage="true"] .final-page-subtitle{display:none}
  .shell[data-finalimage="true"] .content{padding:14px 12px 82px}
  .shell[data-finalimage="true"] .content{min-height:calc(100svh - 64px)}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{grid-template-columns:1fr;min-height:0}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy,
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{grid-column:1;grid-row:auto}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{align-self:auto}
  .shell[data-finalimage="true"] .flow-hero,
  .shell[data-finalimage="true"] .earnings-flow-hero,
  .shell[data-finalimage="true"] .wallets-flow-hero,
  .shell[data-finalimage="true"] .payouts-flow-hero{min-height:164px;padding:17px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-kpis{grid-template-columns:1fr}
  .route-skeleton{min-height:calc(100svh - 104px)}
  .route-skeleton-cards{grid-template-columns:1fr}
}

@media(max-width:620px){
  .shell[data-finalimage="true"] .topbar .seg,
  .shell[data-finalimage="true"] .topbar-avatar{display:none}
  .shell[data-finalimage="true"] .final-icon-button{width:34px;height:34px}
  .shell[data-finalimage="true"] .content{padding:12px 10px 78px}
  :is(.shell[data-page="overview"],.shell[data-page="earnings"])[data-finalimage="true"] #view,
  :is(.shell[data-page="overview"],.shell[data-page="earnings"])[data-finalimage="true"] #view>*{width:100%;max-width:100%;min-width:0}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{
    min-height:0;
    padding:20px 15px 14px;
    background-position:73% center;
  }
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::before{background-size:auto 76%;opacity:.18}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::after{
    background:
      linear-gradient(90deg,#020b08 0%,rgba(2,11,8,.94) 58%,rgba(2,11,8,.35) 100%),
      url("assets/dashboard-hero-hd.jpg") 72% center/auto 100% no-repeat;
  }
  .shell[data-page="overview"][data-finalimage="true"] .final-dashboard-wordmark{margin-bottom:12px}
  .final-dashboard-wordmark strong{font-size:34px}
  .final-dashboard-wordmark span{font-size:9px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.sub{font-size:12px;line-height:1.42}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row{margin-top:14px;gap:7px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row .btn{flex:1;min-width:0;padding-inline:8px;font-size:10px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{
    width:100%;
    grid-template-columns:1.25fr .9fr .9fr;
    gap:6px;
    margin-top:13px;
  }
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .metric{min-height:58px;padding:8px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .k{font-size:8px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .v{margin-top:4px;font-size:9px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat{min-height:136px;padding:12px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-icon{width:24px;height:24px;margin-bottom:10px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-copy{max-width:94%}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .k{font-size:9px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .v{font-size:22px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .sub{max-width:98%;font-size:9px}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart{right:8px;bottom:8px;width:64%;height:44px}
  .shell[data-page="overview"][data-finalimage="true"] .product-grid{grid-template-columns:1fr;gap:9px}
  .shell[data-page="overview"][data-finalimage="true"] .product-card{min-height:176px;padding:14px}
  .shell[data-page="overview"][data-finalimage="true"] .product-card .module-head h2{font-size:18px}
  .shell[data-finalimage="true"] .flow-hero,
  .shell[data-finalimage="true"] .earnings-flow-hero,
  .shell[data-finalimage="true"] .wallets-flow-hero,
  .shell[data-finalimage="true"] .payouts-flow-hero{min-height:150px;padding:14px}
  .shell[data-page="client"][data-finalimage="true"] .unified-client-flow-hero{min-height:170px;align-items:flex-end}
  .shell[data-page="client"][data-finalimage="true"] .client-hero-state{display:none}
  .shell[data-page="client"][data-finalimage="true"] .native-device-handoff code{display:none}
  .shell[data-finalimage="true"] .flow-hero h1{font-size:24px}
  .shell[data-finalimage="true"] .flow-hero p{font-size:11px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-kpis{gap:8px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi{min-height:108px;padding:11px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-kpi .stat-chart{height:44px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-chart-card{padding:12px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-chart{min-height:246px;padding-left:39px}
  .shell[data-page="earnings"][data-finalimage="true"] .earnings-chart>.earnings-plot{left:38px;width:calc(100% - 50px);height:158px}
  .shell[data-page="nodes"][data-finalimage="true"] .product-card.earning{min-height:214px}
  .route-skeleton-overview .route-skeleton-hero{height:250px}
  .route-skeleton-overview .route-skeleton-cards{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .route-skeleton-overview .route-skeleton-cards>i{height:136px}
  .route-skeleton-hero{height:150px}
  .route-skeleton-cards>i{height:108px}
  .route-skeleton-panel{height:190px}
  .shell[data-finalimage="true"] .card,
  .shell[data-finalimage="true"] .service-card{padding:13px}
  .shell[data-finalimage="true"] .table-wrap{overflow-x:auto}
}

.final-network-status{cursor:pointer}
.final-network-status:focus-visible{
  outline:2px solid var(--release-green);
  outline-offset:3px;
}
.final-network-dialog{width:min(420px,calc(100vw - 28px))}
.final-network-detail{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:72px;
  padding:14px;
  border:1px solid var(--release-line);
  border-radius:7px;
  background:rgba(3,16,12,.82);
}
.final-network-detail>i{
  width:10px;
  height:10px;
  flex:0 0 auto;
  border-radius:50%;
  background:#8c9b93;
  box-shadow:0 0 0 4px rgba(140,155,147,.12);
}
.final-network-detail.ok>i{background:var(--release-green);box-shadow:0 0 0 4px rgba(138,244,84,.13),0 0 16px rgba(138,244,84,.5)}
.final-network-detail.warn>i{background:#e3c65d;box-shadow:0 0 0 4px rgba(227,198,93,.13)}
.final-network-detail.bad>i{background:#ef796f;box-shadow:0 0 0 4px rgba(239,121,111,.13)}
.final-network-detail b{display:block;color:var(--release-text);font-size:14px}
.final-network-detail p{margin:3px 0 0;color:var(--release-muted);font-size:11px}

.shell[data-finalimage="true"] .topbar .page-heading{
  display:block!important;
  flex:0 1 430px;
  min-width:0!important;
  max-width:430px;
}
.shell[data-finalimage="true"] .topbar .page-heading>span:not(.topbar-icon){
  display:block!important;
  min-width:0;
}
.shell[data-finalimage="true"] .page-heading strong{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-manage-summary{
  min-height:218px;
  border-color:rgba(166,92,255,.34);
  background:
    linear-gradient(90deg,rgba(3,14,10,.98) 0%,rgba(3,14,10,.88) 50%,rgba(3,14,10,.18) 100%),
    url("assets/domain-hero.png") right center/58% auto no-repeat,
    #030e0a;
}
.shell[data-page="vpn"][data-finalimage="true"] .vpn-settings-card{
  border-color:rgba(55,217,232,.3);
  background:
    linear-gradient(90deg,rgba(3,14,10,.98) 0%,rgba(3,14,10,.88) 52%,rgba(3,14,10,.18) 100%),
    url("assets/vpn-connect-hero.png") right center/58% auto no-repeat,
    #030e0a;
}
@media(max-width:620px){
  .shell[data-finalimage="true"] .topbar .page-heading{
    flex:1 1 auto;
    min-width:0!important;
  }
  .shell[data-finalimage="true"] .page-heading strong{
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-manage-summary,
  .shell[data-page="vpn"][data-finalimage="true"] .vpn-settings-card{
    background-position:center,72% center,center;
    background-size:cover,auto 100%,cover;
  }
}
/* Product pass 2026-08-05: reference-density domain workspace, five-locale
   controls, and a genuinely light surface system. This final cascade is kept
   together so theme changes only repaint and never alter route geometry. */
.locale-select{
  width:auto;
  min-width:118px;
  min-height:34px;
  padding:6px 30px 6px 10px;
  border:1px solid var(--line-strong);
  border-radius:6px;
  background:var(--panel2);
  color:var(--text);
  font-size:11px;
  font-weight:650;
}
.login-preferences{display:flex;align-items:center;gap:7px}
.login-preferences .locale-select{max-width:142px}
.topbar-locale{max-width:140px}
.locale-select:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

.domain-control-head{
  position:relative;
  isolation:isolate;
  display:grid;
  grid-template-columns:minmax(300px,1fr) auto auto;
  align-items:center;
  gap:20px;
  min-height:132px;
  padding:20px 22px;
  overflow:hidden;
  border:1px solid rgba(55,217,232,.26);
  border-radius:8px;
  background:
    linear-gradient(90deg,rgba(3,14,10,.98) 0%,rgba(3,14,10,.9) 48%,rgba(3,14,10,.35) 100%),
    url("assets/domain-hero.png") right 43%/60% auto no-repeat,
    #030e0a;
  box-shadow:0 18px 44px rgba(0,0,0,.22);
}
.domain-control-head>div{position:relative;z-index:1;min-width:0}
.domain-control-head h1{font-size:27px}
.domain-control-head .eyebrow{color:var(--accent2);font-size:9px;font-weight:750;letter-spacing:.16em;text-transform:uppercase}
.domain-control-head .sub{max-width:600px;font-size:11px}
.domain-head-stats{display:grid;grid-template-columns:repeat(3,minmax(76px,1fr));gap:7px}
.domain-head-stats>span{display:grid;gap:2px;min-height:58px;padding:9px 11px;border:1px solid rgba(199,226,208,.14);border-radius:6px;background:rgba(3,14,10,.76)}
.domain-head-stats b{color:var(--accent);font-size:19px;line-height:1}
.domain-head-stats small{color:var(--muted);font-size:8px;text-transform:uppercase;letter-spacing:.08em}
.domain-head-actions{display:flex;justify-content:flex-end;gap:8px;flex-wrap:wrap}

.domain-workspace{
  display:grid;
  grid-template-columns:minmax(520px,.92fr) minmax(500px,1.08fr);
  min-height:620px;
  overflow:hidden;
  border:1px solid var(--line-strong);
  border-radius:8px;
  background:rgba(2,10,8,.86);
  box-shadow:0 20px 52px rgba(0,0,0,.24);
}
.domain-master-pane,.domain-detail-pane{min-width:0}
.domain-master-pane{border-right:1px solid var(--line);background:rgba(3,13,10,.7)}
.domain-master-toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:66px;padding:12px 14px;border-bottom:1px solid var(--line)}
.domain-master-toolbar>div{display:flex;align-items:center;gap:8px}
.domain-master-toolbar h2{font-size:15px}
.domain-search{display:grid;grid-template-columns:18px minmax(0,1fr);align-items:center;gap:6px;width:min(230px,45%);padding:0 8px;border:1px solid var(--line);border-radius:6px;background:rgba(1,8,6,.72);color:var(--muted)}
.domain-search svg{width:16px;height:16px}
.domain-search input{width:100%;min-height:34px;padding:5px 2px;border:0;background:transparent;box-shadow:none}
.domain-search:focus-within{border-color:var(--accent);box-shadow:0 0 0 2px rgba(140,232,91,.08)}
.domain-master-columns,.domain-master-row{
  display:grid;
  grid-template-columns:minmax(176px,1.55fr) minmax(98px,.8fr) minmax(120px,1fr) minmax(64px,.58fr) minmax(64px,.58fr) minmax(48px,.42fr) 18px;
  align-items:center;
  gap:9px;
}
.domain-master-columns{min-height:34px;padding:7px 12px;border-bottom:1px solid var(--line);color:var(--faint);font-size:8px;text-transform:uppercase;letter-spacing:.08em}
.domain-master-row{
  width:100%;
  min-height:74px;
  padding:10px 12px;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  background:transparent;
  color:var(--text);
  text-align:left;
  cursor:pointer;
  transition:background .16s ease,box-shadow .16s ease;
}
.domain-master-row:hover{background:rgba(55,217,232,.045)}
.domain-master-row.active{background:linear-gradient(90deg,rgba(140,232,91,.1),rgba(55,217,232,.035));box-shadow:inset 3px 0 var(--accent)}
.domain-master-row:focus-visible{position:relative;z-index:1;outline:2px solid var(--accent);outline-offset:-2px}
.domain-master-row.is-filtered{display:none}
.domain-master-identity{display:grid;grid-template-columns:32px minmax(0,1fr);align-items:center;gap:9px;min-width:0}
.domain-favicon{width:32px;height:32px;display:grid;place-items:center;padding:7px;border:1px solid rgba(55,217,232,.24);border-radius:7px;background:rgba(55,217,232,.06);color:var(--accent2)}
.domain-favicon svg{width:100%;height:100%}
.domain-master-identity>span:last-child,.domain-master-status,.domain-master-mode,.domain-master-number{display:grid;gap:3px;min-width:0}
.domain-master-identity b,.domain-master-mode b{overflow:hidden;color:var(--text);font-size:11px;text-overflow:ellipsis;white-space:nowrap}
.domain-master-row small{overflow:hidden;color:var(--muted);font-size:8px;line-height:1.3;text-overflow:ellipsis;white-space:nowrap}
.domain-master-status .badge{justify-self:start;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.domain-master-number b{font-size:12px;font-variant-numeric:tabular-nums}
.domain-master-arrow{color:var(--faint);font-size:20px;text-align:right}
.domain-no-match{padding:18px;text-align:center}

.domain-detail-pane{background:linear-gradient(155deg,rgba(9,24,18,.78),rgba(2,9,7,.92))}
.domain-detail-panel{display:grid;align-content:start;gap:12px;padding:14px}
.domain-detail-header{display:grid;grid-template-columns:minmax(220px,1fr) auto;gap:10px;align-items:center;padding-bottom:12px;border-bottom:1px solid var(--line)}
.domain-detail-title{display:grid;grid-template-columns:38px minmax(0,1fr);align-items:center;gap:10px;min-width:0}
.domain-detail-title .domain-favicon{width:38px;height:38px}
.domain-detail-title h2{overflow:hidden;font-size:18px;text-overflow:ellipsis;white-space:nowrap}
.domain-detail-title .eyebrow{color:var(--accent2);font-size:8px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}
.domain-detail-status{display:flex;justify-content:flex-end;gap:6px}
.domain-detail-actions{grid-column:1/-1;display:flex;align-items:center;gap:7px;flex-wrap:wrap}
.domain-detail-kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}
.domain-detail-kpis>div{display:grid;gap:4px;min-height:76px;padding:10px;border:1px solid var(--line);border-radius:6px;background:rgba(1,8,6,.62)}
.domain-detail-kpis span{color:var(--muted);font-size:8px;text-transform:uppercase;letter-spacing:.07em}
.domain-detail-kpis b{font-size:15px}
.domain-detail-kpis b.ok{color:var(--ok)}
.domain-detail-kpis b.warn{color:var(--warn)}
.domain-detail-kpis b.bad{color:var(--danger)}
.domain-detail-kpis small{overflow:hidden;color:var(--faint);font-size:8px;text-overflow:ellipsis;white-space:nowrap}
.domain-detail-dns{min-width:0;padding:12px;border:1px solid var(--line);border-radius:7px;background:rgba(1,8,6,.56)}
.domain-detail-dns .dns-records{margin-top:10px}
.domain-detail-config{display:grid;gap:8px}
.domain-detail-config .domain-details{margin:0;background:rgba(1,8,6,.48)}
.domain-detail-config .domain-details>summary{min-height:42px;padding:11px 12px;font-size:11px;font-weight:650}

@media(max-width:1280px){
  .domain-workspace{grid-template-columns:1fr}
  .domain-master-pane{border-right:0;border-bottom:1px solid var(--line)}
  .domain-control-head{grid-template-columns:1fr auto}
  .domain-head-actions{grid-column:1/-1;justify-content:flex-start}
}
@media(max-width:760px){
  .topbar-locale{min-width:78px;max-width:92px;padding-inline:7px 23px}
  .domain-control-head{grid-template-columns:1fr;gap:12px;min-height:0;padding:15px;background:linear-gradient(90deg,rgba(3,14,10,.96),rgba(3,14,10,.7)),url("assets/domain-hero.png") center/cover no-repeat}
  .domain-control-head h1{font-size:24px}
  .domain-head-stats{grid-template-columns:repeat(3,minmax(0,1fr));width:100%}
  .domain-head-stats>span{min-height:54px;padding:8px}
  .domain-head-actions{display:grid;grid-template-columns:1fr 1fr;width:100%}
  .domain-head-actions .btn{width:100%}
  .domain-workspace{min-height:0;border-radius:7px}
  .domain-master-toolbar{align-items:stretch;flex-direction:column}
  .domain-search{width:100%}
  .domain-master-columns{display:none}
  .domain-master-row{grid-template-columns:minmax(0,1fr) auto;gap:8px;min-height:0;padding:11px}
  .domain-master-identity{grid-column:1}
  .domain-master-status{grid-column:2;justify-items:end}
  .domain-master-mode{grid-column:1/-1;display:flex;gap:7px;min-width:0}
  .domain-master-mode>*{min-width:0;max-width:50%}
  .domain-master-number{display:inline-grid;grid-row:3}
  .domain-master-number:nth-of-type(1){grid-column:1;justify-self:start}
  .domain-master-number:nth-of-type(2),.domain-master-number:nth-of-type(3){display:none}
  .domain-master-arrow{grid-column:2;grid-row:3}
  .domain-detail-panel{padding:11px;gap:10px}
  .domain-detail-header{grid-template-columns:1fr}
  .domain-detail-status{justify-content:flex-start}
  .domain-detail-actions{display:grid;grid-template-columns:1fr 1fr}
  .domain-detail-actions .btn:first-child:last-child,.domain-detail-actions .btn.primary{grid-column:1/-1}
  .domain-detail-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}
  .domain-detail-config .cols-3{grid-template-columns:1fr}
}
@media(max-width:420px){
  .login-preferences .locale-select{min-width:144px;max-width:144px}
  .domain-head-stats small{font-size:7px}
  .domain-detail-actions{grid-template-columns:1fr}
  .domain-detail-actions .btn{grid-column:auto!important;width:100%}
}

/* Complete light theme. Artwork remains present, but every interactive and
   informational surface follows the light palette instead of forcing dark. */
:root[data-theme="light"]{
  --bg:#edf3ee;
  --panel:rgba(255,255,252,.96);
  --panel2:rgba(241,247,242,.98);
  --panel3:rgba(246,243,250,.98);
  --text:#111b16;
  --muted:#4d6256;
  --faint:#6d7e74;
  --line:rgba(27,68,43,.15);
  --line-strong:rgba(27,82,47,.27);
  --accent:#267b2d;
  --accent-strong:#1e6726;
  --accent2:#087b83;
  --violet:#6d3ca4;
  --danger:#b83239;
  --ok:#256f2a;
  --warn:#7d5b0d;
  --shadow:0 18px 44px rgba(22,47,31,.12);
}
:root[data-theme="light"] body::before{opacity:.045;filter:saturate(.7) contrast(.9)}
:root[data-theme="light"] body::after{background:linear-gradient(120deg,rgba(239,246,241,.96),rgba(249,251,247,.94) 50%,rgba(245,239,249,.9))}
:root[data-theme="light"] .auth-boot{
  background:radial-gradient(circle at 50% 42%,rgba(38,123,45,.09),transparent 34%),linear-gradient(90deg,rgba(243,249,244,.96),rgba(251,252,249,.9)),url("assets/login-hero-hd.jpg") center/cover no-repeat;
}
:root[data-theme="light"] .boot-card{color:var(--text);border-color:var(--line-strong);background:rgba(255,255,252,.93);box-shadow:var(--shadow)}
:root[data-theme="light"] .login{
  --panel:rgba(255,255,252,.97);
  --panel2:rgba(241,247,242,.98);
  --panel3:rgba(246,243,250,.98);
  --text:#111b16;
  --muted:#4d6256;
  --faint:#6d7e74;
  --line:rgba(27,68,43,.16);
  --line-strong:rgba(27,82,47,.28);
  --accent:#267b2d;
  --accent-strong:#1e6726;
  --accent2:#087b83;
  --violet:#6d3ca4;
  --danger:#b83239;
  --ok:#256f2a;
  --warn:#7d5b0d;
  color-scheme:light;
  color:var(--text);
  background:radial-gradient(circle at 74% 60%,rgba(109,60,164,.08),transparent 29%),linear-gradient(90deg,rgba(239,247,240,.96),rgba(250,252,248,.72) 48%,rgba(244,239,248,.9)),url("assets/login-hero-hd.jpg") center/cover no-repeat fixed;
}
:root[data-theme="light"] .login-card{border-color:var(--line-strong);background:linear-gradient(180deg,rgba(255,255,252,.985),rgba(243,248,244,.99));box-shadow:0 26px 82px rgba(24,55,35,.2)}
:root[data-theme="light"] .login-intro{color:var(--text);background:linear-gradient(90deg,rgba(247,251,247,.97),rgba(247,251,247,.78) 68%,rgba(247,251,247,.45)),url("assets/login-hero-hd.jpg") 70% 43%/cover no-repeat}
:root[data-theme="light"] .login-intro::after{background:linear-gradient(0deg,rgba(245,250,246,.92),transparent 70%)}
:root[data-theme="light"] .login-intro .login-copy h1{color:var(--text)}
:root[data-theme="light"] .login-intro .sub,:root[data-theme="light"] .login-intro .brand-title p{color:var(--muted)}
:root[data-theme="light"] .login-actions{background:rgba(249,252,249,.98);color:var(--text)}
:root[data-theme="light"] .login .auth-section,:root[data-theme="light"] .login details,:root[data-theme="light"] .login .authkit-item{color:var(--text);border-color:var(--line);background:rgba(255,255,252,.94)}
:root[data-theme="light"] .login .wallet-choice,:root[data-theme="light"] .login .login-actions .wallet-login-action{color:var(--text);border-color:var(--line);background:linear-gradient(180deg,rgba(255,255,252,.98),rgba(238,246,240,.98))}
:root[data-theme="light"] .login .login-actions .wallet-login-action:hover,:root[data-theme="light"] .login .login-actions .wallet-login-action:focus-visible{border-color:rgba(38,123,45,.48);background:rgba(38,123,45,.07)}
:root[data-theme="light"] .login .login-actions .wallet-login-action .injected-wallet-copy b{color:var(--text)}
:root[data-theme="light"] .login .login-actions .wallet-login-action>span:last-child{color:var(--accent)}
:root[data-theme="light"] .login .btn:not(.primary),:root[data-theme="light"] .login input,:root[data-theme="light"] .login select,:root[data-theme="light"] .login textarea{color:var(--text);border-color:var(--line-strong);background:rgba(255,255,252,.98)}
:root[data-theme="light"] .login .login-actions #authTechnical>summary{color:var(--muted)}
:root[data-theme="light"] .wallet-login-proof{color:var(--faint)}

:root[data-theme="light"] .modal-card{
  --modal-bg:#fbfdf9;
  --panel:rgba(255,255,252,.98);
  --panel2:rgba(241,247,242,.99);
  --text:#111b16;
  --muted:#4d6256;
  --faint:#6d7e74;
  --line:rgba(27,68,43,.17);
  --line-strong:rgba(27,82,47,.29);
  --accent:#267b2d;
  --accent-strong:#1e6726;
  --accent2:#087b83;
  --violet:#6d3ca4;
  --danger:#b83239;
  --ok:#256f2a;
  --warn:#7d5b0d;
  color-scheme:light;
  color:var(--text);
  border-color:var(--line-strong);
  background:var(--modal-bg);
  box-shadow:0 26px 72px rgba(22,47,31,.22);
}
:root[data-theme="light"] .modal-card p{color:var(--muted)}

:root[data-theme="light"] .sidebar,:root[data-theme="light"] .topbar,:root[data-theme="light"] .mobile-nav{background:rgba(250,253,250,.97);border-color:var(--line)}
:root[data-theme="light"] .account-panel,:root[data-theme="light"] .card,:root[data-theme="light"] .service-card,:root[data-theme="light"] .download-card,:root[data-theme="light"] .health-card,:root[data-theme="light"] .module-select-panel,:root[data-theme="light"] .module-toggle,:root[data-theme="light"] .client-pairing-primary,:root[data-theme="light"] .client-profile-form,:root[data-theme="light"] .client-profile-advanced,:root[data-theme="light"] .client-node-only,:root[data-theme="light"] .payout-wallet-card,:root[data-theme="light"] .evm-deposit-flow,:root[data-theme="light"] .deposit-card{color:var(--text);border-color:var(--line);background:var(--panel)}
:root[data-theme="light"] .flow-hero,:root[data-theme="light"] .dashboard-hero,:root[data-theme="light"] .finance-balance,:root[data-theme="light"] .domain-control-head{color:var(--text);border-color:var(--line-strong);background-color:#f7faf7;box-shadow:var(--shadow)}
:root[data-theme="light"] .flow-hero::after,:root[data-theme="light"] .dashboard-hero::before,:root[data-theme="light"] .dashboard-hero::after{background:linear-gradient(90deg,rgba(247,250,247,.98) 0%,rgba(247,250,247,.9) 56%,rgba(247,250,247,.34) 100%)}
:root[data-theme="light"] .flow-hero h1,:root[data-theme="light"] .dashboard-hero h1,:root[data-theme="light"] .flow-hero p,:root[data-theme="light"] .dashboard-hero .sub{color:var(--text);text-shadow:none}
:root[data-theme="light"] .flow-hero p,:root[data-theme="light"] .dashboard-hero .sub{color:var(--muted)}
:root[data-theme="light"] .dashboard-hero-copy>.brand .brand-title h2{color:var(--accent)}
:root[data-theme="light"] .dashboard-hero-copy h1 span{color:var(--accent)}
:root[data-theme="light"] .dashboard-hero .identity-grid,:root[data-theme="light"] .overview-stats .stat,:root[data-theme="light"] .earnings-kpi{border-color:var(--line);background:rgba(255,255,252,.88)}
:root[data-theme="light"] .product-card{border-color:var(--line-strong);background:#f6faf6}
:root[data-theme="light"] .product-card::before{opacity:.2;filter:saturate(.7) contrast(.8)}
:root[data-theme="light"] .product-card::after,:root[data-theme="light"] .product-card.domains::after,:root[data-theme="light"] .product-card.vpn::after,:root[data-theme="light"] .product-card.earning::after{background:linear-gradient(180deg,rgba(248,251,248,.34),rgba(248,251,248,.96) 72%)}
:root[data-theme="light"] .product-card h2,:root[data-theme="light"] .product-card h3,:root[data-theme="light"] .product-card .sub{color:var(--text);text-shadow:none}
:root[data-theme="light"] .product-card .sub{color:var(--muted)}
:root[data-theme="light"] .product-card .btn:not(.primary),:root[data-theme="light"] .product-card .role-chip,:root[data-theme="light"] .product-card .badge{color:var(--text);border-color:var(--line);background:rgba(255,255,252,.9)}
:root[data-theme="light"] .section-tabs,:root[data-theme="light"] .table-wrap,:root[data-theme="light"] .dns-records,:root[data-theme="light"] .domain-details,:root[data-theme="light"] .setting-row,:root[data-theme="light"] .health-list>div,:root[data-theme="light"] .deposit-facts>div,:root[data-theme="light"] .deposit-contract-grid>div,:root[data-theme="light"] .deposit-address-block{color:var(--text);border-color:var(--line);background:rgba(248,251,248,.92)}
:root[data-theme="light"] .domain-workspace{border-color:var(--line-strong);background:var(--panel);box-shadow:var(--shadow)}
:root[data-theme="light"] .domain-master-pane,:root[data-theme="light"] .domain-detail-pane{background:rgba(250,253,250,.96)}
:root[data-theme="light"] .domain-master-row.active{background:linear-gradient(90deg,rgba(38,123,45,.1),rgba(8,123,131,.035))}
:root[data-theme="light"] .domain-search,:root[data-theme="light"] .domain-detail-kpis>div,:root[data-theme="light"] .domain-detail-dns,:root[data-theme="light"] .domain-detail-config .domain-details,:root[data-theme="light"] .domain-head-stats>span{color:var(--text);border-color:var(--line);background:rgba(255,255,252,.9)}
:root[data-theme="light"] .domain-control-head{background:linear-gradient(90deg,rgba(248,251,248,.98),rgba(248,251,248,.9) 55%,rgba(248,251,248,.42)),url("assets/domain-hero.png") right 43%/60% auto no-repeat,#f7faf7}
:root[data-theme="light"] .domain-head-stats b{color:var(--accent)}
:root[data-theme="light"] input:disabled,:root[data-theme="light"] select:disabled,:root[data-theme="light"] button:disabled{color:#738178;background:#e5ece7;border-color:rgba(27,68,43,.12);opacity:.78}
:root[data-theme="light"] .alert.bad{color:#982d33;background:rgba(184,50,57,.08);border-color:rgba(184,50,57,.32)}
:root[data-theme="light"] .alert.warn{color:#6c500d;background:rgba(125,91,13,.08);border-color:rgba(125,91,13,.3)}
:root[data-theme="light"] .alert.ok{color:#1f6225;background:rgba(37,111,42,.08);border-color:rgba(37,111,42,.3)}
.topbar-logout{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:34px;padding:6px 10px;white-space:nowrap}
.topbar-logout svg{width:16px;height:16px;flex:0 0 auto}
.topbar-logout:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
:root[data-theme="light"] .topbar-logout{color:var(--text);border-color:var(--line);background:rgba(255,255,252,.92)}
@media(max-width:960px){
  .topbar-logout{width:34px;min-width:34px;padding:0}
  .topbar-logout span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
  .topbar-locale{min-width:72px;width:72px;max-width:72px}
}
@media(max-width:620px){
  .shell[data-finalimage="true"] .final-search-button,
  .shell[data-finalimage="true"] .final-notifications-button{display:none}
  .shell[data-finalimage="true"] .page-heading{flex:1 1 72px!important;max-width:none!important}
  .topbar-locale{min-width:66px;width:66px;max-width:66px;padding-left:6px;font-size:9px}
}
.domain-workspace{grid-template-columns:minmax(590px,1.08fr) minmax(480px,.92fr)}
.domain-master-columns,.domain-master-row{grid-template-columns:minmax(140px,1.5fr) minmax(78px,.78fr) minmax(92px,.96fr) minmax(52px,.52fr) minmax(52px,.52fr) minmax(38px,.38fr) 12px;gap:6px}
.domain-master-number b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
@media(max-width:1280px){.domain-workspace{grid-template-columns:1fr}}
@media(max-width:760px){
  .domain-detail-pane{order:-1;border-bottom:1px solid var(--line)}
  .domain-master-row{grid-template-columns:minmax(0,1fr) auto}
}
:root[data-theme="light"] .shell[data-finalimage="true"]{
  --release-text:#152219;
  --release-muted:#52665a;
  --release-line:rgba(26,70,43,.16);
  --release-green:#267b2d;
  --release-cyan:#087b83;
}
:root[data-theme="light"] .shell[data-finalimage="true"] .topbar{background:rgba(250,253,250,.96);border-color:var(--line);box-shadow:0 8px 24px rgba(25,54,36,.08)}
:root[data-theme="light"] .shell[data-finalimage="true"] .page-heading strong{color:var(--text)}
:root[data-theme="light"] .shell[data-finalimage="true"] .final-page-subtitle{color:var(--muted)}
:root[data-theme="light"] .shell[data-finalimage="true"] .sidebar{background:rgba(249,252,249,.97);border-color:var(--line)}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-root,
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-leaf{color:var(--muted)}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-root.active,
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-leaf.active{color:#17391f;border-color:rgba(38,123,45,.3);background:rgba(38,123,45,.1)}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-root-icon,
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-leaf-icon{color:var(--accent)}
:root[data-theme="light"] .shell[data-finalimage="true"] .account-panel{color:var(--text);border-color:var(--line);background:rgba(255,255,252,.98);box-shadow:0 -10px 28px rgba(25,54,36,.08)}
:root[data-theme="light"] .shell[data-finalimage="true"] .final-icon-button,
:root[data-theme="light"] .shell[data-finalimage="true"] .final-menu-button{color:var(--muted)}
:root[data-theme="light"] .shell[data-finalimage="true"] .topbar-locale{color:var(--text);border-color:var(--line-strong);background:rgba(255,255,252,.96)}
:root[data-theme="light"] .domain-search input{color:var(--text);background:transparent!important}

/*
 * The final-image layer is declared after the base light theme and therefore
 * used to repaint ordinary form controls black.  Keep the complete light
 * theme readable even when that presentation layer is enabled.
 */
:root[data-theme="light"] .shell[data-finalimage="true"] input,
:root[data-theme="light"] .shell[data-finalimage="true"] select,
:root[data-theme="light"] .shell[data-finalimage="true"] textarea{
  color:var(--text);
  border-color:var(--line-strong);
  background:rgba(255,255,252,.98);
}
:root[data-theme="light"] .shell[data-page="settings"] .linked-wallet-card{
  color:var(--text);
  border-color:rgba(38,123,45,.24);
  background:rgba(248,251,248,.94);
}
:root[data-theme="light"] .shell[data-page="settings"] .linked-wallet-card .btn:not(.primary){
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,252,.94);
}

/* The two-column status matrix left only a few pixels for real values. */
.shell[data-page="settings"] .health-list{grid-template-columns:1fr}
.shell[data-page="settings"] .health-list>div{
  grid-template-columns:minmax(110px,.72fr) minmax(0,1.28fr);
}
.shell[data-page="settings"] .health-list b{
  overflow:visible;
  text-overflow:clip;
  overflow-wrap:anywhere;
  white-space:normal;
  text-align:right;
}
.shell[data-page="settings"] .linked-wallets{grid-template-columns:1fr}
@media(max-width:760px){
  :root[data-theme="light"] .domain-control-head{background:linear-gradient(90deg,rgba(248,251,248,.98),rgba(248,251,248,.88) 74%,rgba(248,251,248,.68)),url("assets/domain-hero.png") 74% center/cover no-repeat,#f7faf7}
}

/* Three distinct consumer artifacts are published: Windows, universal macOS
   and Linux.  Fill the row instead of reserving an empty fourth column for the
   duplicate macOS architecture record retained in the signed manifest. */
@media(min-width:1101px){
  .shell[data-page="client"] .client-downloads-card .unified-download-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

/* Subscription terms are a first-class billing surface. The cards deliberately
   keep every monetary rule visible, including the fail-closed readiness state. */
.subscription-section{
  min-width:0;
  padding:20px;
  border:1px solid rgba(111,218,160,.24);
  border-radius:12px;
  background:
    radial-gradient(circle at 86% 4%,rgba(155,130,232,.1),transparent 27%),
    linear-gradient(145deg,rgba(9,24,17,.94),rgba(4,13,10,.9));
  box-shadow:0 18px 50px rgba(0,0,0,.2);
}
.subscription-section-head{
  display:flex;
  min-width:0;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.subscription-section-head>div{min-width:0}
.subscription-section-head h2{margin-top:3px;font-size:24px;letter-spacing:-.02em}
.subscription-section-head .sub{max-width:720px;font-size:13px;line-height:1.55}
.subscription-eyebrow{color:var(--accent);font-size:9px;font-weight:800;letter-spacing:.14em}
.subscription-section>#subscriptionReadiness{margin-top:16px}
.subscription-section>#subscriptionReadiness .mt{margin-top:6px}
.subscription-plan-grid{
  display:grid;
  min-width:0;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
.subscription-plan-card{
  position:relative;
  display:flex;
  min-width:0;
  min-height:390px;
  flex-direction:column;
  padding:17px;
  overflow:hidden;
  border:1px solid rgba(211,233,218,.14);
  border-radius:10px;
  background:linear-gradient(180deg,rgba(19,31,24,.86),rgba(7,17,12,.84));
  box-shadow:inset 0 1px rgba(255,255,255,.025);
}
.subscription-plan-card::before{
  content:"";
  position:absolute;
  inset:0 18% auto;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(111,218,160,.52),transparent);
}
.subscription-plan-card[data-subscription-plan="growth"]::before,
.subscription-plan-card[data-subscription-plan="custom"]::before{background:linear-gradient(90deg,transparent,rgba(155,130,232,.55),transparent)}
.subscription-plan-card.is-current{
  border-color:rgba(111,218,160,.48);
  background:linear-gradient(180deg,rgba(21,48,33,.9),rgba(7,20,13,.9));
  box-shadow:0 12px 34px rgba(0,0,0,.2),inset 0 0 0 1px rgba(111,218,160,.08);
}
.subscription-plan-head{display:flex;min-width:0;align-items:flex-start;justify-content:space-between;gap:8px}
.subscription-plan-head>div{min-width:0}
.subscription-plan-head>.badge{max-width:55%;flex:0 1 auto;white-space:normal;text-align:right;overflow-wrap:anywhere}
.subscription-tier{display:block;color:var(--text);font-size:15px;font-weight:760}
.subscription-price{display:flex;align-items:baseline;gap:6px;margin-top:6px}
.subscription-price b{font-size:32px;line-height:1;font-weight:780;letter-spacing:-.04em}
.subscription-price small{color:var(--muted);font-size:10px}
.subscription-plan-copy{min-height:48px;margin-top:13px;color:var(--muted);font-size:11px;line-height:1.5}
.subscription-plan-facts{display:grid;gap:0;margin:13px 0 14px;border-top:1px solid var(--line)}
.subscription-plan-facts>div{
  display:grid;
  min-width:0;
  grid-template-columns:auto minmax(0,1fr);
  gap:9px;
  align-items:start;
  padding:9px 0;
  border-bottom:1px solid rgba(211,233,218,.09);
}
.subscription-plan-facts b{color:var(--text);font-size:11px;line-height:1.35;white-space:nowrap}
.subscription-plan-facts span{min-width:0;color:var(--muted);font-size:9px;line-height:1.4;overflow-wrap:anywhere}
.subscription-plan-usage{margin:-4px 0 12px;color:var(--accent);font-size:9px;line-height:1.4}
.subscription-plan-card>.btn{width:100%;min-height:38px;margin-top:auto}
.subscription-policy{
  display:flex;
  min-width:0;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:14px;
  padding:13px 15px;
  border:1px solid rgba(240,166,77,.24);
  border-radius:9px;
  background:rgba(240,166,77,.055);
}
.subscription-policy>div{min-width:0}
.subscription-policy b{font-size:12px}
.subscription-policy p{max-width:840px;margin-top:3px;color:var(--muted);font-size:10px;line-height:1.5}
.subscription-policy>span{flex:0 0 auto;color:var(--accent2);font:750 10px/1.3 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;white-space:nowrap}

@media(max-width:1320px){
  .subscription-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .subscription-plan-card{min-height:365px}
}
@media(max-width:760px){
  .subscription-section{padding:15px;border-radius:10px}
  .subscription-section-head{align-items:flex-start}
  .subscription-section-head h2{font-size:21px}
  .subscription-plan-grid{grid-template-columns:1fr;gap:10px}
  .subscription-plan-card{min-height:0;padding:15px}
  .subscription-plan-copy{min-height:0}
  .subscription-policy{align-items:flex-start;flex-direction:column;gap:8px}
}
@media(max-width:440px){
  .subscription-section-head{flex-direction:column;gap:9px}
  .subscription-plan-head>.badge{max-width:55%}
  .subscription-price b{font-size:29px}
  .subscription-plan-facts>div{grid-template-columns:minmax(62px,auto) minmax(0,1fr)}
  .subscription-policy>span{white-space:normal}
}

:root[data-theme="light"] .subscription-section{
  color:var(--text);
  border-color:rgba(38,123,69,.2);
  background:
    radial-gradient(circle at 86% 4%,rgba(98,83,179,.08),transparent 28%),
    linear-gradient(145deg,rgba(255,255,252,.98),rgba(239,247,241,.96));
  box-shadow:0 18px 48px rgba(25,55,36,.08);
}
:root[data-theme="light"] .subscription-plan-card{
  color:var(--text);
  border-color:rgba(35,63,49,.14);
  background:rgba(255,255,252,.92);
  box-shadow:0 10px 28px rgba(25,55,36,.055),inset 0 1px #fff;
}
:root[data-theme="light"] .subscription-plan-card.is-current{
  border-color:rgba(38,123,69,.4);
  background:linear-gradient(180deg,#f7fcf8,#edf7ef);
  box-shadow:0 12px 30px rgba(25,75,42,.09),inset 0 0 0 1px rgba(38,123,69,.05);
}
:root[data-theme="light"] .subscription-plan-facts>div{border-color:rgba(35,63,49,.09)}
:root[data-theme="light"] .subscription-policy{border-color:rgba(166,106,25,.25);background:rgba(166,106,25,.055)}

/* Final-image overview has stronger selectors than the base theme. Keep this
   override last so explicit light mode never inherits its black presentation
   tiles while retaining the same stable layout and high-resolution artwork. */
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{
  color:var(--text);
  border-color:rgba(35,92,54,.18);
  background:#f7faf7;
  box-shadow:0 18px 42px rgba(25,55,36,.09);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::before{
  opacity:.09;
  background:url("assets/mycelium-network.png") right bottom/62% auto no-repeat;
  filter:saturate(.62) contrast(.84);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero::after{
  opacity:1;
  background:
    linear-gradient(90deg,rgba(247,250,247,1) 0%,rgba(247,250,247,.98) 43%,rgba(247,250,247,.84) 67%,rgba(247,250,247,.62) 100%),
    url("assets/dashboard-hero-hd.jpg") right center/cover no-repeat;
  filter:saturate(.72) contrast(.9);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .final-dashboard-wordmark strong{
  color:#256e2b;
  text-shadow:none;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .final-dashboard-wordmark span,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.sub{
  color:var(--muted);
  text-shadow:none;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .metric{
  color:var(--text);
  border-color:rgba(35,92,54,.16);
  background:rgba(255,255,252,.88);
  box-shadow:0 8px 24px rgba(25,55,36,.055);
  backdrop-filter:blur(12px);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .k{
  color:#53685b;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid .v{
  color:#215f28;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat{
  color:var(--text);
  border-color:rgba(35,92,54,.16);
  background:rgba(255,255,252,.96);
  box-shadow:0 11px 30px rgba(25,55,36,.065);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(3){
  border-color:rgba(98,69,160,.2);
  background:linear-gradient(145deg,rgba(255,255,252,.98),rgba(247,244,252,.94));
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(4){
  border-color:rgba(8,123,131,.2);
  background:linear-gradient(145deg,rgba(255,255,252,.98),rgba(239,249,249,.94));
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat::before{
  opacity:.075;
  filter:saturate(.55) contrast(.8);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .k,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .sub{
  color:var(--muted);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat .v{
  color:var(--text);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart.green,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .nodes-stat .stat-chart{
  color:#267b2d;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat-chart.violet,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(3) .stat-chart{
  color:#6245a0;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .dashboard-reference-stats .stat:nth-child(4) .stat-chart{
  color:#087b83;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .module-section>.card-head{
  border-color:rgba(35,92,54,.12);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card.domains,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card.vpn,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card.earning{
  color:var(--text);
  border-color:rgba(35,92,54,.17);
  background:#f6faf6;
  box-shadow:0 12px 30px rgba(25,55,36,.065);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card::before{
  opacity:.16;
  filter:saturate(.55) contrast(.78);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card::after,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card.domains::after,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card.vpn::after,
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card.earning::after{
  background:linear-gradient(90deg,rgba(247,251,247,.99) 0%,rgba(247,251,247,.9) 57%,rgba(247,251,247,.58) 100%);
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card h2{
  color:var(--text);
  text-shadow:none;
}
:root[data-theme="light"] .shell[data-page="overview"][data-finalimage="true"] .product-card .module-head .sub{
  color:var(--muted);
  text-shadow:none;
}

@media(max-width:960px){
  .shell[data-finalimage="true"]{
    display:grid;
    grid-template-columns:minmax(0,1fr);
  }
  .shell[data-finalimage="true"] .sidebar{
    position:relative;
    top:auto;
    z-index:1;
    display:flex!important;
    width:100%;
    height:auto;
    min-height:0;
    max-height:none;
    padding:12px 12px 14px;
    gap:9px;
    overflow:visible;
    border-right:0;
    border-bottom:1px solid var(--release-line);
    background:rgba(2,10,7,.98);
    box-shadow:0 12px 30px rgba(0,0,0,.16);
  }
  .shell[data-finalimage="true"] .sidebar-brand{
    height:52px;
    min-height:52px;
    margin:0;
    padding:0 2px 9px;
    grid-template-columns:39px minmax(0,1fr);
    gap:9px;
  }
  .shell[data-finalimage="true"] .sidebar-brand .brand-mark,
  .shell[data-finalimage="true"] .sidebar-brand .brand-mark img{width:38px;height:38px}
  .shell[data-finalimage="true"] .sidebar-brand .brand-title h2{font-size:14px}
  .shell[data-finalimage="true"] .tree-nav{
    display:grid;
    width:100%;
    gap:7px;
    padding:0;
  }
  .shell[data-finalimage="true"] .tree-group{
    padding:0 0 7px;
    border-bottom:1px solid rgba(152,213,172,.14);
  }
  .shell[data-finalimage="true"] .tree-root{
    grid-template-columns:21px minmax(0,1fr) 8px;
    min-height:35px;
    padding:5px 7px;
    gap:8px;
  }
  .shell[data-finalimage="true"] .tree-root-icon{width:20px;height:20px}
  .shell[data-finalimage="true"] .tree-label{font-size:11px;letter-spacing:.01em}
  .shell[data-finalimage="true"] .tree-children,
  .shell[data-finalimage="true"] .final-tree-children{
    display:grid!important;
    gap:2px;
    margin:3px 0 0 11px;
    padding:0 0 0 9px;
  }
  .shell[data-finalimage="true"] .tree-leaf{
    grid-template-columns:20px minmax(0,1fr);
    min-height:32px;
    padding:5px 7px;
    gap:8px;
    font-size:12px;
    line-height:1.25;
  }
  .shell[data-finalimage="true"] .tree-leaf-icon{width:18px;height:18px}
  .shell[data-finalimage="true"] .sidebar .spacer{display:none}
  .shell[data-finalimage="true"] .account-panel{
    position:relative;
    bottom:auto;
    width:100%;
    margin:2px 0 0;
    box-shadow:none;
  }
  .shell[data-finalimage="true"] .content{padding-bottom:28px}
  .shell[data-finalimage="true"] .mobile-nav{display:none!important}
}

@media(min-width:621px) and (max-width:960px){
  .shell[data-finalimage="true"] .tree-nav{
    grid-template-columns:repeat(2,minmax(0,1fr));
    align-items:start;
    column-gap:14px;
  }
  .shell[data-finalimage="true"] .tree-group:last-child{border-bottom:1px solid rgba(152,213,172,.14)}
  .shell[data-finalimage="true"] .account-panel{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:10px}
  .shell[data-finalimage="true"] .account-panel .btn-row,
  .shell[data-finalimage="true"] .account-panel .btn{margin:0}
}

:root[data-theme="light"] .shell[data-finalimage="true"] .sidebar{
  color:var(--text);
  border-color:rgba(34,93,53,.2);
  background:linear-gradient(180deg,rgba(251,254,252,.99),rgba(241,248,243,.99));
  box-shadow:0 12px 30px rgba(25,54,36,.08);
}
:root[data-theme="light"] .shell[data-finalimage="true"] .sidebar-brand,
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-group{border-color:rgba(34,93,53,.15)}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-root{
  color:#334b3b;
  background:rgba(255,255,252,.42);
}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-root:hover,
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-root.active{
  color:#17391f;
  border-color:rgba(38,123,45,.3);
  background:rgba(38,123,45,.1)!important;
}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-root-icon,
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-leaf-icon{
  color:#267b2d;
  border-color:rgba(38,123,45,.18);
  background:rgba(38,123,45,.055);
}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-caret{border-left-color:#52685a}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-children,
:root[data-theme="light"] .shell[data-finalimage="true"] .final-tree-children{border-left-color:rgba(38,123,45,.2)}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-leaf{
  color:#40594a;
  background:rgba(255,255,252,.3);
}
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-leaf:hover,
:root[data-theme="light"] .shell[data-finalimage="true"] .tree-leaf.active{
  color:#17391f;
  border-color:rgba(38,123,45,.32);
  background:linear-gradient(90deg,rgba(38,123,45,.14),rgba(38,123,45,.055));
  box-shadow:inset 3px 0 #267b2d;
}
:root[data-theme="light"] .shell[data-finalimage="true"] .account-panel{
  color:var(--text);
  border-color:rgba(34,93,53,.2);
  background:rgba(255,255,252,.96);
}

/* Cabinet acceptance pass: the drawer is a complete navigation surface and
   explicit light mode must repaint every final-image Client slab. Keep these
   selectors last because both components live in the high-specificity layer. */

:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-hero-modules span{
  color:var(--text);
  border-color:rgba(38,123,45,.24);
  background:rgba(255,255,252,.9);
  box-shadow:0 5px 16px rgba(25,55,36,.05);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-hero-state{
  color:var(--text);
  border-color:rgba(8,123,131,.24);
  background:rgba(255,255,252,.9);
  box-shadow:0 8px 24px rgba(25,55,36,.06);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-profile-card{
  color:var(--text);
  border-color:rgba(109,60,164,.2);
  background:linear-gradient(135deg,rgba(109,60,164,.055),transparent 42%),rgba(255,255,252,.97);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-pairing-primary,
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-profile-form,
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-profile-advanced,
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-node-only,
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .connection-steps>div{
  color:var(--text);
  border-color:var(--line);
  background:rgba(248,251,248,.96);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .unified-client-card{
  color:var(--text);
  border-color:rgba(var(--platform-rgb),.28);
  background:linear-gradient(180deg,rgba(var(--platform-rgb),.065),transparent 52%),rgba(255,255,252,.97);
  box-shadow:inset 0 1px #fff,0 12px 28px rgba(25,55,36,.07);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .unified-client-card .download-tags span,
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-module-line span{
  color:var(--accent);
  border-color:var(--line);
  background:rgba(247,251,247,.96);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-download-next-step{
  color:var(--text);
  border-color:rgba(38,123,45,.28);
  background:rgba(38,123,45,.065);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .client-download-next-icon{
  color:var(--accent);
  background:rgba(38,123,45,.09);
}
:root[data-theme="light"] .shell[data-page="client"][data-finalimage="true"] .download-page .unified-client-card .download-platform-icon{
  background:rgba(var(--platform-rgb),.07);
  box-shadow:inset 0 0 14px rgba(var(--platform-rgb),.04),0 8px 20px rgba(25,55,36,.06);
}

/* Hostnames and factual metrics are allowed to grow vertically. No value is
   intentionally replaced by an ellipsis on the desktop master/detail board. */
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-identity b,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-identity small,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-number b,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-number small,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-title h2,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-title p,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis b,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis small{
  max-width:100%;
  overflow:visible;
  text-overflow:clip;
  overflow-wrap:anywhere;
  white-space:normal;
}

.safe-marketplace-page{display:grid;gap:16px}
.safe-marketplace-hero{position:relative;display:grid;grid-template-columns:minmax(0,1fr) minmax(268px,360px);gap:24px;align-items:center;min-height:224px;overflow:hidden;border-color:rgba(55,217,232,.33);background:linear-gradient(108deg,rgba(2,15,16,.98),rgba(4,25,25,.91) 54%,rgba(20,48,53,.68)),url("assets/domain-hero.png") right center/52% auto no-repeat,#03100f;isolation:isolate}
.safe-marketplace-hero::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 75% 18%,rgba(55,217,232,.18),transparent 33%),linear-gradient(135deg,transparent 60%,rgba(117,95,255,.1))}
.safe-marketplace-hero .eyebrow{color:#59e6f2;font-size:10px;font-weight:780;letter-spacing:.14em;text-transform:uppercase}
.safe-marketplace-hero h1{margin:7px 0 0;color:#f0fff9;font-size:31px;line-height:1.08;letter-spacing:-.03em}
.safe-marketplace-hero .sub{max-width:630px;margin:9px 0 0;color:#b6cac6;font-size:13px;line-height:1.55}
.safe-marketplace-state{display:grid;grid-template-columns:42px minmax(0,1fr);gap:11px;align-items:start;padding:15px;border:1px solid rgba(240,166,77,.38);border-radius:10px;background:linear-gradient(145deg,rgba(240,166,77,.14),rgba(7,18,19,.8));box-shadow:inset 0 1px rgba(255,255,255,.05),0 14px 34px rgba(0,0,0,.18)}
.safe-marketplace-state>span{display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(55,217,232,.34);border-radius:9px;color:#58e6f0;background:rgba(55,217,232,.08)}
.safe-marketplace-state svg{width:23px;height:23px}
.safe-marketplace-state b{display:block;color:#fff3df;font-size:12px;line-height:1.28}
.safe-marketplace-state p{margin:4px 0 0;color:#c9beb0;font-size:10px;line-height:1.48}
.safe-marketplace-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.safe-marketplace-panel{display:flex;flex-direction:column;min-height:188px;padding:18px;background:linear-gradient(140deg,rgba(10,27,27,.98),rgba(3,13,12,.98));box-shadow:inset 0 1px rgba(255,255,255,.035),0 12px 28px rgba(0,0,0,.12)}
.safe-marketplace-panel .card-head{gap:12px}
.safe-marketplace-panel .card-head>div{min-width:0}
.safe-marketplace-panel .card-head>.badge{flex:0 0 auto;max-width:none;white-space:nowrap}
.safe-marketplace-panel h2,.safe-marketplace-requirements h2,.safe-auction-empty h2{font-size:17px;line-height:1.2}
.safe-marketplace-panel .sub,.safe-marketplace-requirements .sub,.safe-auction-empty .sub{font-size:11px;line-height:1.52}
.safe-marketplace-closed{border-color:rgba(240,166,77,.34)}
.safe-marketplace-existing{border-color:rgba(55,217,232,.31);background:linear-gradient(145deg,rgba(55,217,232,.1),rgba(4,17,16,.98) 55%)}
.safe-marketplace-existing .btn{align-self:flex-start;margin-top:auto}
.safe-marketplace-existing .btn svg{width:15px;height:15px}
.safe-marketplace-closed-row{display:grid;grid-template-columns:30px minmax(0,1fr);gap:10px;align-items:start;margin-top:auto;padding:11px 0 0;border-top:1px solid rgba(240,166,77,.18);color:#c5b8aa}
.safe-marketplace-closed-row>span{display:grid;place-items:center;width:30px;height:30px;border:1px solid rgba(240,166,77,.23);border-radius:7px;color:#f0a64d;background:rgba(240,166,77,.07)}
.safe-marketplace-closed-row svg{width:16px;height:16px}
.safe-marketplace-closed-row p{margin:0;font-size:10px;line-height:1.48}
.safe-marketplace-requirements{padding:18px;border-color:rgba(55,217,232,.24);background:linear-gradient(135deg,rgba(55,217,232,.055),transparent 44%),rgba(3,13,12,.97)}
.safe-marketplace-checks{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:14px 0 0;padding:0;list-style:none;counter-reset:none}
.safe-marketplace-checks li{display:grid;grid-template-columns:26px minmax(0,1fr);gap:8px;align-items:start;padding:10px;border:1px solid rgba(126,199,194,.15);border-radius:8px;background:rgba(2,12,11,.38)}
.safe-marketplace-checks li>span{display:grid;place-items:center;width:26px;height:26px;border:1px solid rgba(55,217,232,.3);border-radius:50%;color:#57e1eb;background:rgba(55,217,232,.08);font-size:10px;font-weight:760}
.safe-marketplace-checks p{margin:3px 0 0;color:#b9c8c2;font-size:10px;line-height:1.45}
.safe-auction-hero{border-color:rgba(166,92,255,.35);background:linear-gradient(108deg,rgba(13,7,24,.98),rgba(21,12,38,.91) 54%,rgba(39,25,65,.68)),url("assets/domain-shield.png") right 9% center/300px auto no-repeat,#110a1e}
.safe-auction-hero::before{background:radial-gradient(circle at 75% 18%,rgba(166,92,255,.22),transparent 34%),linear-gradient(135deg,transparent 60%,rgba(55,217,232,.08))}
.safe-auction-hero .eyebrow{color:#cf8dff}
.safe-auction-hero .safe-marketplace-state{border-color:rgba(166,92,255,.35);background:linear-gradient(145deg,rgba(166,92,255,.15),rgba(17,11,29,.84))}
.safe-auction-hero .safe-marketplace-state>span{border-color:rgba(201,137,255,.36);color:#d59cff;background:rgba(166,92,255,.09)}
.safe-auction-empty{display:grid;grid-template-columns:48px minmax(0,1fr) auto;gap:14px;align-items:center;min-height:116px;padding:18px;border-color:rgba(240,166,77,.3);background:linear-gradient(135deg,rgba(240,166,77,.075),transparent 45%),rgba(8,15,15,.98)}
.safe-auction-empty-icon{display:grid;place-items:center;width:48px;height:48px;border:1px solid rgba(166,92,255,.33);border-radius:10px;color:#d399ff;background:rgba(166,92,255,.09)}
.safe-auction-empty-icon svg{width:25px;height:25px}
.safe-name-search-form{display:grid;gap:9px;margin-top:auto}
.safe-name-search-form>label{color:#d9efe8;font-size:10px;font-weight:760;letter-spacing:.06em;text-transform:uppercase}
.safe-name-input{display:flex;align-items:center;gap:8px;min-width:0;padding:4px 10px 4px 12px;border:1px solid rgba(55,217,232,.28);border-radius:8px;background:rgba(1,11,10,.58);box-shadow:inset 0 1px rgba(255,255,255,.04)}
.safe-name-input:focus-within{border-color:rgba(91,230,242,.72);box-shadow:0 0 0 3px rgba(55,217,232,.12)}
.safe-name-input input{min-width:0;flex:1;border:0!important;outline:0!important;color:#effff9;background:transparent!important;font:inherit;font-size:13px;line-height:1.4}
.safe-name-input input::placeholder{color:#829c95;opacity:1}
.safe-name-input>span{flex:0 0 auto;color:#59e6f2;font-family:var(--mono,ui-monospace,SFMono-Regular,Menlo,monospace);font-size:11px;font-weight:760}
.safe-name-search-actions{display:grid;grid-template-columns:auto minmax(0,1fr);gap:10px;align-items:center}
.safe-name-search-actions .btn{white-space:nowrap}
.safe-name-search-actions .btn svg{width:15px;height:15px}
.safe-name-search-actions .tiny{margin:0;overflow-wrap:anywhere}
.safe-availability-panel{border-color:rgba(55,217,232,.34);background:linear-gradient(145deg,rgba(55,217,232,.095),rgba(3,15,14,.97) 62%)}
.safe-evidence-facts{display:grid;gap:9px;margin:14px 0 0;padding:0}
.safe-evidence-facts>div{display:grid;grid-template-columns:124px minmax(0,1fr);gap:10px;padding-top:9px;border-top:1px solid rgba(126,199,194,.14)}
.safe-evidence-facts dt{color:#63e5ed;font-size:9px;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.safe-evidence-facts dd{margin:0;color:#b8c9c2;font-size:10px;line-height:1.48;overflow-wrap:anywhere}
.safe-purchase-intent{padding:18px;border-color:rgba(240,166,77,.32);background:linear-gradient(125deg,rgba(240,166,77,.09),transparent 44%),rgba(5,15,14,.98)}
.safe-purchase-intent .eyebrow{color:#f2b15f;font-size:9px;font-weight:800;letter-spacing:.13em}
.safe-purchase-intent h2{margin:5px 0 0;font-size:18px;line-height:1.2}
.safe-intent-grid{display:grid;grid-template-columns:minmax(180px,.72fr) minmax(0,1.4fr) auto;gap:14px;align-items:center;margin-top:14px}
.safe-intent-candidate{display:grid;gap:5px;padding:11px;border:1px solid rgba(240,166,77,.2);border-radius:8px;background:rgba(1,10,9,.4)}
.safe-intent-candidate>span{color:#f0ba74;font-size:9px;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.safe-intent-candidate>b{color:#fff1dc;font-size:11px;line-height:1.45;overflow-wrap:anywhere}
.safe-intent-grid>div:nth-child(2)>b{display:block;color:#d8e4de;font-size:11px;line-height:1.48}
.safe-intent-grid .tiny{margin:5px 0 0;line-height:1.42}
.safe-purchase-intent .btn[disabled],.safe-auction-bid .btn[disabled]{min-width:190px;justify-content:center;cursor:not-allowed;opacity:.72;color:#b5aaa0;border-color:rgba(240,166,77,.28);background:rgba(240,166,77,.07)}
.safe-purchase-intent .btn[disabled] svg,.safe-auction-bid .btn[disabled] svg{width:15px;height:15px;color:#eeb46c}
.safe-native-handoff{padding:18px;border-color:rgba(55,217,232,.3);background:linear-gradient(125deg,rgba(55,217,232,.075),transparent 45%),rgba(4,15,15,.98)}
.safe-native-handoff-grid{display:grid;grid-template-columns:minmax(190px,.72fr) minmax(0,1.4fr) auto;gap:14px;align-items:center;margin-top:14px}
.safe-native-handoff-candidate{display:grid;gap:5px;padding:11px;border:1px solid rgba(55,217,232,.2);border-radius:8px;background:rgba(1,10,9,.4)}
.safe-native-handoff-candidate>span{color:#61e3ed;font-size:9px;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.safe-native-handoff-candidate>b{color:#e5fbf8;font-size:11px;line-height:1.45;overflow-wrap:anywhere}
.safe-native-handoff-grid>.tiny{margin:0;line-height:1.48}
.safe-native-handoff .btn{min-width:198px;justify-content:center}
.safe-native-handoff .btn svg{width:15px;height:15px}
.safe-native-handoff .btn[disabled]{cursor:not-allowed;opacity:.72;color:#9faaa6;border-color:rgba(55,217,232,.22);background:rgba(55,217,232,.055)}
.safe-auction-lot{border-color:rgba(166,92,255,.34);background:linear-gradient(145deg,rgba(166,92,255,.105),rgba(13,9,23,.98) 64%)}
.safe-auction-bid{border-color:rgba(240,166,77,.3);background:linear-gradient(145deg,rgba(240,166,77,.075),rgba(12,10,17,.98) 66%)}
.safe-auction-empty-row{display:grid;grid-template-columns:30px minmax(0,1fr);gap:10px;align-items:start;margin-top:auto;padding-top:11px;border-top:1px solid rgba(201,137,255,.2);color:#d1bfdd}
.safe-auction-empty-row>span{display:grid;place-items:center;width:30px;height:30px;border:1px solid rgba(201,137,255,.28);border-radius:7px;color:#d79eff;background:rgba(166,92,255,.09)}
.safe-auction-empty-row svg{width:16px;height:16px}
.safe-auction-empty-row p,.safe-auction-bid-detail p{margin:0;font-size:10px;line-height:1.48}
.safe-auction-bid-detail{margin-top:auto;padding:11px 0;border-top:1px solid rgba(240,166,77,.18)}
.safe-auction-bid-detail p{color:#d9cdbd}
.safe-auction-bid-detail small{display:block;margin-top:5px;color:#a99f93;font-size:9px;line-height:1.42}
.safe-auction-bid .btn{align-self:flex-start;margin-top:11px}
:root[data-theme="light"] .safe-marketplace-hero{color:var(--text);border-color:rgba(8,123,131,.29);background:linear-gradient(105deg,rgba(249,253,252,.98),rgba(243,250,249,.94) 57%,rgba(224,246,244,.76)),url("assets/domain-hero.png") right center/52% auto no-repeat,#f7fbfa;box-shadow:var(--shadow)}
:root[data-theme="light"] .safe-marketplace-hero::before{background:radial-gradient(circle at 75% 18%,rgba(8,123,131,.12),transparent 33%)}
:root[data-theme="light"] .safe-marketplace-hero h1{color:#173b35}
:root[data-theme="light"] .safe-marketplace-hero .sub{color:#48665f}
:root[data-theme="light"] .safe-marketplace-state{border-color:rgba(189,118,27,.33);background:linear-gradient(145deg,rgba(255,247,232,.93),rgba(245,250,248,.92));box-shadow:0 10px 24px rgba(24,74,62,.07)}
:root[data-theme="light"] .safe-marketplace-state b{color:#5b3f18}
:root[data-theme="light"] .safe-marketplace-state p{color:#685943}
:root[data-theme="light"] .safe-marketplace-panel,:root[data-theme="light"] .safe-marketplace-requirements,:root[data-theme="light"] .safe-auction-empty{color:var(--text);background:rgba(255,255,252,.97);box-shadow:var(--shadow)}
:root[data-theme="light"] .safe-marketplace-page .badge:not(.ok):not(.warn):not(.bad){color:#265349;border-color:rgba(8,123,131,.28);background:rgba(238,249,247,.94)}
:root[data-theme="light"] .safe-marketplace-closed{border-color:rgba(189,118,27,.28)}
:root[data-theme="light"] .safe-marketplace-existing{border-color:rgba(8,123,131,.26);background:linear-gradient(145deg,rgba(8,123,131,.07),rgba(255,255,252,.98) 58%)}
:root[data-theme="light"] .safe-marketplace-closed-row{color:#5a615b;border-color:rgba(189,118,27,.18)}
:root[data-theme="light"] .safe-marketplace-checks li{border-color:rgba(34,93,53,.16);background:rgba(247,251,248,.94)}
:root[data-theme="light"] .safe-marketplace-checks p{color:#4d6456}
:root[data-theme="light"] .safe-name-search-form>label{color:#235f57}
:root[data-theme="light"] .safe-name-input{border-color:rgba(8,123,131,.28);background:rgba(247,252,251,.96);box-shadow:inset 0 1px #fff}
:root[data-theme="light"] .safe-name-input input{color:#173b35!important}
:root[data-theme="light"] .safe-name-input input::placeholder{color:#6a877f}
:root[data-theme="light"] .safe-name-input>span{color:#087b83}
:root[data-theme="light"] .safe-availability-panel{border-color:rgba(8,123,131,.27);background:linear-gradient(145deg,rgba(8,123,131,.07),rgba(255,255,252,.98) 61%)}
:root[data-theme="light"] .safe-evidence-facts>div{border-color:rgba(34,93,53,.14)}
:root[data-theme="light"] .safe-evidence-facts dt{color:#08717a}
:root[data-theme="light"] .safe-evidence-facts dd{color:#47655e}
:root[data-theme="light"] .safe-purchase-intent{border-color:rgba(189,118,27,.27);background:linear-gradient(125deg,rgba(255,224,177,.34),transparent 44%),rgba(255,255,252,.98);box-shadow:var(--shadow)}
:root[data-theme="light"] .safe-purchase-intent .eyebrow{color:#9a641b}
:root[data-theme="light"] .safe-intent-candidate{border-color:rgba(189,118,27,.2);background:rgba(255,250,241,.96)}
:root[data-theme="light"] .safe-intent-candidate>span{color:#9a641b}
:root[data-theme="light"] .safe-intent-candidate>b{color:#5b3f18}
:root[data-theme="light"] .safe-intent-grid>div:nth-child(2)>b{color:#485a52}
:root[data-theme="light"] .safe-purchase-intent .btn[disabled],:root[data-theme="light"] .safe-auction-bid .btn[disabled]{color:#6d604f;border-color:rgba(189,118,27,.27);background:rgba(255,247,232,.9)}
:root[data-theme="light"] .safe-native-handoff{border-color:rgba(8,123,131,.27);background:linear-gradient(125deg,rgba(8,123,131,.065),transparent 45%),rgba(255,255,252,.98);box-shadow:var(--shadow)}
:root[data-theme="light"] .safe-native-handoff-candidate{border-color:rgba(8,123,131,.2);background:rgba(241,251,250,.96)}
:root[data-theme="light"] .safe-native-handoff-candidate>span{color:#08717a}
:root[data-theme="light"] .safe-native-handoff-candidate>b{color:#1b4b42}
:root[data-theme="light"] .safe-native-handoff .btn[disabled]{color:#516a64;border-color:rgba(8,123,131,.23);background:rgba(238,249,247,.92)}
:root[data-theme="light"] .safe-auction-lot{border-color:rgba(109,60,164,.26);background:linear-gradient(145deg,rgba(109,60,164,.065),rgba(255,255,252,.98) 62%)}
:root[data-theme="light"] .safe-auction-bid{border-color:rgba(189,118,27,.26);background:linear-gradient(145deg,rgba(255,224,177,.26),rgba(255,255,252,.98) 64%)}
:root[data-theme="light"] .safe-auction-empty-row{border-color:rgba(109,60,164,.17);color:#5d506b}
:root[data-theme="light"] .safe-auction-empty-row>span{border-color:rgba(109,60,164,.24);color:#6d3ca4;background:rgba(109,60,164,.06)}
:root[data-theme="light"] .safe-auction-bid-detail{border-color:rgba(189,118,27,.17)}
:root[data-theme="light"] .safe-auction-bid-detail p{color:#605643}
:root[data-theme="light"] .safe-auction-bid-detail small{color:#766d60}
:root[data-theme="light"] .safe-auction-hero{background:linear-gradient(105deg,rgba(253,250,255,.98),rgba(248,244,255,.94) 57%,rgba(239,231,252,.8)),url("assets/domain-shield.png") right 9% center/300px auto no-repeat,#faf7ff}
:root[data-theme="light"] .safe-auction-hero .safe-marketplace-state{border-color:rgba(109,60,164,.25);background:linear-gradient(145deg,rgba(251,247,255,.96),rgba(246,250,249,.94))}
:root[data-theme="light"] .safe-auction-empty{border-color:rgba(189,118,27,.26);background:linear-gradient(135deg,rgba(255,244,223,.55),transparent 45%),rgba(255,255,252,.98)}
@media(max-width:960px){
  .safe-marketplace-hero{grid-template-columns:1fr;min-height:0;padding:18px;background-size:420px auto;background-position:116% 12%}
  .safe-marketplace-state{max-width:590px}
  .safe-marketplace-checks{grid-template-columns:1fr}
  .safe-intent-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .safe-intent-grid>.btn{grid-column:1/-1;justify-self:start}
  .safe-native-handoff-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .safe-native-handoff-grid>.btn{grid-column:1/-1;justify-self:start}
}
@media(max-width:620px){
  .safe-marketplace-page{gap:12px}
  .safe-marketplace-hero{padding:15px;background-image:linear-gradient(180deg,rgba(2,15,16,.98),rgba(4,25,25,.93)),url("assets/domain-hero.png")}
  :root[data-theme="light"] .safe-marketplace-hero{
    background:linear-gradient(180deg,rgba(249,253,252,.96),rgba(235,247,245,.88)),url("assets/domain-hero.png") center/cover no-repeat,#f7fbfa;
  }
  .safe-marketplace-hero h1{font-size:24px}
  .safe-marketplace-hero .sub{font-size:11px}
  .safe-marketplace-grid{grid-template-columns:1fr;gap:12px}
  .safe-marketplace-panel,.safe-marketplace-requirements{padding:15px}
  .safe-purchase-intent{padding:15px}
  .safe-name-search-actions{grid-template-columns:1fr}
  .safe-name-search-actions .btn{justify-content:center}
  .safe-evidence-facts>div{grid-template-columns:1fr;gap:4px}
  .safe-intent-grid{grid-template-columns:1fr;gap:10px}
  .safe-intent-grid>.btn{grid-column:auto;width:100%;min-width:0}
  .safe-native-handoff{padding:15px}
  .safe-native-handoff-grid{grid-template-columns:1fr;gap:10px}
  .safe-native-handoff-grid>.btn{grid-column:auto;width:100%;min-width:0}
  .safe-purchase-intent .btn[disabled],.safe-auction-bid .btn[disabled]{width:100%;min-width:0}
  .safe-auction-hero{background-image:linear-gradient(180deg,rgba(13,7,24,.98),rgba(21,12,38,.94)),url("assets/domain-shield.png")}
  :root[data-theme="light"] .safe-auction-hero{
    background:linear-gradient(180deg,rgba(253,250,255,.96),rgba(242,235,252,.9)),url("assets/domain-shield.png") center/cover no-repeat,#faf7ff;
  }
  .safe-auction-empty{grid-template-columns:42px minmax(0,1fr);gap:10px;padding:15px}
  .safe-auction-empty>.badge{grid-column:2;justify-self:start}
  .safe-auction-empty-icon{width:42px;height:42px}
}

.shell[data-finalimage="true"] .tree-group[data-tree-expanded="true"] > .tree-children{
  display:grid!important;
  visibility:visible!important;
}
.shell[data-finalimage="true"] .tree-root{grid-template-columns:20px minmax(0,1fr)}
.shell[data-finalimage="true"] .sidebar-mobile-logout{display:none}

@media(max-width:960px){
  .shell[data-finalimage="true"]{
    display:grid;
    grid-template-columns:minmax(0,1fr);
  }
  .shell[data-finalimage="true"] .sidebar{
    position:relative;
    top:auto;
    display:flex!important;
    width:100%;
    height:auto;
    min-height:0;
    max-height:100svh;
    overflow-x:hidden;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }
  .shell[data-finalimage="true"] .sidebar-brand{
    padding-right:96px;
  }
  .shell[data-finalimage="true"] .sidebar-mobile-logout{
    position:absolute;
    top:17px;
    right:12px;
    z-index:2;
    display:inline-flex;
    min-height:32px;
    padding:5px 9px;
    gap:6px;
    font-size:10px;
    white-space:nowrap;
  }
  .shell[data-finalimage="true"] .sidebar-mobile-logout svg{
    width:15px;
    height:15px;
    flex:0 0 auto;
  }
  .shell[data-finalimage="true"] .tree-root{grid-template-columns:21px minmax(0,1fr)}
  .shell[data-finalimage="true"] .mobile-nav,
  .shell[data-finalimage="true"] .final-menu-button{display:none!important}
}

:root[data-theme="light"] .shell[data-finalimage="true"] .sidebar-mobile-logout{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,252,.94);
}

/* Product UX stabilization, 2026-08-11.
   The domain list is a selector, not a second telemetry dashboard: keep the
   list scannable and leave the complete, exact values in the selected detail.
   Explicit <wbr> boundaries in app.js make hostnames break at domain syntax
   instead of in the middle of arbitrary syllables. */
@media(min-width:1281px){
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-workspace{
    grid-template-columns:minmax(500px,.84fr) minmax(0,1.16fr);
  }
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-master-columns,
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-master-row{
    grid-template-columns:minmax(205px,1fr) minmax(88px,.42fr) minmax(112px,.5fr) 14px;
    gap:8px;
  }
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-columns>span:nth-child(n+4),
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-row>.domain-master-number{
  display:none;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-row{
  min-height:82px;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-identity>span:last-child{
  align-content:center;
  min-width:0;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-hostname,
.shell[data-page="my-domains"][data-finalimage="true"] .domain-host-list{
  max-width:100%;
  overflow:visible;
  text-overflow:clip;
  overflow-wrap:break-word;
  word-break:normal;
  hyphens:none;
  white-space:normal;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-identity b{
  display:block;
  font-size:11px;
  line-height:1.26;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-identity small{
  display:block;
  overflow:visible;
  font-size:8px;
  line-height:1.34;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-master-mode b{
  overflow:visible;
  text-overflow:clip;
  overflow-wrap:break-word;
  white-space:normal;
  line-height:1.28;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-title{
  align-items:start;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-title h2{
  font-size:17px;
  line-height:1.16;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-title p{
  margin-top:4px;
  line-height:1.38;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis>div{
  min-height:72px;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis b{
  overflow:visible;
  font-size:14px;
  line-height:1.18;
  text-overflow:clip;
  white-space:nowrap;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis small{
  overflow:visible;
  line-height:1.3;
  text-overflow:clip;
  white-space:normal;
}
.shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-panel{
  scroll-margin-top:70px;
}

@media(max-width:760px){
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-pane{
    order:-1;
  }
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-master-row{
    grid-template-columns:minmax(0,1fr) auto;
  }
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-title h2{
    font-size:16px;
  }
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis b{
    font-size:12px;
  }
}
@media(max-width:420px){
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis{
    grid-template-columns:1fr;
  }
  .shell[data-page="my-domains"][data-finalimage="true"] .domain-detail-kpis b{
    font-size:14px;
  }
}

/* Complete light palette for the VPN route. The previous dark artwork layer
   won the cascade and produced dark-green copy on a nearly black panel. */
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .vpn-settings-card{
  color:var(--text);
  border-color:rgba(38,123,45,.24);
  background:
    linear-gradient(90deg,rgba(250,253,250,.99) 0%,rgba(247,251,247,.94) 58%,rgba(247,251,247,.7) 100%),
    url("assets/vpn-connect-hero.png") right center/58% auto no-repeat,
    #f7faf7;
  box-shadow:var(--shadow);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .vpn-settings-card h2,
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .vpn-settings-card label{
  color:var(--text);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .vpn-settings-card .sub,
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .vpn-settings-card .muted{
  color:var(--muted);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn{
  color:var(--text);
  border-color:rgba(109,60,164,.24);
  background:#f8fbf8;
  box-shadow:var(--shadow);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn::before{
  opacity:.14;
  filter:saturate(.55) contrast(.78);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn::after{
  background:linear-gradient(90deg,rgba(248,251,248,.99) 0%,rgba(248,251,248,.94) 62%,rgba(248,251,248,.72) 100%);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn h2,
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn label,
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn .v{
  color:var(--text);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn .sub,
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn .k{
  color:var(--muted);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] .product-card.vpn .metric{
  border-color:var(--line);
  background:rgba(255,255,252,.86);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] #view>.grid>.card{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,252,.97);
  box-shadow:var(--shadow);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] #view>.grid>.card thead{
  background:#e8f2ea;
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] #view>.grid>.card th{
  color:#486052;
  border-color:var(--line);
  background:#e8f2ea;
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] #view>.grid>.card td{
  color:var(--text);
  border-color:var(--line);
}
:root[data-theme="light"] .shell[data-page="vpn"][data-finalimage="true"] #view>.grid>.card .card-head>.badge,
:root[data-theme="light"] .shell[data-page="vpn-connect"][data-finalimage="true"] [data-vpn-devices] .card-head>.badge{
  color:#315940;
  border-color:rgba(38,123,45,.2);
  background:#edf5ee;
}
/* The GET-only native setup is shared by both VPN pages. Its step numbers
   must use the theme accent, not the dark artwork's near-white neon green. */
:root[data-theme="light"] .shell:is([data-page="vpn"],[data-page="vpn-connect"])[data-finalimage="true"] [data-vpn-native-setup] .connection-steps b{
  color:var(--accent);
  border-color:var(--line-strong);
}

/* Localized grant lifetimes are intentionally written out (for example,
   "5 Minuten 0 Sekunden"). Keep the status intrinsic instead of shrinking it
   back to the old English-only 5m 0s footprint. */
.shell[data-page="vpn-connect"][data-finalimage="true"] .connection-grant-card>.card-head>div{
  min-width:0;
}

/* Cabinet control layout stability. Keep the existing artwork and surface
   palette; only real controls receive a control outline, and interaction
   states never change their text metrics or position. */
.shell[data-finalimage="true"] .btn:not(.icon-only){
  min-width:0;
  min-height:38px;
  max-width:100%;
  font-size:12px!important;
  line-height:1.35;
  white-space:normal;
  overflow-wrap:anywhere;
}
.shell[data-finalimage="true"] .btn>span{min-width:0}
.shell[data-finalimage="true"] .section-tabs :is(a,button){
  min-width:0;
  font-size:12px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.shell[data-finalimage="true"] .area-tabs a.mode-tab.active{transform:none}
.shell[data-finalimage="true"] :is(a.tree-root,.tree-leaf,.btn):focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* Section headings are not buttons. Every destination remains a real link,
   with the same border width and typography in its active/hover states. */
.shell[data-finalimage="true"] .tree-root[role="heading"]{cursor:default}
:root[data-theme] .shell[data-finalimage="true"] .tree-root[role="heading"],
:root[data-theme] .shell[data-finalimage="true"] .tree-root[role="heading"]:hover{
  background:transparent!important;
}
.shell[data-finalimage="true"] :is(a.tree-root,.tree-leaf){
  min-height:34px;
  border-width:1px!important;
  border-style:solid!important;
  border-color:var(--line);
  font-size:12px;
  font-weight:620;
  line-height:1.3;
}
.shell[data-finalimage="true"] a.tree-root .tree-label{
  font-size:12px;
  font-weight:620;
  text-transform:none;
  letter-spacing:0;
}
.shell[data-finalimage="true"] .tree-root[role="heading"] .tree-label{
  font-size:11px;
  line-height:1.4;
}
.shell[data-finalimage="true"] .tree-leaf{grid-template-columns:20px minmax(0,1fr)}
.shell[data-finalimage="true"] .tree-leaf>span{min-width:0;overflow-wrap:anywhere}
.shell[data-finalimage="true"] .sidebar .tree-nav{grid-template-columns:minmax(0,1fr);flex-shrink:0}
.shell[data-page="billing"][data-finalimage="true"] .finance-tabs{
  position:static;
  top:auto;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:4px;
  padding:0;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
}
.shell[data-page="billing"][data-finalimage="true"] .finance-tabs>button{
  min-height:38px;
  padding:8px 10px;
  border:0;
  border-bottom:2px solid transparent;
  border-radius:0;
  background:transparent!important;
  color:var(--muted);
  font-size:12px;
  font-weight:620;
  line-height:1.35;
  white-space:normal;
  overflow-wrap:anywhere;
  scroll-margin-top:70px;
}
.shell[data-page="billing"][data-finalimage="true"] .finance-tabs>button:hover{color:var(--text)}
.shell[data-page="billing"][data-finalimage="true"] .finance-tabs>button:is(.active,[aria-selected="true"]){border-bottom-color:var(--accent);color:var(--accent)}
.shell[data-page="billing"][data-finalimage="true"] .finance-tabs>button:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.shell[data-page="billing"][data-finalimage="true"] .finance-panel[hidden]{display:none!important}

/* One compact row. Account actions live in an out-of-flow native details
   menu, so opening it never changes the header or route content geometry. */
.shell[data-finalimage="true"] .topbar{
  display:block;
  height:58px;
  min-height:58px;
  padding-block:8px;
  overflow:visible;
}
.shell[data-finalimage="true"] .topbar-main{
  display:flex;
  height:40px;
  min-height:40px;
  flex-wrap:nowrap;
  align-items:center;
  gap:8px;
}
.shell[data-finalimage="true"] .topbar-main>.spacer{display:none}
.shell[data-finalimage="true"] .topbar .page-heading{
  flex:1 1 0%!important;
  width:auto;
  min-width:0!important;
  max-width:none;
}
.shell[data-finalimage="true"] .topbar .page-heading strong{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.shell[data-finalimage="true"] .topbar .final-page-subtitle{display:none}
.shell[data-finalimage="true"] .shell-download-link{flex:0 0 auto;white-space:nowrap}
.shell[data-finalimage="true"] .shell-download-link>svg{width:16px;height:16px;flex:0 0 16px}
.shell[data-finalimage="true"] .download-label-short{display:none}
.shell[data-finalimage="true"] .topbar-locale{
  width:100%;
  min-width:144px;
  max-width:none;
  min-height:38px;
  padding-inline:10px 28px;
  font-size:12px;
  line-height:1.35;
}
.shell[data-finalimage="true"] .topbar-logout{
  display:inline-flex;
  width:auto;
  min-width:0;
  padding:7px 10px;
}
.shell[data-finalimage="true"] .topbar-logout span{
  position:static;
  width:auto;
  height:auto;
  overflow:visible;
  clip:auto;
  white-space:normal;
}
.shell[data-finalimage="true"] .topbar-account-strip{
  display:flex;
  flex:0 0 auto;
  flex-wrap:nowrap;
  align-items:center;
  min-width:0;
  gap:8px;
}
.shell[data-finalimage="true"] .topbar-account-strip .account-avatar{flex:0 0 28px}
.shell[data-finalimage="true"] .topbar-account-identity{
  min-width:0;
  max-width:180px;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:12px;
  white-space:nowrap;
}
.shell[data-finalimage="true"] .topbar-account-roles{display:flex;flex-wrap:wrap;gap:6px;min-width:0}
.shell[data-finalimage="true"] [data-account-admin-host]{min-width:0;margin-inline-start:auto}
.shell[data-finalimage="true"] [data-account-admin-host]:empty{display:none}
.shell[data-finalimage="true"] .account-menu{position:static;flex:0 0 auto;padding:0;border:0;background:transparent}
.shell[data-finalimage="true"] .account-menu-toggle{
  width:38px;
  min-width:38px;
  height:38px;
  min-height:38px;
  padding:0;
  list-style:none;
}
.shell[data-finalimage="true"] .account-menu-toggle::-webkit-details-marker{display:none}
.shell[data-finalimage="true"] .account-menu-toggle>svg{width:18px;height:18px;flex:0 0 18px}
.shell[data-finalimage="true"] .account-menu-panel{
  position:absolute;
  top:calc(100% + 6px);
  right:12px;
  z-index:30;
  display:grid;
  gap:10px;
  width:min(320px,calc(100vw - 24px));
  min-width:0;
  max-height:calc(100svh - 74px);
  padding:12px;
  overflow:auto;
  overscroll-behavior:contain;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--panel);
  color:var(--text);
  box-shadow:var(--shadow);
}
.shell[data-finalimage="true"] .account-menu:not([open])>.account-menu-panel{display:none}
.shell[data-finalimage="true"] .account-menu-links{display:grid;gap:4px;min-width:0}
.shell[data-finalimage="true"] .account-menu-links>a{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  min-width:0;
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:6px;
  color:inherit;
  font-size:12px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.shell[data-finalimage="true"] .account-menu-links>a>svg{width:16px;height:16px;flex:0 0 16px}
.shell[data-finalimage="true"] .account-menu-links>a>span{min-width:0}
.shell[data-finalimage="true"] .account-menu-links>a:is(:hover,[aria-current="page"]){border-color:var(--accent)}
.shell[data-finalimage="true"] .account-menu-links>a:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.shell[data-finalimage="true"] .account-menu-preferences{display:grid;grid-template-columns:minmax(0,1fr) 38px;gap:8px;min-width:0}
.shell[data-finalimage="true"] .account-menu-panel #theme{justify-self:start;min-height:38px}
.shell[data-finalimage="true"] .account-menu-panel [data-account-admin-host]{margin-inline-start:0}

/* The hero copy and account facts occupy separate flow rows. Reset offsets
   inherited from the earlier absolutely-positioned identity-grid layout. */
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero{
  grid-template-rows:auto auto;
  row-gap:16px;
  align-content:start;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy{
  grid-row:1;
  min-width:0;
  padding-bottom:0;
}
.shell[data-page="overview"][data-finalimage="true"] .dashboard-hero .identity-grid{
  grid-row:2;
  inset:auto;
  align-self:start;
  margin:0;
}

.shell[data-finalimage="true"] :is(.mobile-navigation-toggle,.mobile-navigation-head,.mobile-navigation-backdrop){display:none}
.shell[data-finalimage="true"] .mobile-navigation-backdrop[hidden]{display:none!important}
@media(max-width:960px){
  /* The header is the first flow element. The complete task tree lives in
     one explicit, independently scrollable drawer instead of above it. */
  .shell[data-finalimage="true"]{--mobile-topbar-height:calc(58px + env(safe-area-inset-top,0px))}
  .shell[data-finalimage="true"]>main>.topbar{
    top:0;
    z-index:30;
    height:var(--mobile-topbar-height);
    min-height:var(--mobile-topbar-height);
    padding:calc(6px + env(safe-area-inset-top,0px)) max(12px,env(safe-area-inset-right,0px)) 6px max(12px,env(safe-area-inset-left,0px));
  }
  .shell[data-finalimage="true"] .topbar>.topbar-main{height:44px;min-height:44px;gap:6px}
  .shell[data-finalimage="true"] .mobile-navigation-toggle,
  .shell[data-finalimage="true"] [data-mobile-navigation-close]{
    display:inline-flex;
    flex:0 0 44px;
    align-items:center;
    justify-content:center;
    width:44px;
    min-width:44px;
    height:44px;
    min-height:44px;
    padding:0;
  }
  .shell[data-finalimage="true"] :is(.mobile-navigation-toggle,[data-mobile-navigation-close])>svg{width:20px;height:20px;flex:0 0 20px}
  .shell[data-finalimage="true"] [data-mobile-navigation-close]{flex:0 0 auto;width:auto;padding-inline:10px;white-space:nowrap}
  .shell[data-finalimage="true"] .topbar .account-menu-toggle{width:44px;min-width:44px;height:44px;min-height:44px}
  .shell[data-finalimage="true"] .topbar .topbar-account-strip{gap:6px}
  .shell[data-finalimage="true"] .topbar .topbar-account-strip .account-avatar{flex:0 0 36px;width:36px;height:36px}
  .shell[data-finalimage="true"] .sidebar{
    position:fixed;
    inset:var(--mobile-topbar-height) auto 0 0;
    z-index:50;
    display:none!important;
    width:min(340px,calc(100vw - 24px));
    height:calc(100svh - var(--mobile-topbar-height));
    height:calc(100dvh - var(--mobile-topbar-height));
    min-height:0;
    max-height:calc(100dvh - var(--mobile-topbar-height));
    padding-bottom:max(18px,env(safe-area-inset-bottom,0px));
    padding-left:max(12px,env(safe-area-inset-left,0px));
    overflow-x:hidden;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }
  .shell[data-finalimage="true"][data-mobile-navigation-open="true"] .sidebar{display:flex!important}
  .shell[data-finalimage="true"] .mobile-navigation-head{
    position:sticky;
    top:0;
    z-index:2;
    display:flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:44px;
    background:inherit;
  }
  .shell[data-finalimage="true"] .mobile-navigation-head>b{min-width:0;font-size:14px;overflow-wrap:anywhere}
  .shell[data-finalimage="true"] .sidebar-brand{flex-shrink:0;padding-right:2px}
  .shell[data-finalimage="true"] .sidebar :is(a.tree-root,.tree-leaf){min-height:44px}
  .shell[data-finalimage="true"] .mobile-navigation-backdrop{
    position:fixed;
    inset:0;
    z-index:40;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    border:0;
    border-radius:0;
    background:rgba(0,0,0,.48);
    box-shadow:none;
  }
  .shell[data-finalimage="true"][data-mobile-navigation-open="true"] .mobile-navigation-backdrop:not([hidden]){display:block}
  .shell[data-finalimage="true"] .account-menu-panel{
    max-height:calc(100svh - var(--mobile-topbar-height) - 16px - env(safe-area-inset-bottom,0px));
    max-height:calc(100dvh - var(--mobile-topbar-height) - 16px - env(safe-area-inset-bottom,0px));
  }
  .shell[data-finalimage="true"] .content{min-width:0;padding-bottom:max(28px,env(safe-area-inset-bottom,0px))}
}
@media(max-width:620px){
  .shell[data-finalimage="true"] .topbar-account-identity{display:none}
  .shell[data-finalimage="true"] .download-label-full{display:none}
  .shell[data-finalimage="true"] .download-label-short{display:none}
  .shell[data-finalimage="true"] .topbar .shell-download-link{
    width:44px;
    min-width:44px;
    height:44px;
    min-height:44px;
    padding:0;
    justify-content:center;
  }
  .shell[data-page="billing"][data-finalimage="true"] .finance-tabs{grid-template-columns:repeat(2,minmax(0,1fr))}
  .shell[data-page="overview"][data-finalimage="true"] .dashboard-hero-copy>.btn-row .btn{
    flex:1 1 120px;
  }
}
@media(max-width:380px){
  .shell[data-page="billing"][data-finalimage="true"] .finance-tabs{grid-template-columns:minmax(0,1fr)}
}
.shell[data-page="vpn-connect"][data-finalimage="true"] .connection-grant-card>.card-head>.badge{
  flex:0 0 auto;
  max-width:none;
  overflow:visible;
  text-overflow:clip;
  white-space:nowrap;
}
@media(max-width:520px){
  .shell[data-page="vpn-connect"][data-finalimage="true"] .connection-grant-card>.card-head>.badge{
    justify-self:start;
    white-space:normal;
  }
}

/* One readable sign-in surface. The introduction belongs to the card, not a
   fixed layer outside it; long wallet/recovery lists scroll with the document. */
.login{
  height:auto;
  min-height:100svh;
  padding:max(24px,env(safe-area-inset-top,0px)) max(16px,env(safe-area-inset-right,0px)) max(24px,env(safe-area-inset-bottom,0px)) max(16px,env(safe-area-inset-left,0px));
}
.login .login-card{
  width:min(560px,100%)!important;
  max-width:100%;
  min-height:0;
  max-height:none;
  height:auto;
  grid-template-columns:minmax(0,1fr)!important;
  grid-template-rows:auto auto;
}
.login .login-intro{
  position:relative;
  inset:auto;
  transform:none;
  width:100%;
  min-height:0;
  padding:22px;
  justify-content:flex-start;
  gap:18px;
  overflow:hidden;
  background-size:cover,auto 100%;
  background-position:center,right center;
}
.login .login-intro .brand{margin:0}
.login .login-intro .brand-mark{width:40px;height:40px}
.login .login-intro .brand-title p{font-size:12px;line-height:1.4}
.login .login-copy{max-width:none;margin:0}
.login .login-copy h1{font-size:28px;line-height:1.2}
.login .login-copy .sub{display:block;max-width:440px;margin-top:8px;font-size:13px;line-height:1.5;overflow:visible;-webkit-line-clamp:unset}
.login .login-actions{overflow:visible;padding:18px 22px 22px;gap:16px}
.login .login-toolbar{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;align-items:center}
.login-home-link{color:var(--muted);font-size:13px;text-decoration:none}
.login-home-link:hover{color:var(--accent)}
.login .login-preferences{margin-left:auto;gap:8px}
.login .login-preferences .locale-select{width:180px;min-width:180px;max-width:180px;min-height:40px;font-size:14px}
.login .login-preferences [data-theme-toggle]{width:40px;min-height:40px}
.login .login-actions .auth-section{padding:16px}
.login .wallet-section-head{margin-bottom:16px}
.login .wallet-section-head h2{font-size:21px;line-height:1.3}
.login .wallet-section-head .sub{display:block;max-width:none;overflow:visible;font-size:13px;line-height:1.5;-webkit-line-clamp:unset}
.login .login-actions [data-wallet-actions]{display:grid;grid-template-columns:minmax(0,1fr);gap:18px}
.wallet-primary-options,.wallet-detected-options,.wallet-secondary-options{display:grid;grid-template-columns:minmax(0,1fr);gap:8px;min-width:0}
.wallet-detected-section{min-width:0}
.wallet-section-label{display:block;margin:0 0 6px;color:var(--text);font-size:13px;font-weight:700;line-height:1.4}
.wallet-detected-summary{margin:0 0 10px;color:var(--muted);font-size:12px;line-height:1.5;overflow-wrap:anywhere}
.wallet-detected-options{margin-bottom:8px}
.wallet-browser-help{margin-top:8px;font-size:12px;line-height:1.5}
.wallet-secondary-section{padding-top:16px;border-top:1px solid var(--line);min-width:0}
.wallet-secondary-section>.wallet-section-label{margin-bottom:8px}
.login .login-actions .wallet-login-action,
.login .login-actions .wallet-login-action:nth-child(n+4){
  grid-column:auto;
  grid-template-columns:36px minmax(0,1fr) 16px;
  grid-template-rows:auto;
  min-height:62px;
  height:auto;
  padding:12px;
  justify-items:start;
  align-items:center;
  gap:10px;
  text-align:left;
}
.login .login-actions .wallet-login-action .injected-wallet-logo{width:36px;height:36px}
.login .login-actions .wallet-login-action .injected-wallet-copy{min-width:0}
.login .login-actions .wallet-login-action .injected-wallet-copy b{font-size:14px;line-height:1.35;white-space:normal;overflow:visible;text-overflow:clip}
.login .login-actions .wallet-login-action .injected-wallet-copy small{display:block;color:var(--muted);font-size:12px;line-height:1.4;white-space:normal;overflow:visible;text-overflow:clip;overflow-wrap:anywhere}
.login .login-actions .wallet-login-action>span:last-child{position:static;justify-self:end;font-size:16px}
.login .login-actions .wallet-login-action.muted{opacity:1;filter:none}
.login .login-actions .wallet-secondary-options .wallet-login-action{min-height:56px}
.login .auth-identity-notice{grid-template-columns:25px minmax(0,1fr);gap:10px;margin-top:16px;padding:12px}
.login .auth-identity-notice b{font-size:13px;line-height:1.4}
.login .auth-identity-notice p{font-size:12px;line-height:1.5}
.login .auth-identity-state{grid-column:2;font-size:11px;justify-self:start;white-space:normal;line-height:1.3}
.login .wallet-login-proof{flex-wrap:wrap;gap:6px 10px;font-size:11px;line-height:1.5}
.login .login-actions #authTechnical>summary{font-size:12px;line-height:1.5}
:root[data-theme="light"] .login .tangem-login-action{background:var(--panel)!important;border-color:var(--line-strong)!important}
:root[data-theme="light"] .login .auth-identity-notice{background:var(--panel);border-color:var(--line-strong)}
:root[data-theme="light"] .login .auth-identity-notice b{color:var(--text)}
:root[data-theme="light"] .login .auth-identity-notice p,
:root[data-theme="light"] .login .wallet-login-proof{color:var(--muted)}
:root[data-theme="light"] .login .auth-identity-mark{color:var(--violet);border-color:var(--line-strong);background:var(--panel)}
:root[data-theme="light"] .login .auth-identity-state{color:var(--accent);border-color:var(--line-strong)}
@media(min-width:480px){
  .wallet-primary-options{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  .login{align-items:start;padding:0;background-attachment:scroll}
  .login .login-card{width:100%!important;min-height:100svh;border:0;border-radius:0}
  .login .login-intro{padding:max(20px,env(safe-area-inset-top,0px)) max(18px,env(safe-area-inset-right,0px)) 18px max(18px,env(safe-area-inset-left,0px));gap:14px}
  .login .login-copy h1{font-size:24px}
  .login .login-actions{padding:16px max(14px,env(safe-area-inset-right,0px)) max(24px,env(safe-area-inset-bottom,0px)) max(14px,env(safe-area-inset-left,0px))}
  .login .login-toolbar{display:flex;flex-wrap:wrap}
  .login .login-home-link{flex:0 0 auto;max-width:100%}
  .login .login-actions .auth-section{padding:12px}
  .login .login-preferences .locale-select{font-size:16px}
  .login .wallet-section-head h2{font-size:20px}
  .login .login-actions .wallet-login-action{min-height:60px;padding:10px}
}

/* Download workspace: one product panel at a time, selected by real tabs.
   Artwork, signed downloads and device-admission states are unchanged. */
.shell[data-page="client"] .unified-client-page.download-page{
  --download-rgb:131,237,85;
  --download-surface:rgba(4,16,12,.94);
  --download-inner:rgba(3,13,10,.66);
  width:100%;
  max-width:1280px;
  margin-inline:auto;
  gap:20px;
}
/* Keep this page bounded despite the legacy #view > * width reset. */
.shell[data-page="client"] #view>.unified-client-page.download-page{max-width:1280px}
.shell[data-page="client"] .unified-client-page.download-page>.unified-client-flow-hero{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  min-height:130px;
  margin-bottom:0;
  padding:22px;
  border-color:var(--line);
  box-shadow:none;
}
.shell[data-page="client"] .unified-client-page.download-page>.unified-client-flow-hero>div:first-child{flex:1 1 320px;min-width:0;max-width:760px}
.shell[data-page="client"] .unified-client-page.download-page>.unified-client-flow-hero h1{margin:0;font-size:26px;line-height:1.2}
.shell[data-page="client"] .unified-client-page.download-page>.unified-client-flow-hero p{margin:8px 0 0;font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page>.unified-client-flow-hero>.badge{position:relative;z-index:1;max-width:100%;font-size:12px;line-height:1.4;white-space:normal}
.shell[data-page="client"] .unified-client-page.download-page .download-paths{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  min-width:0;
}
.shell[data-page="client"] .unified-client-page.download-page .download-path-card{
  display:flex;
  align-items:center;
  gap:10px;
  scroll-margin-top:calc(80px + env(safe-area-inset-top,0px));
  min-width:0;
  min-height:46px;
  padding:11px 14px;
  border:1px solid var(--line);
  border-radius:8px;
  color:var(--text);
  background:var(--download-inner);
  box-shadow:none;
  text-align:left;
  cursor:pointer;
  transition:border-color .16s ease,background-color .16s ease;
}
.shell[data-page="client"] .unified-client-page.download-page .download-path-card:hover{
  border-color:rgba(var(--download-rgb),.5);
  background:rgba(var(--download-rgb),.055);
  transform:none;
}
.shell[data-page="client"] .unified-client-page.download-page .download-tabs .download-path-card{justify-content:center;text-align:center}
.shell[data-page="client"] .unified-client-page.download-page .download-tabs .download-path-card[aria-selected="true"]{
  color:var(--text);
  border-color:rgba(var(--download-rgb),.6);
  background:rgba(var(--download-rgb),.1);
  box-shadow:inset 0 -3px var(--accent);
}
.shell[data-page="client"] .unified-client-page.download-page [data-download-panel][hidden]{display:none!important}
.shell[data-page="client"] .unified-client-page.download-page .download-path-card:focus-visible{
  outline:3px solid rgb(var(--download-rgb));
  outline-offset:3px;
}
.shell[data-page="client"] .unified-client-page.download-page .download-path-icon{
  display:grid;
  place-items:center;
  flex:0 0 auto;
  width:20px;
  height:20px;
  color:var(--muted);
}
.shell[data-page="client"] .unified-client-page.download-page .download-path-card[aria-selected="true"] .download-path-icon{color:var(--accent)}
.shell[data-page="client"] .unified-client-page.download-page .download-section-icon{display:grid;place-items:center;flex:0 0 auto;width:32px;height:32px;padding:5px;color:var(--accent)}
.shell[data-page="client"] .unified-client-page.download-page :is(.download-path-icon,.download-section-icon)>svg{width:100%;height:100%}
.shell[data-page="client"] .unified-client-page.download-page .download-path-copy{display:block;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .download-path-copy>b{font-size:14px;font-weight:650;line-height:1.4;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page>.download-section{
  min-width:0;
  container-type:inline-size;
  container-name:download-panel;
  margin-top:0;
  padding:20px;
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--download-surface);
  box-shadow:none;
  scroll-margin-top:calc(80px + env(safe-area-inset-top,0px));
}
.shell[data-page="client"] .unified-client-page.download-page>.download-section:focus-visible{outline:2px solid rgb(var(--download-rgb));outline-offset:3px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-intro{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  align-items:start;
  gap:32px;
  min-width:0;
  margin-bottom:24px;
  container-type:inline-size;
  container-name:product-intro;
}
.shell[data-page="client"] .unified-client-page.download-page .download-product-copy{display:grid;gap:16px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-intro.download-product-intro-paired{grid-template-columns:minmax(0,1fr);gap:20px;margin-bottom:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-intro-paired>.download-catalog-head{justify-content:center;gap:8px;margin:0;padding:0;border:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-intro-paired>.download-catalog-head>.badge{position:static;max-width:100%;font-size:12px;line-height:1.4;white-space:normal}
.shell[data-page="client"] .unified-client-page.download-page .download-product-intro-paired>.client-install-hint{display:block;margin:4px 0 0;padding:0;border:0;text-align:center}
.shell[data-page="client"] .unified-client-page.download-page .download-product-intro-paired>.client-install-hint .btn{min-height:44px;padding:6px 0;border:0;background:transparent;text-decoration:underline;text-underline-offset:3px}
.shell[data-page="client"] .unified-client-page.download-page .client-device-row{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);align-items:center;gap:32px;min-width:0;container-type:inline-size;container-name:client-device-row}
.shell[data-page="client"] .unified-client-page.download-page .client-device-row+.client-device-row{margin-top:16px;padding-top:16px;border-top:1px solid var(--line)}
.shell[data-page="client"] .unified-client-page.download-page .client-download-catalog>.unified-manifest-warning{margin-bottom:24px}
.shell[data-page="client"] .unified-client-page.download-page :is(.client-device-row,.download-product-intro)>armillaria-product-demo{width:100%;max-width:640px;justify-self:center}
.shell[data-page="client"] .unified-client-page.download-page .download-product-copy :is(h1,h2){margin:0;font-size:32px;line-height:1.15;letter-spacing:-.015em;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-product-copy p{margin:0;max-width:52ch;color:var(--muted);font-size:16px;line-height:1.55;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-product-kicker{color:var(--accent);font-size:12px;font-weight:700;line-height:1.4;letter-spacing:.045em}
.shell[data-page="client"] .unified-client-page.download-page .download-product-points{display:grid;gap:8px;margin:0;padding-left:20px;font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .download-product-points li{padding-left:2px;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-product-points li::marker{color:var(--accent)}
.shell[data-page="client"] .unified-client-page.download-page .download-product-platforms{display:flex;flex-wrap:wrap;gap:6px;margin:0;padding:0;list-style:none}
.shell[data-page="client"] .unified-client-page.download-page .download-product-platforms :is(li,span){padding:5px 9px;border:1px solid var(--line);border-radius:6px;background:var(--download-inner);color:var(--muted);font-size:12px;font-weight:600;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-product-visual{min-width:0;width:100%;max-width:560px;margin:0;justify-self:end}
.shell[data-page="client"] .unified-client-page.download-page .download-product-visual>a{display:block;max-width:100%;border-radius:8px;cursor:zoom-in;scroll-margin-top:calc(80px + env(safe-area-inset-top,0px))}
.shell[data-page="client"] .unified-client-page.download-page .download-product-visual>a:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-visual :is(img,svg){display:block;max-width:100%;width:100%;height:auto;max-height:360px;object-fit:contain}
.shell[data-page="client"] .unified-client-page.download-page .download-product-visual img{border:1px solid var(--line);border-radius:8px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-visual figcaption{margin-top:8px;color:var(--muted);font-size:12px;line-height:1.5;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-product-visual figcaption a{text-decoration:underline;text-underline-offset:3px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-art{max-width:none}
.shell[data-page="client"] .unified-client-page.download-page .download-product-art>img{max-height:none;border:0;border-radius:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-devices{max-width:none}
.shell[data-page="client"] .unified-client-page.download-page .download-device-stage{display:grid;grid-template-columns:minmax(0,1fr) minmax(76px,.32fr);align-items:center;gap:14px;min-width:0;padding:18px;border:1px solid var(--line);border-radius:14px;background:radial-gradient(ellipse at 50% 80%,rgba(var(--download-rgb),.065),transparent 75%),var(--download-inner)}
.shell[data-page="client"] .unified-client-page.download-page .download-device-stage>a{display:block;min-width:0;border-radius:8px;cursor:zoom-in;scroll-margin-top:calc(80px + env(safe-area-inset-top,0px))}
.shell[data-page="client"] .unified-client-page.download-page .download-device-stage>a:focus-visible{outline:2px solid var(--accent);outline-offset:4px}
.shell[data-page="client"] .unified-client-page.download-page .download-device-stage img{width:100%;max-height:none;height:auto;object-fit:contain}
.shell[data-page="client"] .unified-client-page.download-page .download-device-stage>.download-device-desktop{box-shadow:0 10px 25px rgba(0,0,0,.16)}
.shell[data-page="client"] .unified-client-page.download-page .download-device-stage>.download-device-phone{padding:5px;border:1px solid #42604c;border-radius:18px;background:#07130d;box-shadow:0 10px 25px rgba(0,0,0,.16)}
.shell[data-page="client"] .unified-client-page.download-page .download-device-phone img{border:0;border-radius:12px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:20px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-gallery .download-product-visual{max-width:none}
/* Product demonstrations are local simulations, never live connection state.
   Their animation is isolated from page geometry and from download controls. */
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo{
  --demo-bg:#07150f;
  --demo-panel:#0d2018;
  --demo-line:rgba(149,201,168,.24);
  --demo-text:#ecf5ee;
  --demo-muted:#a5bbae;
  --demo-green:#a3ef79;
  --demo-cyan:#81dcd5;
  display:grid;
  grid-template-rows:52px minmax(0,1fr) 64px;
  width:100%;
  height:460px;
  min-width:0;
  color:var(--demo-text);
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--demo-bg);
  box-shadow:0 8px 24px rgba(0,0,0,.1);
  isolation:isolate;
}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-kind="server"]{
  --demo-bg:#08111f;
  --demo-panel:#060b14;
  --demo-line:rgba(126,170,212,.24);
  --demo-text:#dce9f4;
  --demo-muted:#9db1c5;
  --demo-green:#9bd0ff;
  --demo-cyan:#78bade;
}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-kind="custom"]{
  --demo-bg:#151d26;
  --demo-panel:#1c2935;
  --demo-line:rgba(157,185,208,.24);
  --demo-text:#e3edf5;
  --demo-muted:#aabac9;
  --demo-green:#9bd8b6;
  --demo-cyan:#99c9f0;
}
:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-kind="custom"]{
  --demo-bg:#edf2f7;
  --demo-panel:#ffffff;
  --demo-line:rgba(47,78,108,.2);
  --demo-text:#243447;
  --demo-muted:#53677c;
  --demo-green:#267146;
  --demo-cyan:#285f91;
}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo [data-demo-phase]{
  grid-area:1/1;
  min-width:0;
  margin:0;
  font-size:14px;
  line-height:1.5;
  overflow-wrap:anywhere;
}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo [data-demo-phase][hidden]{
  display:block!important;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo :is(.product-demo-toolbar,.product-demo-status,.product-demo-caption,.product-demo-references){padding-inline:14px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:8px;padding-block:2px;border-bottom:1px solid var(--demo-line)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-badge{display:inline-flex;align-items:center;gap:8px;max-width:100%;color:var(--demo-muted);font-size:12px;font-weight:700;line-height:1.5;letter-spacing:.025em;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-badge::before{content:"";width:7px;height:7px;flex:0 0 7px;border:1px solid var(--demo-green);border-radius:50%}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-toggle{
  display:inline-grid;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:46px;
  min-height:46px;
  max-width:100%;
  padding:8px 10px;
  border:1px solid transparent;
  border-radius:8px;
  color:var(--demo-text);
  background:transparent;
  font-size:14px!important;
  font-weight:600;
  line-height:1.4;
  text-align:center;
  white-space:normal;
  overflow-wrap:anywhere;
  cursor:pointer;
  transform:none;
  scroll-margin-top:calc(80px + env(safe-area-inset-top,0px));
}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-toggle>span{grid-area:1/1;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-toggle>span[hidden]{display:block!important;visibility:hidden;pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-toggle:hover{border-color:var(--demo-line);color:var(--demo-green);background:transparent;transform:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-toggle:focus-visible{outline:2px solid var(--demo-green);outline-offset:3px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-stage{position:relative;display:grid;align-items:center;min-width:0;min-height:0;padding:12px;background:transparent;container-type:inline-size;container-name:product-demo-scene}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo:not([data-demo-device]) .product-demo-stage{grid-template-rows:minmax(0,1fr)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-status{display:grid;align-content:center;min-width:0;padding-block:8px;border-top:1px solid var(--demo-line);color:var(--demo-text)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-caption{margin:0;padding-block:0 8px;color:var(--demo-muted);font-size:14px;line-height:1.5;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references{display:block;margin:0;padding-block:0;border-top:1px solid var(--demo-line);border-radius:0 0 11px 11px;color:var(--demo-muted);background:var(--demo-bg);font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references>summary{display:flex;align-items:center;gap:10px;min-height:46px;padding:10px 0;list-style:none;cursor:pointer;overflow-wrap:anywhere;scroll-margin-top:calc(80px + env(safe-area-inset-top,0px))}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references>summary::-webkit-details-marker{display:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references>summary::before{content:"+";flex:0 0 14px;color:var(--demo-green);font-size:20px;line-height:1}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references[open]>summary::before{content:"−"}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references>div{display:flex;flex-wrap:wrap;gap:4px 20px;min-width:0;padding-bottom:6px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references a{display:inline-flex;align-items:center;min-height:44px;max-width:100%;color:inherit;text-decoration:underline;text-underline-offset:3px;font-size:13px;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-references :is(a,summary):focus-visible{outline:2px solid var(--demo-green);outline-offset:3px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-windowbar{display:flex;align-items:center;gap:8px;min-width:0;min-height:32px;padding:5px 10px;border-bottom:1px solid var(--demo-line);border-radius:9px 9px 0 0;color:var(--demo-muted);background:rgba(166,213,179,.035);font-size:12px;line-height:1.5;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-window-dots{display:flex;align-items:center;gap:5px;flex:0 0 auto;margin-right:4px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-window-dots>i{width:6px;height:6px;border-radius:50%;background:#90a699}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-window-dots>i:nth-child(2){background:#657c6e}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-window-dots>i:nth-child(3){background:#455f50}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-window-mark{display:grid;place-items:center;flex:0 0 20px;width:20px;height:20px;margin-left:auto;border:1px solid var(--demo-line);border-radius:5px;color:var(--demo-green);font-size:12px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-devices{display:grid;grid-template-columns:minmax(0,420px) 144px;align-items:center;justify-content:center;gap:12px;min-width:0;margin-inline:auto}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-desktop{display:grid;width:100%;max-width:420px;min-width:0;align-content:center;justify-self:center}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid{position:relative;min-width:0;margin-inline:8px;padding:15px 8px 8px;border:1px solid #82929f;border-bottom-color:#35434e;border-radius:12px 12px 4px 4px;background:linear-gradient(135deg,#3a4855,#101820 30%,#111a22 85%,#5f7382);box-shadow:inset 0 1px 1px rgba(231,244,255,.38),0 8px 18px rgba(0,0,0,.24)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid::before{content:"";position:absolute;top:5px;left:calc(50% - 2px);width:4px;height:4px;border:1px solid #758c9c;border-radius:50%;background:radial-gradient(circle at 35% 30%,#6c9bbd,#0d202e 65%);box-shadow:0 0 0 2px rgba(4,10,16,.6)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid::after{content:"";position:absolute;left:18%;right:18%;bottom:0;height:4px;border:1px solid #82909b;border-bottom:0;border-radius:4px 4px 0 0;background:linear-gradient(#536572,#18232d)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-display{display:grid;grid-template-rows:26px minmax(0,1fr);min-width:0;aspect-ratio:16/9;border-radius:4px 4px 3px 3px;background:var(--demo-panel)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-display>.product-demo-windowbar{min-height:0;padding:3px 7px;border-radius:4px 4px 0 0;background:#182d22}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-display>.product-demo-screen{display:grid;grid-template-columns:36px minmax(0,1fr);min-width:0;min-height:0;border-radius:0 0 3px 3px;background:var(--demo-panel)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-base{position:relative;display:grid;justify-items:center;gap:2px;min-width:0;min-height:0;padding:3px 12px 6px;border:1px solid #a9b6c0;border-top-color:#d3dce2;border-radius:2px 2px 12px 12px;background:linear-gradient(175deg,#a7b4bf,#697d8b 38%,#bdc8d0 93%,#71818e);box-shadow:0 7px 12px rgba(0,0,0,.24)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-base::after{content:"";position:absolute;left:1px;right:1px;bottom:0;height:5px;border-top:1px solid rgba(219,231,239,.65);border-radius:0 0 11px 11px;background:linear-gradient(#7a8e9c,#3a4c59)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-keyboard{width:86%;height:auto;aspect-ratio:360/30;border:1px solid #5c6b77;border-radius:3px;background:#17212a url("assets/download-laptop-keyboard.svg?v=4") center/contain no-repeat;box-shadow:inset 0 1px 2px rgba(0,0,0,.45)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-trackpad{width:23%;height:7px;border:1px solid rgba(45,67,83,.55);border-bottom-color:rgba(220,231,237,.75);border-radius:2px;background:rgba(156,174,187,.52)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-console{min-width:0;border:1px solid var(--demo-line);border-radius:10px;background:var(--demo-panel);box-shadow:0 6px 18px rgba(0,0,0,.12)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-sidebar{display:grid;align-content:start;justify-items:center;gap:14px;min-width:0;padding:14px 7px;border-right:1px solid var(--demo-line);color:var(--demo-muted);font-size:12px;line-height:1.5;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-sidebar>*{display:flex;flex-wrap:wrap;align-items:center;gap:8px;min-width:0;margin:0}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-gui-main{display:grid;align-content:center;justify-items:center;gap:6px;min-width:0;padding:10px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-display .product-demo-gui-main{gap:5px;padding:6px 8px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-brand{display:grid;justify-items:center;gap:4px;max-width:100%;color:var(--demo-text);font-size:16px;font-weight:700;line-height:1.4;text-align:center;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-brand>span{color:var(--demo-muted);font-size:12px;font-weight:400;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid .product-demo-brand{display:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid .product-demo-brand>span{display:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-screen-label{display:none}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo :is(.product-demo-brand,.product-demo-sidebar,.product-demo-module) svg{display:block;flex:0 0 auto;width:24px;height:24px;max-height:none;color:var(--demo-green)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid .product-demo-sidebar>svg{width:18px;height:18px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-ring{position:relative;display:grid;place-items:center;width:76px;height:76px;max-width:100%;margin:7px;border:1px solid rgba(163,239,121,.25);border-radius:50%;color:var(--demo-green);background:radial-gradient(circle,rgba(163,239,121,.075),transparent 72%)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-ring::before{content:"";position:absolute;inset:-7px;border:2px solid var(--demo-green);border-right-color:transparent;border-bottom-color:transparent;border-radius:50%;opacity:.6;animation:product-demo-orbit 4s linear infinite}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-ring::after{content:"";position:absolute;inset:8px;border:1px solid rgba(163,239,121,.32);border-radius:50%;animation:product-demo-breathe 3s ease-in-out infinite}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-ring svg{display:block;width:32px;height:32px;max-height:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid .product-demo-ring{width:36px;height:36px;margin:5px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-laptop-lid .product-demo-ring svg{width:24px;height:24px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-ring :is(.product-demo-power,.product-demo-check){transform-origin:16px 16px;transition:opacity .35s ease,transform .35s ease}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-ring .product-demo-check{opacity:0;transform:scale(.7)}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="3"] .product-demo-power{opacity:0;transform:scale(.7)}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="3"] .product-demo-check{opacity:1;transform:scale(1)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phase-copy{display:grid;min-width:0;width:100%;color:var(--demo-muted);font-size:14px;line-height:1.5;text-align:center}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phase-copy>[data-demo-copy-step]{grid-area:1/1;min-width:0;opacity:0;overflow-wrap:anywhere;transition:none}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="0"] [data-demo-copy-step="0"],
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="1"] [data-demo-copy-step="1"],
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="2"] [data-demo-copy-step="2"],
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="3"] [data-demo-copy-step="3"]{opacity:1;transform:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-node-choice{display:flex;align-items:center;gap:6px;width:100%;min-width:0;padding:4px 6px;border:1px solid var(--demo-line);border-radius:5px;color:var(--demo-muted);font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-node-choice>span{min-width:0;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-node-choice>svg{flex:0 0 18px;width:18px;height:18px;color:var(--demo-green)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-gui-action{position:relative;display:grid;place-items:center;min-height:36px;min-width:0;width:100%;padding:7px 10px;border:1px solid var(--demo-green);border-radius:6px;background:var(--demo-green);color:#112415;transition:transform .18s ease}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-gui-action>.product-demo-phase-copy{color:inherit;font-weight:650;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-pointer{position:absolute;z-index:1;right:9px;bottom:-7px;width:20px;height:24px;color:#f8fff5;stroke:#17301c;stroke-width:1px;opacity:0;transform:translate(9px,10px);transition:opacity .16s ease,transform .24s ease;pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="1"] .product-demo-gui-action{transform:scale(.98)}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="1"] .product-demo-gui-action>.product-demo-pointer{opacity:1;transform:translate(0,0)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-gui-action::after{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;border-radius:0 0 5px 5px;background:#246638;opacity:0;transform:scaleX(0);transform-origin:left}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="2"] .product-demo-gui-action::after{animation:product-demo-progress 2s ease-in-out infinite}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone{--phone-width:144px;position:relative;display:flex;flex-direction:column;justify-self:center;width:var(--phone-width);max-width:100%;min-height:calc(var(--phone-width) * 2.05);padding:4px;border:1px solid #92a4b3;border-radius:24px;background:linear-gradient(110deg,#b6c5cf,#4b5d6c 7%,#19252e 18%,#475d6d 92%,#a9bdcc);box-shadow:inset 0 0 0 1px rgba(6,15,23,.8),0 9px 18px rgba(0,0,0,.3)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone::before{content:"";position:absolute;top:23%;left:-3px;width:3px;height:24px;border-radius:2px 0 0 2px;background:linear-gradient(90deg,#a6b8c6,#475d70);box-shadow:0 30px 0 #687e90}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone::after{content:"";position:absolute;top:34%;right:-3px;width:3px;height:30px;border-radius:0 2px 2px 0;background:linear-gradient(90deg,#475d70,#a6b8c6)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-glass{position:relative;display:flex;flex:1;flex-direction:column;min-width:0;border:1px solid #020806;border-radius:19px;background:#06120c;box-shadow:inset 0 1px 1px rgba(255,255,255,.16)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-glass::before{content:"";position:absolute;z-index:1;inset:0;border-radius:inherit;background:linear-gradient(125deg,rgba(215,237,255,.09),transparent 35%);pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-notch{position:relative;flex:0 0 20px;min-height:20px;width:100%}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-notch::before{content:"";position:absolute;top:8px;left:calc(50% - 16px);width:26px;height:3px;border:1px solid #465b65;border-radius:3px;background:#152c34}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-notch::after{content:"";position:absolute;top:7px;left:calc(50% + 16px);width:5px;height:5px;border:1px solid #415762;border-radius:50%;background:radial-gradient(circle at 35% 30%,#558aa4,#0b1f2b 60%)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-glass>.product-demo-screen{display:grid;flex:1;align-content:center;justify-items:center;gap:10px;min-width:0;padding:10px 6px;background:var(--demo-panel)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-home-indicator{position:relative;flex:0 0 16px;min-height:16px;width:100%}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-home-indicator::before{content:"";position:absolute;left:calc(50% - 17px);bottom:6px;width:34px;height:3px;border-radius:3px;background:#a6b8b0}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-ring{width:48px;height:48px;margin:6px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-ring svg{width:24px;height:24px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-brand{font-size:12px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-brand>span{display:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-pointer{display:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-gui-action::before{content:"";position:absolute;right:12px;top:calc(50% - 9px);width:18px;height:18px;border:2px solid #244d2c;border-radius:50%;opacity:0;pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="1"] .product-demo-phone .product-demo-gui-action::before{opacity:.65;transform:scale(1.15)}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="1"] .product-demo-phone .product-demo-gui-action::before{animation:product-demo-touch .7s ease-out both}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-console{width:100%;margin-inline:auto}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-terminal{display:grid;align-content:start;gap:0;min-width:0;min-height:206px;padding:12px 14px;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page :is(.product-demo-console,.product-demo-config-console)>.product-demo-windowbar>span:nth-child(2){padding:2px 8px;border-bottom:1px solid var(--demo-cyan);background:rgba(143,185,220,.07)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-terminal-location{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:4px 10px;margin-bottom:10px;color:var(--demo-muted);font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:12px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-terminal-location>span{opacity:.85}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-command{display:grid;grid-template-columns:10px minmax(0,1fr);align-items:start;gap:8px;min-width:0;margin:0 0 8px;color:var(--demo-text);font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-command>span{color:var(--demo-green)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-command>code{min-width:0;padding:0;border:0;color:inherit;background:transparent;font:inherit;white-space:normal;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-command-output{min-width:0;margin:0 0 10px;padding-left:18px;color:var(--demo-muted);font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-command-output>code{padding:0;border:0;color:inherit;background:transparent;font:inherit;white-space:normal;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-log-block{display:grid;gap:4px;min-width:0;margin:2px 0 8px}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-log-line{display:grid;grid-template-columns:34px minmax(0,1fr);align-items:start;gap:8px;min-width:0;color:var(--demo-text);font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-log-line>span{color:var(--demo-green);font-size:12px;line-height:1.65}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-log-line>code{min-width:0;padding:0;border:0;background:transparent;color:inherit;font:inherit;white-space:normal;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo [data-demo-reveal]{visibility:hidden}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo [data-demo-reveal="0"],
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo:is([data-demo-step="1"],[data-demo-step="2"],[data-demo-step="3"]) [data-demo-reveal="1"],
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo:is([data-demo-step="2"],[data-demo-step="3"]) [data-demo-reveal="2"],
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="3"] [data-demo-reveal="3"]{visibility:visible}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="0"] .product-demo-command[data-demo-reveal="0"]>code,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="1"] .product-demo-command[data-demo-reveal="1"]>code,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="2"] .product-demo-command[data-demo-reveal="2"]>code{animation:product-demo-type .65s steps(28,end) both}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="0"] .product-demo-command-output[data-demo-reveal="0"]>code,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="1"] .product-demo-command-output[data-demo-reveal="1"]>code{animation:product-demo-show 0s step-end .65s both}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="3"] .product-demo-log-line{animation:product-demo-type .2s steps(14,end) both}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="3"] .product-demo-log-line:nth-child(2){animation-delay:.22s}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"][data-demo-step="3"] .product-demo-log-line:nth-child(3){animation-delay:.44s}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-terminal-prompt{display:none}
.shell[data-page="client"] .unified-client-page.download-page :is(.product-demo-command,.product-demo-command-output,.product-demo-log-line)>code{position:relative}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="0"] .product-demo-command-output[data-demo-reveal="0"]>code::after,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="1"] .product-demo-command-output[data-demo-reveal="1"]>code::after,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="2"] .product-demo-command[data-demo-reveal="2"]>code::after,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="3"] .product-demo-log-line:last-child>code::after{content:"";position:absolute;width:7px;height:14px;margin-left:4px;transform:translateY(2px);background:var(--demo-green);pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-playing="true"] :is(.product-demo-command,.product-demo-command-output,.product-demo-log-line)>code::after{animation:product-demo-show 0s step-end .65s both,product-demo-cursor 1.4s steps(2,end) .65s infinite}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-config-console{min-width:0;border:1px solid var(--demo-line);border-radius:10px;background:var(--demo-panel)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-config-editor{display:grid;min-width:0;padding:10px 0;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-config-line{position:relative;display:grid;grid-template-columns:24px minmax(0,1fr);gap:10px;min-width:0;padding:0 10px;color:var(--demo-text)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-config-line::before{content:"";position:absolute;inset:0;border-left:2px solid var(--demo-green);background:var(--demo-green);opacity:0;pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-config-line>span{position:relative;color:var(--demo-muted);font-size:12px;text-align:right;line-height:1.63}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-config-line>code{position:relative;min-width:0;padding:0;border:0;color:inherit;background:transparent;font:inherit;white-space:normal;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-code-section{color:var(--demo-cyan)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-code-punctuation{color:var(--demo-muted)}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-code-value{color:#e2b985}
:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page .product-demo-code-value{color:#85531d}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="0"] [data-demo-config="0"]::before,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-step="1"] [data-demo-config="1"]::before{opacity:.1}
.shell[data-page="client"] .unified-client-page.download-page .product-demo-config-terminal{--demo-text:#dce9f4;--demo-muted:#9db1c5;--demo-green:#9bd0ff;min-width:0;padding:10px 12px;border-top:1px solid #456078;border-radius:0 0 9px 9px;background:#08111b;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:14px;line-height:1.4}
@keyframes product-demo-orbit{to{transform:rotate(1turn)}}
@keyframes product-demo-breathe{0%,100%{opacity:.35;transform:scale(.98)}50%{opacity:1;transform:scale(1.03)}}
@keyframes product-demo-progress{0%{opacity:1;transform:scaleX(.08)}85%{opacity:1;transform:scaleX(1)}100%{opacity:0;transform:scaleX(1)}}
@keyframes product-demo-cursor{0%,100%{opacity:1}50%{opacity:0}}
@keyframes product-demo-type{from{clip-path:inset(0 100% 0 0)}to{clip-path:inset(0 0 0 0)}}
@keyframes product-demo-show{from{visibility:hidden}to{visibility:visible}}
@keyframes product-demo-touch{from{opacity:.85;transform:scale(.55)}to{opacity:0;transform:scale(1.6)}}
@media(min-width:621px){
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone :is(.product-demo-node-choice,.product-demo-gui-action){display:none}
}
@media(max-width:620px){
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-stage{padding:10px}
  .shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo :is(.product-demo-toolbar,.product-demo-status,.product-demo-caption,.product-demo-references){padding-inline:14px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-toolbar{align-items:flex-start}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-devices{grid-template-columns:minmax(0,1fr);gap:0}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-desktop{display:none}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone{--phone-width:220px;max-width:100%;border-radius:30px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-glass{border-radius:25px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-glass>.product-demo-screen{min-height:0;gap:10px;padding:12px 10px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-brand{font-size:14px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-node-choice{display:flex}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-gui-action{display:grid}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-ring{width:64px;height:64px;margin:7px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-terminal{min-height:206px;padding:10px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-config-terminal{padding:10px}
}
@container product-demo-scene (max-width:576px){
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-devices{grid-template-columns:minmax(0,1fr);gap:0}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-desktop{display:none}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone{--phone-width:220px;border-radius:30px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-glass{border-radius:25px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone-glass>.product-demo-screen{gap:10px;padding:12px 10px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-brand{font-size:14px}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-node-choice{display:flex}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-gui-action{display:grid}
  .shell[data-page="client"] .unified-client-page.download-page .product-demo-phone .product-demo-ring{width:64px;height:64px;margin:7px}
}
@container product-intro (max-width:1080px){
  .shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo{height:610px;grid-template-rows:52px minmax(0,1fr) 84px}
}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device]{height:auto;grid-template-rows:60px auto 60px}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device]>.product-demo-toolbar{align-items:center;flex-wrap:nowrap}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device]>.product-demo-status{text-align:center}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device] .product-demo-devices{display:grid;grid-template-columns:minmax(0,1fr);place-items:center;width:100%;margin-inline:auto}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="desktop"] .product-demo-devices{max-width:570px}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="desktop"] .product-demo-desktop{display:grid;width:100%;max-width:570px}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="mobile"] .product-demo-phone{--phone-width:230px;margin-inline:auto;border-radius:34px}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="mobile"] .product-demo-phone-glass{border-radius:29px}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="mobile"] .product-demo-phone-glass>.product-demo-screen{gap:10px;padding:12px 10px}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="mobile"] .product-demo-phone .product-demo-brand{font-size:14px}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="mobile"] .product-demo-phone .product-demo-node-choice{display:flex}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="mobile"] .product-demo-phone .product-demo-gui-action{display:grid}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-device="mobile"] .product-demo-phone .product-demo-ring{width:64px;height:64px;margin:7px}
/* Use space inside the cabinet, not viewport width: the sidebar consumes it. */
@container download-panel (max-width:920px){
  .shell[data-page="client"] .unified-client-page.download-page .client-device-row{grid-template-columns:minmax(0,1fr);gap:24px;width:100%;max-width:640px;margin-inline:auto}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-intro:not(.download-product-intro-paired){grid-template-columns:minmax(0,1fr);justify-items:center;gap:24px}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-intro:not(.download-product-intro-paired)>.download-product-copy{width:100%;max-width:640px}
}
/* The app demonstration has five crisp views and eight local story steps. */
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device] .product-demo-gui-main{display:block;position:relative;min-height:0;padding:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-ui{--gui-font:14px;--gui-small:12px;--gui-gap:10px;--gui-row:48px;position:absolute;inset:12px;min-width:0;min-height:0;color:var(--demo-text);font-size:var(--gui-font);line-height:1.35}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-view{position:absolute;inset:0;display:flex;flex-direction:column;gap:var(--gui-gap);min-width:0;min-height:0;visibility:hidden;pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="0"] .demo-client-home,
.shell[data-page="client"] .unified-client-page.download-page :is([data-demo-step="1"],[data-demo-step="5"]) .demo-client-countries,
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="2"] .demo-client-servers,
.shell[data-page="client"] .unified-client-page.download-page :is([data-demo-step="3"],[data-demo-step="6"]) .demo-client-connecting,
.shell[data-page="client"] .unified-client-page.download-page :is([data-demo-step="4"],[data-demo-step="7"]) .demo-client-connected{visibility:visible}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-heading{display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:24px;font-size:var(--gui-font);font-weight:700;line-height:1.3;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-tag{padding:3px 7px;border:1px solid var(--demo-line);border-radius:5px;color:var(--demo-muted);font-size:var(--gui-small);font-weight:500;white-space:nowrap}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-home-body{display:flex;flex:1;flex-direction:column;align-items:center;justify-content:center;gap:var(--gui-gap);min-width:0;min-height:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-home .product-demo-ring{flex:0 0 auto;width:64px;height:64px;margin:8px}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-home .product-demo-ring::before,.shell[data-page="client"] .unified-client-page.download-page .demo-client-home .product-demo-ring::after{animation:none}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-playing="true"][data-demo-step="0"] .demo-client-home .product-demo-ring::before{animation:product-demo-orbit 3s linear infinite}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-playing="true"][data-demo-step="0"] .demo-client-home .product-demo-ring::after{animation:product-demo-breathe 2.6s ease-in-out infinite}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-location-picker{display:flex;align-items:center;gap:5px;width:100%;min-width:0;border:1px solid var(--demo-line);border-radius:7px;background:rgba(101,194,139,.045)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-location-picker>.demo-client-selected-country{flex:1;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-chevron{padding-right:9px;color:var(--demo-green);font-size:18px}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-action{display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:36px;width:100%;padding:8px 12px;border:1px solid var(--demo-green);border-radius:6px;background:var(--demo-green);color:#102515;font-size:var(--gui-font);font-weight:650;line-height:1.3}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-country-list,.shell[data-page="client"] .unified-client-page.download-page .demo-client-server-list{display:grid;gap:8px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-country{position:relative;display:grid;grid-template-columns:24px minmax(0,1fr) auto 14px;align-items:center;gap:7px;min-width:0;min-height:var(--gui-row);padding:7px 9px;border:1px solid var(--demo-line);border-radius:7px;background:#10251b;box-shadow:inset 0 1px rgba(207,249,223,.025)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-country-name{display:grid;gap:2px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-country-name b,.shell[data-page="client"] .unified-client-page.download-page .demo-client-server b{font-size:var(--gui-font);font-weight:600;line-height:1.3;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-country-name small,.shell[data-page="client"] .unified-client-page.download-page .demo-client-server small{color:var(--demo-muted);font-size:var(--gui-small);line-height:1.3;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-latency{color:#8cd7b5;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:var(--gui-small);white-space:nowrap}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-country-check{color:var(--demo-green);font-size:var(--gui-font);opacity:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-country-flag{display:block;flex:0 0 24px;width:24px;height:16px;border:1px solid rgba(240,250,244,.24);border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.24)}
.shell[data-page="client"] .unified-client-page.download-page .demo-country-flag-de{background:linear-gradient(#17202a 0 33.333%,#e05352 33.333% 66.666%,#f2ce62 66.666%)}
.shell[data-page="client"] .unified-client-page.download-page .demo-country-flag-nl{background:linear-gradient(#d75558 0 33.333%,#f0f4f7 33.333% 66.666%,#527fb7 66.666%)}
.shell[data-page="client"] .unified-client-page.download-page .demo-country-flag-fi{background:linear-gradient(90deg,transparent 0 28%,#426da4 28% 44%,transparent 44%),linear-gradient(transparent 0 40%,#426da4 40% 60%,transparent 60%),#eef4f6}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="1"] .demo-client-country-list [data-demo-country="de"],.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="5"] .demo-client-country-list [data-demo-country="nl"],.shell[data-page="client"] .unified-client-page.download-page .demo-client-selected-country .demo-client-country{border-color:rgba(163,239,121,.5);background:#183624}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="1"] .demo-client-country-list [data-demo-country="de"] .demo-client-country-check,.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="5"] .demo-client-country-list [data-demo-country="nl"] .demo-client-country-check,.shell[data-page="client"] .unified-client-page.download-page .demo-client-selected-country .demo-client-country-check{opacity:1}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-route-de{display:block}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-route-nl{display:none}
.shell[data-page="client"] .unified-client-page.download-page :is([data-demo-step="5"],[data-demo-step="6"],[data-demo-step="7"]) .demo-client-route-de{display:none}
.shell[data-page="client"] .unified-client-page.download-page :is([data-demo-step="5"],[data-demo-step="6"],[data-demo-step="7"]) .demo-client-route-nl{display:block}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-server{position:relative;display:grid;grid-template-columns:26px minmax(0,1fr) auto 10px;align-items:center;gap:8px;min-height:var(--gui-row);padding:8px 10px;border:1px solid var(--demo-line);border-radius:7px;background:#10251b}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-server>span:nth-child(2){display:grid;gap:2px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-server>svg{width:24px;height:24px;color:var(--demo-cyan)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-server>i{width:6px;height:6px;border-radius:50%;background:#83cda4}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-server.selected{border-color:var(--demo-green);background:#183624}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-route{display:flex;align-items:center;justify-content:center;gap:12px;min-height:48px;padding:6px 12px;color:var(--demo-green)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-route>svg{flex:0 0 28px;width:28px;height:28px}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-route-line{position:relative;display:block;flex:1;max-width:160px;height:2px;background:var(--demo-line)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-route-line>i{position:absolute;top:-2px;left:0;width:25%;height:6px;border-radius:6px;background:linear-gradient(90deg,var(--demo-green),var(--demo-cyan));box-shadow:0 0 9px rgba(121,231,184,.35)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-progress{height:4px;border-radius:4px;background:var(--demo-line)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-progress>i{display:block;width:100%;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--demo-green),var(--demo-cyan));transform-origin:left;transform:scaleX(.6)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-connect-steps{display:grid;gap:4px;color:var(--demo-muted);font-size:var(--gui-small);line-height:1.3}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-connect-steps>span:first-child{color:#9fe2b7}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-playing="true"]:is([data-demo-step="3"],[data-demo-step="6"]) .demo-client-route-line>i{animation:demo-client-packet 1s linear infinite}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-playing="true"]:is([data-demo-step="3"],[data-demo-step="6"]) .demo-client-progress>i{animation:product-demo-progress 2s ease-in-out infinite}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-connected-label{display:flex;align-items:center;gap:7px;color:var(--demo-green)}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-connected-label>svg{width:18px;height:18px;flex:0 0 18px}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-connection-id{display:flex;align-items:center;justify-content:space-between;gap:6px;color:var(--demo-muted);font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:var(--gui-small);line-height:1.3}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-connection-id>span:last-child{color:#8cd7b5}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-metrics{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:end;gap:14px;min-height:48px;padding:6px 0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-metrics>div{display:grid;gap:3px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-metrics small{color:var(--demo-muted);font-size:var(--gui-small);line-height:1.3}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-metrics b{color:var(--demo-text);font-size:22px;font-weight:650;line-height:1.1}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-metrics b>small{font-weight:400}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-traffic{display:block;width:100%;height:42px;overflow:visible}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-traffic>path{fill:none;stroke:var(--demo-cyan);stroke-width:1.8}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-traffic>.demo-client-traffic-fill{fill:rgba(129,220,213,.11);stroke:none}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-playing="true"]:is([data-demo-step="4"],[data-demo-step="7"]) .demo-client-traffic>path:last-child{stroke-dasharray:230;animation:demo-client-traffic 2.2s linear infinite}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-change{display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:30px;margin-top:auto;padding-top:6px;border-top:1px solid var(--demo-line);color:var(--demo-green);font-size:var(--gui-font);line-height:1.3}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-cursor{position:absolute;z-index:3;left:73%;top:35%;width:20px;height:25px;color:#f1fff1;stroke:#102718;stroke-width:.8;opacity:0;pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"][data-demo-playing="true"]:is([data-demo-step="0"],[data-demo-step="1"],[data-demo-step="2"],[data-demo-step="4"],[data-demo-step="5"]) .demo-client-cursor{animation:demo-client-pointer 1.1s ease-out both}
/* Alternate names restart the cursor even across adjacent click scenes. */
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"][data-demo-playing="true"]:is([data-demo-step="1"],[data-demo-step="5"]) .demo-client-cursor{animation-name:demo-client-pointer-next}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="0"] .demo-client-cursor{top:70%;left:78%}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="1"] .demo-client-cursor{top:25%}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="2"] .demo-client-cursor{top:34%}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="4"] .demo-client-cursor{top:92%;left:80%}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-step="5"] .demo-client-cursor{top:48%}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .demo-client-cursor{display:none}
.shell[data-page="client"] .unified-client-page.download-page .demo-client-country::after,.shell[data-page="client"] .unified-client-page.download-page .demo-client-server::after{content:"";position:absolute;right:12px;top:calc(50% - 10px);width:20px;height:20px;border:2px solid var(--demo-green);border-radius:50%;opacity:0;pointer-events:none}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"][data-demo-playing="true"][data-demo-step="1"] .demo-client-country-list [data-demo-country="de"]::after,.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"][data-demo-playing="true"][data-demo-step="5"] .demo-client-country-list [data-demo-country="nl"]::after,.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"][data-demo-playing="true"][data-demo-step="2"] .demo-client-server.selected::after{animation:product-demo-touch .85s ease-out both}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .product-demo-phone-glass>.product-demo-screen{display:block;position:relative;min-height:0;padding:0}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .demo-client-ui{inset:14px 10px}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .demo-client-view{gap:12px}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .demo-client-country{grid-template-columns:20px minmax(0,1fr) auto 12px;gap:5px;padding:8px 6px}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .demo-country-flag{width:20px;height:14px;flex-basis:20px}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .demo-client-home .product-demo-ring{width:76px;height:76px;margin:12px}
.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="mobile"] .demo-client-route{margin-top:12px;min-height:64px}
@keyframes demo-client-packet{from{transform:translateX(0)}to{transform:translateX(300%)}}
@keyframes demo-client-traffic{from{stroke-dashoffset:230}to{stroke-dashoffset:0}}
@keyframes demo-client-pointer{0%{opacity:0;transform:translate(14px,18px)}35%,75%{opacity:1;transform:translate(0,0)}85%{opacity:1;transform:scale(.86)}100%{opacity:1;transform:scale(1)}}
@keyframes demo-client-pointer-next{0%{opacity:0;transform:translate(14px,18px)}35%,75%{opacity:1;transform:translate(0,0)}85%{opacity:1;transform:scale(.86)}100%{opacity:1;transform:scale(1)}}
@container product-demo-scene (max-width:430px){
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-laptop-lid{margin-inline:5px;padding:11px 5px 6px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-laptop-display{grid-template-rows:19px minmax(0,1fr)}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-laptop-display>.product-demo-windowbar{gap:4px;padding:1px 4px;font-size:10px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-window-dots{gap:3px;margin-right:1px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-window-dots>i{width:4px;height:4px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-window-mark{width:14px;height:14px;flex-basis:14px;font-size:9px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-laptop-display>.product-demo-screen{grid-template-columns:20px minmax(0,1fr)}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-sidebar{gap:9px;padding:6px 3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .product-demo-sidebar>svg{width:12px;height:12px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-ui{--gui-font:10.5px;--gui-small:10px;--gui-gap:3px;--gui-row:18px;inset:4px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-heading{min-height:14px;gap:4px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-tag{padding:0 3px;font-size:9px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-country-list,.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-server-list{gap:3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-country{grid-template-columns:14px minmax(0,1fr) auto 9px;gap:4px;padding:1px 3px;border-radius:3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-country-name small,.shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-server small{display:none}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-country-flag{width:14px;height:10px;flex-basis:14px;border-radius:2px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-server{grid-template-columns:14px minmax(0,1fr) auto 6px;gap:4px;padding:1px 3px;border-radius:3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-server>svg{width:13px;height:13px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-server>i{width:4px;height:4px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-action{min-height:21px;padding:2px 5px;border-radius:3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-home-body{display:grid;grid-template-columns:32px minmax(0,1fr);grid-template-rows:repeat(2,minmax(0,1fr));gap:4px;align-content:center}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-home .product-demo-ring{grid-column:1;grid-row:1/span 2;width:24px;height:24px;margin:0}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-home .product-demo-ring>svg{width:14px;height:14px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-home .product-demo-ring::before{inset:-3px;border-width:1px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-home .product-demo-ring::after{inset:3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-location-picker{grid-column:2;grid-row:1;gap:2px;border-radius:3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-location-picker .demo-client-country{border:0}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-home-body>.demo-client-action{grid-column:2;grid-row:2}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-chevron{padding-right:3px;font-size:12px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-route{min-height:19px;padding:0 6px;gap:6px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-route>svg{width:16px;height:16px;flex-basis:16px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-connect-steps{display:flex;gap:5px;font-size:9px;line-height:1.1}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-progress{height:3px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-connection-id{font-size:9px;line-height:1.1}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-metrics{gap:7px;min-height:17px;padding:0}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-metrics>div>small{display:none}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-metrics b{font-size:12px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-metrics b>small{font-size:9px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-traffic{height:17px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-change{min-height:14px;padding:0;font-size:10px}
 .shell[data-page="client"] .unified-client-page.download-page [data-demo-device="desktop"] .demo-client-cursor{width:12px;height:16px}
}
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-paused="true"] *,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-paused="true"] *::before,
.shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo[data-demo-paused="true"] *::after{animation-play-state:paused!important}
@media(prefers-reduced-motion:reduce){
  .shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo *,
  .shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo *::before,
  .shell[data-page="client"] .unified-client-page.download-page armillaria-product-demo *::after{animation:none!important;transition:none!important}
}
.shell[data-page="client"] .unified-client-page.download-page .download-catalog-head{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;margin:20px 0 16px;padding-top:20px;border-top:1px solid var(--line)}
.shell[data-page="client"] .unified-client-page.download-page .download-catalog-head :is(h2,h3){margin:0;font-size:18px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-catalog-head p{margin:4px 0 0;color:var(--muted);font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .client-platform-group+.client-platform-group{margin-top:24px}
.shell[data-page="client"] .unified-client-page.download-page .client-platform-group-title{margin:16px 0 12px;font-size:16px;line-height:1.4;color:var(--text)}
.shell[data-page="client"] .unified-client-page.download-page .download-section>.card-head{
  display:flex;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:18px;
}
.shell[data-page="client"] .unified-client-page.download-page .download-section-heading{
  display:flex;
  flex:1 1 300px;
  align-items:flex-start;
  gap:14px;
  min-width:0;
}
.shell[data-page="client"] .unified-client-page.download-page .download-section-heading>div{min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .download-section-heading h2{font-size:22px;line-height:1.25;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-section-heading .sub{max-width:760px;font-size:14px;line-height:1.55}
.shell[data-page="client"] .unified-client-page.download-page .download-section>.card-head>.badge{position:static;flex:0 1 auto;max-width:100%;white-space:normal;font-size:12px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page :is(.unified-download-grid,.node-artifact-grid){
  grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr));
  gap:16px;
  margin-top:0;
}
.shell[data-page="client"] .unified-client-page.download-page .download-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:0!important;
  padding:18px;
  gap:14px;
  overflow:visible;
  border-color:var(--line);
  border-radius:8px;
  background:var(--download-inner);
  box-shadow:none;
}
.shell[data-page="client"] .unified-client-page.download-page .download-card.recommended{border-color:rgba(var(--download-rgb),.45);box-shadow:none}
.shell[data-page="client"] .unified-client-page.download-page .download-card.unavailable{opacity:1}
.shell[data-page="client"] .unified-client-page.download-page .unified-download-grid>.unified-client-card:only-of-type{grid-column:1/-1}
.shell[data-page="client"] .unified-client-page.download-page .download-head{display:flex;flex-direction:column;align-items:flex-start;gap:12px}
.shell[data-page="client"] .unified-client-page.download-page .download-card .download-title{
  width:100%;
  min-width:0;
  padding-right:0!important;
  align-items:center;
  gap:12px;
}
.shell[data-page="client"] .unified-client-page.download-page .download-title>div{min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .download-title h3{min-height:0;font-size:18px;line-height:1.3}
.shell[data-page="client"] .unified-client-page.download-page .download-platform-icon{width:48px;height:48px;flex:0 0 48px;box-shadow:none}
.shell[data-page="client"] .unified-client-page.download-page .download-head>.badge{
  position:static;
  inset:auto;
  max-width:100%;
  overflow:visible;
  white-space:normal;
  text-overflow:clip;
  font-size:12px;
  line-height:1.4;
}
.shell[data-page="client"] .unified-client-page.download-page .download-tags{margin-top:0;gap:6px;flex-wrap:wrap}
.shell[data-page="client"] .unified-client-page.download-page .download-tags span{font-size:12px;line-height:1.4;padding:4px 8px}
.shell[data-page="client"] .unified-client-page.download-page .download-card .tiny{font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .client-module-line{flex-wrap:wrap;gap:7px;margin:0;align-items:center}
.shell[data-page="client"] .unified-client-page.download-page .client-module-line>b{flex:1 1 140px;font-size:14px;font-weight:500;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .node-artifact-copy{margin:0}
.shell[data-page="client"] .unified-client-page.download-page .download-card>.btn-row{display:grid;grid-template-columns:minmax(0,1fr);gap:8px;margin-top:auto}
.shell[data-page="client"] .unified-client-page.download-page .btn{min-height:46px;height:auto;padding:11px 14px;font-size:14px!important;line-height:1.4;white-space:normal;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-card .client-download-button{margin-top:0;width:100%}
.shell[data-page="client"] .unified-client-page.download-page .download-card .checksum{margin-top:0;font-size:12px;line-height:1.5;white-space:normal;overflow:visible;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .unified-manifest-warning{display:block;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .unified-manifest-warning p{margin:0;font-size:14px;line-height:1.5;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .unified-manifest-warning>.download-file-details{margin-top:8px}
.shell[data-page="client"] .unified-client-page.download-page .download-file-details{min-width:0;border-top:1px solid var(--line);padding-top:6px}
.shell[data-page="client"] .unified-client-page.download-page .download-file-details>summary{min-height:44px;display:flex;align-items:center;gap:8px;scroll-margin-top:calc(80px + env(safe-area-inset-top,0px));color:var(--muted);font-size:14px;line-height:1.4;cursor:pointer;list-style:none;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-file-details>summary::-webkit-details-marker{display:none}
.shell[data-page="client"] .unified-client-page.download-page .download-file-details>summary::before{content:"+";font-size:20px;flex:0 0 auto}
.shell[data-page="client"] .unified-client-page.download-page .download-file-details[open]>summary::before{content:"−"}
.shell[data-page="client"] .unified-client-page.download-page .download-file-details>summary:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.shell[data-page="client"] .unified-client-page.download-page .client-install-hint{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin-top:14px;padding-top:12px;border-top:1px solid var(--line)}
.shell[data-page="client"] .unified-client-page.download-page .client-install-hint p{flex:1 1 260px;margin:0;color:var(--muted);font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .client-download-next-step b{font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .client-download-next-step small{font-size:13px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls{
  margin-top:16px;
  overflow:visible;
  border:1px solid var(--line);
  border-radius:8px;
  background:transparent;
}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head{
  display:grid;
  grid-template-columns:28px minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  scroll-margin-top:calc(80px + env(safe-area-inset-top,0px));
  min-height:60px;
  padding:14px;
  border-bottom:0;
  cursor:pointer;
}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head .client-profile-advanced-icon{width:28px;height:28px;padding:4px;border:0;color:var(--accent);background:transparent}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head:hover{background:rgba(var(--download-rgb),.035)}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls[open]>.client-custom-controls-head{border-bottom:1px solid var(--line);background:transparent}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head>span:nth-child(2){display:grid;gap:5px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head b{font-size:16px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head small{color:var(--muted);font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head>em{display:grid;grid-column:3;grid-row:1;place-items:center;width:22px;font-size:0;font-style:normal;color:var(--muted)}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head>em::after{content:"+";font-size:22px;line-height:1}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls[open]>.client-custom-controls-head>em::after{content:"−"}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls .client-profile-advanced-body{padding:18px;gap:18px}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-controls .client-profile-layout{grid-template-columns:minmax(0,1fr);gap:16px}
.shell[data-page="client"] .unified-client-page.download-page :is(.client-module-picker,.client-consent-grid){grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));gap:12px;max-width:none}
.shell[data-page="client"] .unified-client-page.download-page .client-module-picker .module-toggle{grid-template-columns:18px 36px minmax(0,1fr);padding:14px;gap:10px;min-height:0}
.shell[data-page="client"] .unified-client-page.download-page .client-module-picker .module-toggle em{grid-column:3;font-size:12px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page :is(.client-module-picker,.client-consent-grid) b{font-size:15px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page :is(.client-module-picker p,.client-consent-grid small){font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .client-profile-form{padding:0;border:0;background:transparent}
.shell[data-page="client"] .unified-client-page.download-page .client-profile-form label{font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page :is(input:not([type="checkbox"]),select,textarea){min-height:46px;max-width:100%;font-size:16px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node .tiny{font-size:14px;line-height:1.55}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node .client-pairing-primary{padding:0;gap:12px;border:0;background:transparent;box-shadow:none}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node .client-manual-profile{padding:0;gap:14px;border:0;background:transparent}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node .client-node-only{padding:14px;gap:14px;border-color:var(--line);background:var(--download-inner)}
.shell[data-page="client"] .unified-client-page.download-page .client-node-only{flex-wrap:wrap}
.shell[data-page="client"] .unified-client-page.download-page .client-node-only>div{flex:1 1 260px}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node :is(.client-manual-profile,.native-device-handoff,.client-node-only) b{font-size:16px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node .native-device-handoff{flex-wrap:wrap}
.shell[data-page="client"] .unified-client-page.download-page .client-connected-devices{margin-top:20px;gap:12px}
.shell[data-page="client"] .unified-client-page.download-page .client-connected-devices>h3{font-size:16px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node .table-wrap{max-width:100%}
.shell[data-page="client"] .unified-client-page.download-page .client-custom-node .table-wrap:has(>.client-profile-devices){background:var(--download-inner);border-color:rgba(var(--download-rgb),.24)}
.shell[data-page="client"] .unified-client-page.download-page .client-profile-devices :is(th,td){
  height:auto;
  padding:14px;
  color:var(--text);
  font-size:14px;
  line-height:1.5;
  text-transform:none;
  overflow-wrap:anywhere;
}
.shell[data-page="client"] .unified-client-page.download-page .client-profile-devices th{background:rgba(var(--download-rgb),.09);font-weight:650}
.shell[data-page="client"] .unified-client-page.download-page .client-profile-devices td[data-device-actions] .btn{font-size:14px!important;white-space:nowrap;overflow-wrap:normal}

/* Downloads belong beside the product, as a list of verified actions rather
   than another set of product cards. Keep the existing action semantics. */
.shell[data-page="client"] .unified-client-page.download-page .download-product-links{display:grid;gap:10px;min-width:0;container-type:inline-size;container-name:product-download-links}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-catalog-head{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:0;padding:0;border:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-catalog-head :is(h2,h3){font-size:16px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-catalog-head>.badge{position:static;max-width:100%;font-size:12px;line-height:1.4;white-space:normal}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links :is(.downloads-grid,.unified-download-grid,.node-artifact-grid){display:grid;grid-template-columns:minmax(0,1fr);gap:0;margin:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-platform-group+.client-platform-group{margin-top:16px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-platform-group-title{margin:0;padding:8px 0;color:var(--text);font-size:14px;font-weight:650;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,136px);align-items:start;gap:8px 12px;min-height:0;padding:12px 0;margin:0;border:0;border-bottom:1px solid var(--line);border-radius:0;background:transparent;box-shadow:none}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card>.download-head{grid-column:1;grid-row:1;display:grid;gap:6px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .download-title{align-items:center;gap:9px;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .download-title h3{margin:0;font-size:16px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .download-platform-icon{width:28px;height:28px;flex-basis:28px;padding:3px;border:0;border-radius:0;background:transparent}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .download-title p{margin:2px 0 0;font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .download-head>.badge{align-self:start;justify-self:start;padding:0;border:0;border-radius:0;background:transparent;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card>.btn-row{grid-column:2;grid-row:1;display:grid;grid-template-columns:minmax(0,1fr);align-self:center;align-items:center;gap:6px;min-width:0;margin:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .btn{display:inline-flex;align-items:center;justify-content:center;width:100%;max-width:136px;min-height:46px;margin:0;padding:2px 12px;border:1px solid var(--line);border-radius:7px;color:var(--text);background:var(--download-inner);box-shadow:none;text-align:center;text-decoration:none;font-size:14px!important;line-height:1.4;font-weight:650;transform:none}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .btn.primary{border-color:transparent;color:#06110c;background:linear-gradient(180deg,var(--accent),var(--accent-strong))}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .btn:hover{filter:brightness(1.05);transform:none}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .btn:disabled{border-color:var(--line);color:var(--muted);background:transparent;opacity:1;filter:none;text-decoration:none;cursor:default}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .btn:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card>:is(.client-module-line,.download-file-details,.download-artifact-meta,.download-checksum,.client-download-next-step,p){grid-column:1/-1;grid-row:auto;margin:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-artifact-meta{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:5px 10px;min-width:0;max-width:100%;color:var(--muted);font-size:14px;line-height:1.45;overflow-wrap:anywhere}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-artifact-meta :is(p,span){margin:0;font-size:14px;line-height:1.45}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-artifact-file{grid-column:1;min-width:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-artifact-size{grid-column:2;justify-self:end;white-space:nowrap}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-checksum{grid-column:1/-1;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:2px 10px;min-width:0;max-width:100%;margin:0;padding:0;border:0;color:var(--muted);background:transparent;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:13px;line-height:1.5;white-space:normal;overflow:visible;overflow-wrap:anywhere;word-break:break-word;user-select:text}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-checksum>span{grid-column:1;grid-row:1;font-size:12px;font-weight:600}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-checksum>code{grid-column:1;grid-row:2;display:block;min-width:0;max-width:100%;margin:0;padding:0;border:0;color:inherit;background:transparent;font:inherit;white-space:normal;overflow:visible;overflow-wrap:anywhere;word-break:break-word}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-checksum>.btn.download-checksum-copy{grid-column:2;grid-row:1/span 2;display:grid;place-items:center;align-self:center;width:44px;min-width:44px;max-width:44px;height:44px;min-height:44px;padding:0;color:var(--text);background:var(--download-inner);font-size:14px!important;font-weight:600;white-space:normal;word-break:normal;overflow-wrap:normal}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-checksum>.download-checksum-copy>svg{display:block;width:20px;height:20px;max-height:20px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .client-module-line>b{font-size:14px;line-height:1.4}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .download-file-details{padding:0;border:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .download-file-details>summary{font-size:14px}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .unified-manifest-warning{padding:0 0 10px;margin:0 0 4px;border:0;border-bottom:1px solid var(--line);border-radius:0;color:var(--muted);background:transparent}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .unified-manifest-warning p{font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-install-hint{display:block;margin:4px 0 0;padding:0;border:0}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-install-hint p{font-size:14px;line-height:1.5}
.shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-install-hint .btn{min-height:44px;padding:6px 0;border:0;background:transparent;text-decoration:underline;text-underline-offset:3px}
@container product-download-links (max-width:280px){
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card{grid-template-columns:minmax(0,1fr);gap:4px}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card>.btn-row{grid-column:1;grid-row:2;justify-content:flex-start}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .btn{justify-content:center;text-align:center}
}
@container product-download-links (max-width:300px){
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-checksum>code{grid-column:1/-1;grid-row:2}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .download-checksum>.btn.download-checksum-copy{grid-row:1}
}
@container product-download-links (max-width:560px){
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .table-wrap:has(>.client-profile-devices){border:0;background:transparent;overflow:visible}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices{display:block;width:100%;min-width:0}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices thead{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices tbody{display:grid;gap:12px;width:100%}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices tbody tr{display:grid;min-width:0;gap:12px;padding:16px;border:1px solid rgba(var(--download-rgb),.24);border-radius:8px;background:var(--download-inner)}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices td{display:block;min-width:0;padding:0;border:0;background:transparent}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices td[data-label]::before{content:attr(data-label);display:block;margin-bottom:4px;color:var(--muted);font-size:14px;font-weight:600;line-height:1.4}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices td[data-device-actions]{display:flex;align-items:center;gap:8px}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-devices td[data-device-actions] .btn{width:100%}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-links .client-profile-form .grid{grid-template-columns:minmax(0,1fr)}
}

:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page{
  --download-rgb:38,123,45;
  --download-surface:rgba(255,255,252,.97);
  --download-inner:rgba(248,251,248,.96);
}
:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page>.download-section{border-color:var(--line);background:var(--download-surface)}
:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page .download-card{
  border-color:var(--line);
  background:var(--download-inner);
  box-shadow:none;
}
:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page .download-card.recommended{border-color:rgba(var(--download-rgb),.45);box-shadow:none}
:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card{background:transparent}
:root[data-theme="light"] .shell[data-page="client"] .unified-client-page.download-page .download-product-links .platform-card .btn.primary:not(:disabled){color:#ffffff}

@media(min-width:1121px){
  .shell[data-page="client"] .unified-client-page.download-page .unified-download-grid>.unified-client-card:only-of-type{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(230px,.6fr);
    align-items:start;
    gap:12px 24px;
  }
  .shell[data-page="client"] .unified-client-page.download-page .unified-client-card:only-of-type>:is(.download-head,.download-tags,.client-module-line){grid-column:1}
  .shell[data-page="client"] .unified-client-page.download-page .unified-client-card:only-of-type>.btn-row{grid-column:2;grid-row:1/span 3;align-self:center;margin:0}
  .shell[data-page="client"] .unified-client-page.download-page .unified-client-card:only-of-type>:is(p,.client-download-next-step,.download-file-details){grid-column:1/-1}
}
@media(max-width:760px){
  .shell[data-page="client"] .unified-client-page.download-page .download-product-intro{grid-template-columns:minmax(0,1fr);gap:20px}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-copy :is(h1,h2){font-size:24px}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-visual{justify-self:center}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-gallery{grid-template-columns:minmax(0,1fr)}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-copy{gap:14px}
  .shell[data-page="client"] .unified-client-page.download-page .download-product-art{max-width:560px}
  .shell[data-page="client"] .unified-client-page.download-page .client-custom-node .table-wrap:has(>.client-profile-devices){border:0;background:transparent;overflow:visible}
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices{display:block;width:100%;min-width:0}
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices thead{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip-path:inset(50%);
    white-space:nowrap;
  }
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices tbody{display:grid;gap:12px;width:100%}
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices tbody tr{
    display:grid;
    min-width:0;
    gap:12px;
    padding:16px;
    border:1px solid rgba(var(--download-rgb),.24);
    border-radius:8px;
    background:var(--download-inner);
  }
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices td{display:block;min-width:0;padding:0;border:0;background:transparent}
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices td[data-label]::before{
    content:attr(data-label);
    display:block;
    margin-bottom:4px;
    color:var(--muted);
    font-size:14px;
    font-weight:600;
    line-height:1.4;
  }
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices td[data-device-actions]{display:flex;align-items:center;gap:8px}
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-devices td[data-device-actions] .btn{width:100%}
}
@media(max-width:620px){
  .shell[data-page="client"] .unified-client-page.download-page{gap:16px}
  .shell[data-page="client"] .unified-client-page.download-page>.unified-client-flow-hero{min-height:0;padding:16px;gap:10px}
  .shell[data-page="client"] .unified-client-page.download-page>.unified-client-flow-hero h1{font-size:24px}
  .shell[data-page="client"] .unified-client-page.download-page .download-paths{grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}
  .shell[data-page="client"] .unified-client-page.download-page .download-tabs .download-path-card{flex-direction:column;gap:6px;padding:10px 6px}
  .shell[data-page="client"] .unified-client-page.download-page .download-device-stage{grid-template-columns:minmax(0,1fr) minmax(64px,.32fr);gap:10px;padding:12px}
  .shell[data-page="client"] .unified-client-page.download-page .download-device-stage>.download-device-phone{padding:3px;border-radius:12px}
  .shell[data-page="client"] .unified-client-page.download-page .download-device-phone img{border-radius:8px}
  .shell[data-page="client"] .unified-client-page.download-page>.download-section{padding:16px}
  .shell[data-page="client"] .unified-client-page.download-page .download-section-heading{gap:12px}
  .shell[data-page="client"] .unified-client-page.download-page .download-section-heading h2{font-size:20px}
  .shell[data-page="client"] .unified-client-page.download-page :is(.unified-download-grid,.node-artifact-grid){grid-template-columns:minmax(0,1fr);gap:12px}
  .shell[data-page="client"] .unified-client-page.download-page .download-card{padding:16px}
  .shell[data-page="client"] .unified-client-page.download-page .client-custom-controls-head{grid-template-columns:24px minmax(0,1fr) auto;padding:12px;gap:8px}
  .shell[data-page="client"] .unified-client-page.download-page .client-custom-controls .client-profile-advanced-body{padding:12px;gap:14px}
  .shell[data-page="client"] .unified-client-page.download-page .client-profile-form .grid{grid-template-columns:minmax(0,1fr)}
}
@media(prefers-reduced-motion:reduce){
  .shell[data-page="client"] .unified-client-page.download-page .download-path-card{transition:none}
}
