
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root{
  --bg:#070910;
  --panel:#0c1019;
  --panel2:#111726;
  --border:#1d2434;
  --text:#f3f6ff;
  --muted:#9ea7ba;
  --blue:#6b7cff;
  --blue-2:#4e60ff;
  --purple:#a184ff;
  --green:#67e0a6;
  --orange:#ffb36b;
  --gold:#ffd16a;
  --red:#ff7a8f;
  --max:1180px;
  --radius:18px;
  --shadow:0 20px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 20% 0%, rgba(107,124,255,.12), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(161,132,255,.10), transparent 22%),
    var(--bg);
  color:var(--text);
  font-family:"DM Sans",system-ui,sans-serif;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
h1,h2,h3,h4{margin:0 0 14px; line-height:1.08; font-family:"Space Grotesk","DM Sans",sans-serif}
p{margin:0 0 14px}
.muted{color:var(--muted)}

.nav-wrap{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(16px);
  background:rgba(7,9,16,.78);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  min-height:76px;
  display:flex; align-items:center; gap:22px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700; letter-spacing:.08em;
}
.brand-mark{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow:0 10px 30px rgba(107,124,255,.25);
  font-weight:800;
}
.nav-links{display:flex; gap:20px; margin-left:auto}
.nav-links a{
  color:var(--muted);
  font-weight:500;
}
.nav-links a.active,.nav-links a:hover{color:var(--text)}
.nav-actions{display:flex; align-items:center; gap:12px}
.lang-switch{
  display:flex; gap:6px; align-items:center;
  padding:6px; border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03); border-radius:999px;
}
.lang-switch a{
  padding:7px 12px; border-radius:999px;
  color:var(--muted); font-size:.92rem;
}
.lang-switch a.active{background:rgba(255,255,255,.09); color:var(--text)}
.menu-toggle{
  display:none; margin-left:auto;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--text); border-radius:12px; padding:10px 12px;
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  border-radius:14px; padding:12px 18px; font-weight:600;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow:0 12px 30px rgba(78,96,255,.28);
}
.btn-ghost{
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.03);
}
.btn-large{padding:15px 22px}
.text-link{color:#b9c5ff; font-weight:600}

.hero{
  padding:90px 0 70px;
  display:grid; grid-template-columns:1.15fr .85fr; gap:36px; align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  color:#c0c8dd; font-size:.9rem; font-weight:700;
  letter-spacing:.11em; text-transform:uppercase;
  margin-bottom:18px;
}
.pulse{
  width:8px; height:8px; border-radius:999px; background:var(--green);
  box-shadow:0 0 0 8px rgba(103,224,166,.12);
}
.hero h1,.page-hero h1{
  font-size:clamp(2.8rem, 7vw, 5.3rem);
  letter-spacing:-.045em;
}
.hero h1 span,.page-hero h1 span,.section-head h2 span{color:#b7bfff}
.hero-text,.page-hero p{
  color:var(--muted); max-width:660px; font-size:1.08rem;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin:28px 0}
.compat{display:flex; flex-wrap:wrap; gap:10px}
.compat span,.chips span,.feature-list span,.mini-tag{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#cdd5e8; border-radius:999px; padding:8px 12px; font-size:.9rem;
}
.hero-panel,.status-card,.detail-card,.doc-card,.release,.feature,.cta,.product-card{
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
}
.hero-panel{
  border-radius:24px; padding:22px;
}
.panel-top{
  display:flex; justify-content:space-between; gap:14px; align-items:center;
  color:#d1d9eb; font-size:.92rem; margin-bottom:18px;
}
.status{display:inline-flex; align-items:center; gap:8px; color:#d8ffec}
.status i,.service-dot{
  width:10px; height:10px; border-radius:999px; background:var(--green);
  display:inline-block;
  box-shadow:0 0 0 7px rgba(103,224,166,.12);
}
.terminal-line{
  font-family:ui-monospace,SFMono-Regular,Consolas,monospace;
  color:#d8def0; padding:14px 16px; border-radius:14px;
  background:rgba(0,0,0,.22); margin-bottom:14px;
}
.system-row,.service{
  display:flex; justify-content:space-between; gap:12px; align-items:center;
  padding:14px 0; border-top:1px solid rgba(255,255,255,.06);
}
.sys-icon,.product-icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center; font-weight:800;
  background:rgba(255,255,255,.06);
}
.sys-icon{margin-right:12px}
.ok{color:#c9ffdf; font-weight:700; font-size:.9rem}
.metrics{
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px;
}
.metrics div{
  padding:16px; border-radius:16px; background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
}
.metrics strong{display:block; font-size:1.45rem}
.metrics span{color:var(--muted); font-size:.92rem}

.section,.feature-section,.page-hero{padding:70px 0}
.page-hero{padding-bottom:30px}
.section-head{
  display:flex; justify-content:space-between; gap:20px; align-items:end;
  margin-bottom:28px;
}
.section-head h2{font-size:clamp(2rem, 5vw, 3.3rem); letter-spacing:-.04em}
.product-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:22px;
}
.product-card{
  border-radius:22px; padding:24px; position:relative; overflow:hidden;
}
.product-card.featured .card-glow{
  position:absolute; inset:auto -20% -30% auto; width:240px; height:240px;
  border-radius:999px; background:radial-gradient(circle, rgba(107,124,255,.22), transparent 62%);
}
.product-top,.detail-header{
  display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px;
}
.product-icon.big{width:60px; height:60px; font-size:1.2rem}
.product-icon.purple{background:rgba(161,132,255,.15); color:#ccbaff}
.product-icon.orange{background:rgba(255,179,107,.15); color:#ffc78f}
.product-icon.green{background:rgba(103,224,166,.15); color:#96efc2}
.product-icon.gold{background:rgba(255,209,106,.15); color:#ffe39e}
.product-icon.blue{background:rgba(107,124,255,.15); color:#b7c1ff}
.tag{
  border:1px solid rgba(107,124,255,.22);
  background:rgba(107,124,255,.10);
  color:#d6ddff;
  border-radius:999px;
  padding:7px 12px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.04em;
}
.tag.beta{
  border-color:rgba(255,179,107,.18);
  background:rgba(255,179,107,.10);
  color:#ffd8b6;
}
.tag.archived{
  border-color:rgba(255,122,143,.18);
  background:rgba(255,122,143,.10);
  color:#ffc8d1;
}
.card-bottom{
  margin-top:18px; padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex; justify-content:space-between; gap:14px; align-items:center;
  color:var(--muted); font-size:.95rem;
}
.feature-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.feature{
  padding:22px; border-radius:20px;
}
.feature-number{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(107,124,255,.12); color:#cad2ff; margin-bottom:16px; font-weight:800;
}
.feature p{color:var(--muted)}
.cta{
  margin:40px auto 80px; border-radius:28px; padding:32px;
  display:flex; justify-content:space-between; gap:20px; align-items:center;
}

.detail-card{
  border-radius:26px; padding:26px; margin-bottom:22px;
}
.detail-body{
  display:grid; grid-template-columns:1.5fr .7fr; gap:20px; align-items:start;
}
.spec-box{
  padding:20px; border-radius:20px; background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
.spec-box span{display:block; color:#c7d0e6; font-size:.88rem; letter-spacing:.08em; margin-bottom:8px}
.spec-box strong{display:block; font-size:1.2rem; margin-bottom:4px}
.spec-box small{display:block; color:var(--muted)}
.feature-list{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:18px;
}
.alert-box{
  margin:18px 0 0;
  border:1px solid rgba(255,122,143,.18);
  background:rgba(255,122,143,.08);
  border-radius:18px; padding:18px;
}
.alert-box strong{display:block; margin-bottom:6px}
.alert-box p{margin:0; color:#f0d8df}

.timeline{
  display:grid; gap:18px;
}
.release{
  border-radius:22px; padding:22px;
  display:grid; grid-template-columns:220px 1fr; gap:20px;
}
.release-meta span{display:block; color:#c7cfe2; font-size:.85rem; letter-spacing:.08em}
.release-meta strong{display:block; font-size:1.6rem; margin:6px 0}
.release-meta small{color:var(--muted)}
.release-content ul{margin:14px 0 0; padding-left:18px; color:var(--muted)}

.doc-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
}
.doc-card{
  border-radius:22px; padding:24px;
  display:block;
}
.doc-icon{
  width:48px; height:48px; display:grid; place-items:center; margin-bottom:16px;
  background:rgba(107,124,255,.12); border-radius:14px; color:#d8deff; font-weight:800;
}
.search-fake{
  margin-top:18px; display:inline-flex; align-items:center; gap:14px;
  border-radius:16px; padding:12px 16px;
  border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03);
  color:var(--muted);
}
.search-fake kbd{
  border:1px solid rgba(255,255,255,.08); border-bottom-width:2px;
  border-radius:10px; padding:4px 8px; color:#dce2f0; font-family:inherit;
}

.status-card{
  border-radius:26px; padding:26px;
}
.overall{
  display:flex; justify-content:space-between; gap:16px; align-items:center;
  margin-bottom:12px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,.06);
}
.overall strong{font-size:2rem}

.footer{
  padding:34px 0 24px; border-top:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.12);
}
.footer-grid{
  display:grid; grid-template-columns:1.2fr 1fr 1fr 1fr; gap:22px;
}
.footer-grid strong{display:block; margin-bottom:12px}
.footer-grid a{display:block; color:var(--muted); margin:8px 0}
.footer-grid p{color:var(--muted)}
.footer-bottom{
  display:flex; justify-content:space-between; gap:16px; margin-top:20px;
  padding-top:20px; border-top:1px solid rgba(255,255,255,.06);
  color:var(--muted); font-size:.92rem;
}

@media (max-width: 1100px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 900px){
  .menu-toggle{display:block}
  .nav{flex-wrap:wrap; padding:12px 0}
  .nav-links,.nav-actions{
    width:100%; display:none; flex-direction:column; align-items:flex-start;
    padding:6px 0 10px;
  }
  .nav.open .nav-links,.nav.open .nav-actions{display:flex}
  .nav-links{margin-left:0}
  .hero,.detail-body,.release,.cta,.footer-grid,.product-grid,.doc-grid{
    grid-template-columns:1fr;
  }
  .overall,.section-head,.footer-bottom{flex-direction:column; align-items:flex-start}
}


/* =========================================================
   Professional plugin catalogue
   ========================================================= */
.plugins-page{
  padding-top:48px;
}
.plugins-hero{
  padding:88px 0 38px;
  display:grid;
  grid-template-columns:minmax(0, 8fr) minmax(260px, 4fr);
  gap:48px;
  align-items:end;
}
.plugins-hero-copy{
  max-width:760px;
}
.plugins-hero-copy p{
  max-width:640px;
}
.plugins-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border:1px solid rgba(255,255,255,.075);
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.022);
}
.plugins-summary div{
  min-height:104px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.plugins-summary div:nth-child(odd){
  border-right:1px solid rgba(255,255,255,.065);
}
.plugins-summary div:nth-child(-n+2){
  border-bottom:1px solid rgba(255,255,255,.065);
}
.plugins-summary strong{
  font:700 1.65rem "Space Grotesk",sans-serif;
  letter-spacing:-.04em;
}
.plugins-summary span{
  color:var(--muted);
  font-size:.84rem;
}
.catalogue-bar{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:18px 0 28px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.catalogue-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
}
.catalogue-count{
  min-width:28px;
  height:28px;
  padding:0 9px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  background:rgba(107,124,255,.12);
  border:1px solid rgba(107,124,255,.18);
  color:#d8deff;
  font-size:.82rem;
}
.catalogue-note{
  color:var(--muted);
  font-size:.9rem;
}
.plugin-catalogue{
  display:grid;
  gap:20px;
  padding:28px 0 80px;
}
.plugin-card-pro{
  --accent:107,124,255;
  display:grid;
  grid-template-columns:minmax(0,8fr) minmax(270px,4fr);
  min-height:360px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.075);
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(var(--accent),.045), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.012));
  box-shadow:0 18px 54px rgba(0,0,0,.23);
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.plugin-card-pro:hover{
  transform:translateY(-2px);
  border-color:rgba(var(--accent),.28);
  box-shadow:0 26px 70px rgba(0,0,0,.32);
}
.plugin-card-pro.jobs{--accent:161,132,255}
.plugin-card-pro.clans{--accent:255,179,107}
.plugin-card-pro.economy{--accent:103,224,166}
.plugin-card-pro.bank{--accent:255,209,106}
.plugin-main{
  padding:30px 32px 28px;
  display:grid;
  grid-template-rows:auto auto 1fr auto;
  min-width:0;
}
.plugin-side{
  border-left:1px solid rgba(255,255,255,.065);
  padding:28px;
  background:rgba(0,0,0,.095);
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:22px;
}
.plugin-heading{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}
.plugin-heading-copy{
  min-width:0;
}
.plugin-heading h2{
  margin:7px 0 3px;
  font-size:clamp(1.65rem,2.5vw,2.2rem);
  letter-spacing:-.035em;
}
.plugin-heading p{
  color:var(--muted);
  margin:0;
  font-size:.96rem;
}
.plugin-card-pro .product-icon.big{
  width:58px;
  height:58px;
  border-radius:17px;
  flex:0 0 58px;
}
.plugin-intro{
  padding:26px 0 20px;
  max-width:730px;
}
.plugin-intro h3{
  font-size:1.2rem;
  margin-bottom:8px;
}
.plugin-intro p{
  color:var(--muted);
  max-width:680px;
}
.plugin-feature-grid{
  align-self:end;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.plugin-feature{
  min-height:64px;
  padding:12px 13px;
  border-radius:13px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.055);
  display:flex;
  align-items:center;
  gap:9px;
  color:#d1d7e5;
  font-size:.87rem;
  line-height:1.25;
}
.plugin-feature i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgb(var(--accent));
  box-shadow:0 0 12px rgba(var(--accent),.42);
  flex:0 0 6px;
}
.plugin-side-label{
  color:#7d879b;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.72rem;
  font-weight:700;
}
.plugin-meta{
  display:grid;
  gap:14px;
}
.plugin-meta-row{
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.plugin-meta-row:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.plugin-meta-row span{
  display:block;
  color:#7e879a;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:4px;
}
.plugin-meta-row strong{
  display:block;
  color:#eef2fb;
  font-size:.96rem;
  font-weight:600;
}
.plugin-actions{
  display:grid;
  gap:9px;
}
.plugin-actions .btn{
  width:100%;
  justify-content:center;
  min-height:46px;
}
.plugin-actions .btn-subtle{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
}
.archive-strip{
  margin-top:20px;
  border:1px solid rgba(255,122,143,.16);
  border-radius:14px;
  background:rgba(255,122,143,.055);
  padding:14px 16px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:start;
}
.archive-icon{
  width:28px;
  height:28px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:rgba(255,122,143,.12);
  color:#ffc5cf;
  font-weight:800;
}
.archive-strip strong{
  display:block;
  margin-bottom:3px;
  font-size:.94rem;
}
.archive-strip p{
  margin:0;
  color:#cab8bd;
  font-size:.86rem;
}
.plugin-index{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:26px;
}
.plugin-index a{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  border-radius:13px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
  color:#c9d0e0;
  font-size:.9rem;
}
.plugin-index a:hover{
  border-color:rgba(107,124,255,.2);
  background:rgba(107,124,255,.055);
}
.plugin-index-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#7d89ff;
}
.plugin-index a.archived .plugin-index-dot{
  background:var(--red);
}
@media(max-width:980px){
  .plugins-hero,
  .plugin-card-pro{
    grid-template-columns:1fr;
  }
  .plugin-side{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.065);
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
  }
  .plugin-actions{
    align-self:end;
  }
}
@media(max-width:720px){
  .plugins-hero{
    padding-top:60px;
    gap:28px;
  }
  .plugin-index{
    grid-template-columns:1fr 1fr;
  }
  .plugin-feature-grid{
    grid-template-columns:1fr 1fr;
  }
  .plugin-main,
  .plugin-side{
    padding:22px;
  }
  .plugin-side{
    grid-template-columns:1fr;
  }
}
@media(max-width:480px){
  .plugin-index,
  .plugin-feature-grid,
  .plugins-summary{
    grid-template-columns:1fr;
  }
  .plugins-summary div{
    border-right:0 !important;
    border-bottom:1px solid rgba(255,255,255,.065);
  }
  .plugins-summary div:last-child{
    border-bottom:0;
  }
  .catalogue-bar{
    align-items:flex-start;
    flex-direction:column;
  }
}

.plugin-card-pro.jobs .product-icon{background:rgba(161,132,255,.15);color:#ccbaff}
.plugin-card-pro.clans .product-icon{background:rgba(255,179,107,.15);color:#ffc78f}
.plugin-card-pro.economy .product-icon{background:rgba(103,224,166,.15);color:#96efc2}
.plugin-card-pro.bank .product-icon{background:rgba(255,209,106,.15);color:#ffe39e}


/* =========================================================
   Professional changelog page
   ========================================================= */
.changelog-page{
  padding-top:48px;
}
.changelog-hero{
  padding:88px 0 34px;
  display:grid;
  grid-template-columns:minmax(0, 8fr) minmax(260px, 4fr);
  gap:46px;
  align-items:end;
}
.changelog-hero-copy{
  max-width:760px;
}
.changelog-hero-copy p{
  max-width:660px;
}
.changelog-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border:1px solid rgba(255,255,255,.075);
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.022);
}
.changelog-summary div{
  min-height:104px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.changelog-summary div:nth-child(odd){
  border-right:1px solid rgba(255,255,255,.065);
}
.changelog-summary div:nth-child(-n+2){
  border-bottom:1px solid rgba(255,255,255,.065);
}
.changelog-summary strong{
  font:700 1.65rem "Space Grotesk",sans-serif;
  letter-spacing:-.04em;
}
.changelog-summary span{
  color:var(--muted);
  font-size:.84rem;
}
.release-filter-bar{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:18px 0 28px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.release-filter-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
}
.release-count{
  min-width:28px;
  height:28px;
  padding:0 9px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  background:rgba(107,124,255,.12);
  border:1px solid rgba(107,124,255,.18);
  color:#d8deff;
  font-size:.82rem;
}
.release-filter-note{
  color:var(--muted);
  font-size:.9rem;
}
.release-stack{
  position:relative;
  display:grid;
  gap:18px;
  padding:30px 0 80px;
}
.release-stack::before{
  content:"";
  position:absolute;
  left:170px;
  top:30px;
  bottom:80px;
  width:1px;
  background:linear-gradient(180deg, rgba(107,124,255,.18), rgba(255,255,255,.03));
  pointer-events:none;
}
.release-card-pro{
  position:relative;
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  gap:26px;
  align-items:start;
}
.release-date-rail{
  position:relative;
  padding-top:12px;
}
.release-date-badge{
  position:relative;
  z-index:2;
  display:inline-grid;
  gap:4px;
  width:116px;
  padding:16px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  text-align:left;
}
.release-date-badge strong{
  font:700 1.2rem "Space Grotesk",sans-serif;
  letter-spacing:-.03em;
}
.release-date-badge span{
  color:var(--muted);
  font-size:.8rem;
}
.release-dot{
  position:absolute;
  right:-28px;
  top:34px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#7d89ff;
  box-shadow:0 0 0 7px rgba(107,124,255,.12);
  z-index:3;
}
.release-card-shell{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.075);
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(107,124,255,.05), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.012));
  box-shadow:0 18px 54px rgba(0,0,0,.23);
  padding:26px 28px;
}
.release-card-shell.archived{
  background:
    linear-gradient(135deg, rgba(255,122,143,.06), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.012));
}
.release-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-bottom:18px;
}
.release-head-copy{
  min-width:0;
}
.release-kicker{
  color:#aeb8cf;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.73rem;
  font-weight:700;
  margin-bottom:8px;
}
.release-head h2{
  font-size:clamp(1.5rem,2.5vw,2rem);
  letter-spacing:-.04em;
  margin:0 0 6px;
}
.release-head p{
  color:var(--muted);
  margin:0;
  max-width:760px;
}
.release-grid{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr);
  gap:20px;
  align-items:start;
}
.release-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.release-point{
  min-height:58px;
  border-radius:14px;
  padding:12px 13px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.055);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  color:#d6dbea;
}
.release-point i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#7d89ff;
  box-shadow:0 0 10px rgba(107,124,255,.4);
  flex:0 0 7px;
}
.release-side{
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.022);
  border-radius:18px;
  padding:18px;
  display:grid;
  gap:14px;
}
.release-side-row{
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.release-side-row:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.release-side-row span{
  display:block;
  color:#818ca2;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.73rem;
  margin-bottom:4px;
}
.release-side-row strong{
  display:block;
  font-size:.95rem;
}
.release-link{
  margin-top:2px;
}
.release-link .btn{
  width:100%;
  justify-content:center;
}
.release-mini-index{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:24px;
}
.release-mini-index a{
  min-height:46px;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:13px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
  color:#c9d0e0;
  font-size:.9rem;
}
.release-mini-index a:hover{
  border-color:rgba(107,124,255,.2);
  background:rgba(107,124,255,.055);
}
.release-mini-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#7d89ff;
}
.release-mini-index a.archived .release-mini-dot{
  background:var(--red);
}
@media(max-width:980px){
  .changelog-hero{
    grid-template-columns:1fr;
  }
  .release-stack::before{
    display:none;
  }
  .release-card-pro{
    grid-template-columns:1fr;
    gap:14px;
  }
  .release-date-rail{
    padding-top:0;
  }
  .release-dot{
    display:none;
  }
  .release-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:720px){
  .changelog-hero{
    padding-top:60px;
    gap:28px;
  }
  .release-mini-index,
  .release-points{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:480px){
  .release-mini-index,
  .release-points,
  .changelog-summary{
    grid-template-columns:1fr;
  }
  .changelog-summary div{
    border-right:0 !important;
    border-bottom:1px solid rgba(255,255,255,.065);
  }
  .changelog-summary div:last-child{
    border-bottom:0;
  }
  .release-filter-bar{
    align-items:flex-start;
    flex-direction:column;
  }
}


/* =========================================================
   Integrated documentation
   ========================================================= */
.docs-layout{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:28px;
  align-items:start;
  padding:42px 0 80px;
}
.docs-sidebar{
  position:sticky;
  top:100px;
  max-height:calc(100vh - 125px);
  overflow:auto;
  padding:18px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  background:rgba(255,255,255,.022);
}
.docs-sidebar-brand{
  padding:6px 8px 16px;
  border-bottom:1px solid rgba(255,255,255,.06);
  margin-bottom:14px;
}
.docs-sidebar-brand strong{
  display:block;
  font:700 1rem "Space Grotesk",sans-serif;
}
.docs-sidebar-brand span{
  display:block;
  color:var(--muted);
  font-size:.8rem;
  margin-top:3px;
}
.docs-nav-group{
  margin:17px 0 7px;
  color:#778196;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.7rem;
  font-weight:700;
}
.docs-sidebar a{
  display:block;
  padding:8px 9px;
  border-radius:9px;
  color:#aeb7ca;
  font-size:.88rem;
}
.docs-sidebar a:hover,.docs-sidebar a.active{
  background:rgba(107,124,255,.085);
  color:#eef1ff;
}
.docs-content{
  min-width:0;
  border:1px solid rgba(255,255,255,.07);
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.012));
  box-shadow:0 18px 55px rgba(0,0,0,.2);
  overflow:hidden;
}
.docs-content-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:17px 24px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.08);
}
.docs-breadcrumb{
  color:#8d97aa;
  font-size:.82rem;
}
.docs-breadcrumb strong{color:#d5dbeb}
.docs-source-pill{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.07);
  color:#aeb6c7;
  font-size:.76rem;
}
.docs-article{
  padding:38px 42px 54px;
  max-width:900px;
}
.docs-article h1{
  font-size:clamp(2rem,5vw,3.3rem);
  letter-spacing:-.04em;
  margin-bottom:20px;
}
.docs-article h2{
  font-size:1.55rem;
  margin-top:38px;
  margin-bottom:14px;
  padding-top:4px;
}
.docs-article h3{
  font-size:1.12rem;
  margin-top:27px;
  margin-bottom:10px;
}
.docs-article p,.docs-article li{
  color:#abb4c6;
}
.docs-article ul,.docs-article ol{
  padding-left:22px;
}
.docs-article li{margin:6px 0}
.docs-article a{
  color:#b8c2ff;
  text-decoration:underline;
  text-decoration-color:rgba(184,194,255,.3);
  text-underline-offset:3px;
}
.docs-article code{
  font-family:ui-monospace,SFMono-Regular,Consolas,monospace;
  font-size:.88em;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.22);
  border-radius:7px;
  padding:2px 6px;
  color:#dbe2f6;
}
.docs-article pre{
  overflow:auto;
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.07);
  background:#070a10;
}
.docs-article pre code{
  border:0;
  background:none;
  padding:0;
  font-size:.85rem;
}
.docs-article blockquote{
  margin:20px 0;
  padding:14px 17px;
  border-left:3px solid #7484ff;
  background:rgba(107,124,255,.07);
  border-radius:0 12px 12px 0;
  color:#bec7dc;
}
.docs-table-wrap{
  overflow:auto;
  border:1px solid rgba(255,255,255,.07);
  border-radius:14px;
  margin:16px 0;
}
.docs-table{
  width:100%;
  border-collapse:collapse;
  min-width:520px;
}
.docs-table th,.docs-table td{
  padding:11px 13px;
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:left;
}
.docs-table th{
  background:rgba(255,255,255,.035);
  color:#d9dfed;
  font-size:.84rem;
}
.docs-table td{
  color:#aab3c5;
  font-size:.88rem;
}
.docs-index-hero{
  padding:82px 0 34px;
}
.docs-product-card{
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:18px;
  align-items:center;
  padding:22px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.022);
  border-radius:20px;
}
.docs-product-card .product-icon{width:58px;height:58px}
.docs-product-card p{color:var(--muted);margin:3px 0 0}
.docs-notice{
  margin-top:20px;
  border:1px solid rgba(107,124,255,.15);
  background:rgba(107,124,255,.055);
  border-radius:16px;
  padding:15px 17px;
  color:#b9c2d7;
}
@media(max-width:900px){
  .docs-layout{grid-template-columns:1fr}
  .docs-sidebar{position:relative;top:auto;max-height:none}
  .docs-content-top{align-items:flex-start;flex-direction:column}
}
@media(max-width:600px){
  .docs-article{padding:28px 22px 42px}
  .docs-product-card{grid-template-columns:58px 1fr}
  .docs-product-card .btn{grid-column:1/-1;width:100%;justify-content:center}
}


/* =========================================================
   Professional documentation hub
   ========================================================= */
.docs-hub-page{
  padding-top:48px;
}
.docs-hub-hero{
  padding:88px 0 36px;
  display:grid;
  grid-template-columns:minmax(0,8fr) minmax(260px,4fr);
  gap:46px;
  align-items:end;
}
.docs-hub-copy{
  max-width:760px;
}
.docs-hub-copy p{
  max-width:650px;
}
.docs-hub-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border:1px solid rgba(255,255,255,.075);
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.022);
}
.docs-hub-summary div{
  min-height:104px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.docs-hub-summary div:nth-child(odd){
  border-right:1px solid rgba(255,255,255,.065);
}
.docs-hub-summary div:nth-child(-n+2){
  border-bottom:1px solid rgba(255,255,255,.065);
}
.docs-hub-summary strong{
  font:700 1.65rem "Space Grotesk",sans-serif;
  letter-spacing:-.04em;
}
.docs-hub-summary span{
  color:var(--muted);
  font-size:.84rem;
}
.docs-hub-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0 28px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.docs-hub-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
}
.docs-hub-count{
  min-width:28px;
  height:28px;
  padding:0 9px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  background:rgba(107,124,255,.12);
  border:1px solid rgba(107,124,255,.18);
  color:#d8deff;
  font-size:.82rem;
}
.docs-hub-note{
  color:var(--muted);
  font-size:.9rem;
}
.docs-product-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  padding:28px 0 80px;
}
.docs-product-pro{
  --accent:107,124,255;
  min-height:310px;
  display:grid;
  grid-template-rows:auto auto 1fr auto;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.075);
  border-radius:24px;
  padding:26px;
  background:
    linear-gradient(135deg, rgba(var(--accent),.05), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.012));
  box-shadow:0 18px 54px rgba(0,0,0,.23);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.docs-product-pro:hover{
  transform:translateY(-2px);
  border-color:rgba(var(--accent),.28);
  box-shadow:0 26px 70px rgba(0,0,0,.32);
}
.docs-product-pro.jobs{--accent:161,132,255}
.docs-product-pro.clans{--accent:255,179,107}
.docs-product-pro.economy{--accent:103,224,166}
.docs-product-pro.bank{--accent:255,209,106}
.docs-product-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.docs-product-title{
  display:flex;
  align-items:center;
  gap:15px;
}
.docs-product-title .product-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  flex:0 0 54px;
}
.docs-product-title h2{
  margin:0 0 3px;
  font-size:1.45rem;
  letter-spacing:-.03em;
}
.docs-product-title p{
  margin:0;
  color:var(--muted);
  font-size:.9rem;
}
.docs-product-status{
  flex:0 0 auto;
}
.docs-product-copy{
  padding:22px 0 18px;
  color:var(--muted);
  max-width:620px;
}
.docs-product-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  align-self:end;
}
.docs-product-meta div{
  min-height:72px;
  padding:12px 13px;
  border-radius:14px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.055);
}
.docs-product-meta span{
  display:block;
  color:#7f899d;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.7rem;
  margin-bottom:4px;
}
.docs-product-meta strong{
  display:block;
  font-size:.9rem;
}
.docs-product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
}
.docs-product-actions .btn{
  min-width:140px;
  justify-content:center;
}
.docs-hub-callout{
  margin-top:22px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(107,124,255,.14);
  background:rgba(107,124,255,.055);
  color:#b9c2d7;
}
.docs-hub-callout strong{
  color:#eef1ff;
}
@media(max-width:980px){
  .docs-hub-hero,
  .docs-product-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:720px){
  .docs-hub-hero{
    padding-top:60px;
    gap:28px;
  }
  .docs-product-meta{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:480px){
  .docs-hub-summary,
  .docs-product-meta{
    grid-template-columns:1fr;
  }
  .docs-hub-summary div{
    border-right:0 !important;
    border-bottom:1px solid rgba(255,255,255,.065);
  }
  .docs-hub-summary div:last-child{
    border-bottom:0;
  }
  .docs-hub-bar{
    align-items:flex-start;
    flex-direction:column;
  }
  .docs-product-head{
    flex-direction:column;
  }
  .docs-product-actions{
    display:grid;
  }
}

/* =========================================================
   v19 — Professional platform overhaul
   ========================================================= */
:root{
  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;
  --surface-1:rgba(255,255,255,.022);
  --surface-2:rgba(255,255,255,.038);
  --line:rgba(255,255,255,.075);
}
html{scroll-behavior:smooth}
body{background:
  radial-gradient(circle at 48% -10%,rgba(92,98,255,.08),transparent 31rem),
  var(--bg);
}
.nav-wrap{
  backdrop-filter:blur(18px);
  background:rgba(7,9,14,.72);
  border-bottom:1px solid rgba(255,255,255,.055);
}
.nav{min-height:72px}
.nav-links a{position:relative}
.nav-links a::after{
  content:"";position:absolute;left:12px;right:12px;bottom:-9px;height:2px;
  border-radius:9px;background:linear-gradient(90deg,#7e82ff,#b47cff);
  transform:scaleX(0);transition:transform .18s ease;
}
.nav-links a:hover::after,.nav-links a.active::after{transform:scaleX(1)}
.brand-mark{box-shadow:0 0 28px rgba(111,113,255,.18)}
.btn{transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease,background .16s ease}
.btn:hover{transform:translateY(-1px)}
.btn-primary:hover{box-shadow:0 12px 32px rgba(93,91,255,.24)}
.trust-strip{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:24px
}
.trust-strip span{
  padding:8px 11px;border:1px solid var(--line);border-radius:999px;
  color:#929caf;font-size:.72rem;font-weight:700;letter-spacing:.08em;
  background:rgba(255,255,255,.018)
}
.home-proof{
  display:grid;grid-template-columns:1.2fr .8fr;gap:20px;margin-top:34px
}
.release-preview,.nexcore-preview{
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:25px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015))
}
.release-preview-head,.nexcore-preview-head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:20px
}
.release-preview-list{display:grid;gap:10px}
.release-preview-item{
  display:grid;grid-template-columns:92px 1fr auto;gap:16px;align-items:center;
  padding:13px 0;border-top:1px solid rgba(255,255,255,.055)
}
.release-preview-item:first-child{border-top:0}
.release-preview-item time{font-size:.78rem;color:#7f899b}
.release-preview-item strong{font-size:.92rem}
.release-preview-item span{font-size:.78rem;color:var(--muted)}
.coming-badge{
  display:inline-flex;padding:6px 9px;border:1px solid rgba(132,110,255,.26);
  background:rgba(132,110,255,.08);border-radius:999px;color:#cbc5ff;
  font-size:.7rem;font-weight:800;letter-spacing:.08em
}
.nexcore-preview h3{font-size:1.7rem;margin:10px 0 8px}
.nexcore-preview p{color:var(--muted);margin-bottom:22px}
.product-detail-hero{
  padding:88px 0 40px;display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:42px;align-items:end
}
.product-detail-label{display:flex;align-items:center;gap:15px;margin-bottom:20px}
.product-detail-label .product-icon{width:60px;height:60px;border-radius:18px}
.product-detail-hero h1{font-size:clamp(2.8rem,6vw,5.4rem);margin:0 0 18px;letter-spacing:-.065em}
.product-detail-hero p{max-width:720px;color:var(--muted);font-size:1.04rem}
.product-detail-side{
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:20px;background:var(--surface-1)
}
.product-detail-side-row{
  display:flex;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(255,255,255,.055)
}
.product-detail-side-row:first-child{border-top:0}
.product-detail-side-row span{color:#7f899b;font-size:.78rem}
.product-detail-side-row strong{text-align:right;font-size:.85rem}
.product-detail-section{padding:30px 0 72px}
.product-detail-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.product-feature-block{
  min-height:150px;padding:20px;border:1px solid var(--line);border-radius:18px;background:var(--surface-1)
}
.product-feature-block b{display:block;margin-bottom:8px}
.product-feature-block p{color:var(--muted);font-size:.9rem;margin:0}
.product-detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}

/* Docs search + article productivity */
.docs-search-shell{position:relative;width:min(440px,100%)}
.docs-search{
  width:100%;height:46px;padding:0 44px 0 16px;border:1px solid var(--line);
  border-radius:14px;background:rgba(255,255,255,.025);color:#eef1f8;outline:none
}
.docs-search:focus{border-color:rgba(112,116,255,.36);box-shadow:0 0 0 4px rgba(112,116,255,.07)}
.docs-search-icon{position:absolute;right:15px;top:50%;transform:translateY(-50%);color:#7f899b}
.docs-search-results{
  position:absolute;z-index:50;left:0;right:0;top:52px;padding:7px;
  background:#10131b;border:1px solid var(--line);border-radius:15px;box-shadow:0 22px 60px rgba(0,0,0,.42);
  display:none;max-height:360px;overflow:auto
}
.docs-search-results.show{display:block}
.docs-search-result{display:block;padding:11px 12px;border-radius:10px;color:#dbe1ec;text-decoration:none}
.docs-search-result:hover{background:rgba(255,255,255,.05)}
.docs-search-result small{display:block;color:#788397;margin-top:3px}
.docs-article pre{position:relative}
.copy-code{
  position:absolute;right:10px;top:10px;border:1px solid rgba(255,255,255,.09);
  background:#171b25;color:#9ca7ba;border-radius:8px;padding:5px 8px;font-size:.7rem;cursor:pointer
}
.docs-heading-anchor{opacity:0;margin-left:8px;color:#747d90;text-decoration:none;transition:opacity .15s ease}
.docs-article h2:hover .docs-heading-anchor,.docs-article h3:hover .docs-heading-anchor{opacity:1}
.docs-toc{
  position:fixed;right:max(20px,calc((100vw - 1320px)/2));top:120px;width:190px;
  padding-left:16px;border-left:1px solid rgba(255,255,255,.07);display:none
}
.docs-toc strong{display:block;font-size:.72rem;letter-spacing:.09em;text-transform:uppercase;color:#7d8799;margin-bottom:10px}
.docs-toc a{display:block;color:#818b9c;text-decoration:none;font-size:.78rem;padding:5px 0}
.docs-toc a:hover{color:#dce1ea}
@media(min-width:1500px){.docs-toc{display:block}.docs-content{padding-right:210px}}

/* Changelog filters */
.release-filter-controls{display:flex;gap:8px;flex-wrap:wrap}
.release-filter-chip{
  border:1px solid var(--line);background:rgba(255,255,255,.02);color:#8e98aa;
  border-radius:999px;padding:8px 12px;font-size:.78rem;font-weight:700;cursor:pointer
}
.release-filter-chip.active,.release-filter-chip:hover{
  color:#fff;border-color:rgba(111,115,255,.32);background:rgba(111,115,255,.1)
}
.release-card-pro.filter-hidden{display:none}

/* Status professional */
.status-overview-grid{display:grid;grid-template-columns:1.2fr repeat(3,.6fr);gap:12px;margin-bottom:22px}
.status-metric{
  border:1px solid var(--line);border-radius:18px;padding:20px;background:var(--surface-1)
}
.status-metric strong{display:block;font-size:1.5rem;margin-bottom:5px}
.status-metric span{color:var(--muted);font-size:.78rem}
.status-history{
  margin-top:24px;padding:22px;border:1px solid var(--line);border-radius:20px;background:var(--surface-1)
}
.uptime-bars{display:grid;grid-template-columns:repeat(30,1fr);gap:4px;margin:18px 0 8px}
.uptime-bars i{display:block;height:34px;border-radius:5px;background:#43c98a;opacity:.75}
.status-history-line{display:flex;justify-content:space-between;color:#818b9a;font-size:.76rem}
.incident-empty{margin-top:16px;padding:18px;border-top:1px solid rgba(255,255,255,.055);color:var(--muted)}

/* Mega/product navigation helper */
.product-quick-nav{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:22px 0 0
}
.product-quick-nav a{
  padding:12px 14px;border:1px solid var(--line);border-radius:14px;background:var(--surface-1);
  color:#aab3c4;text-decoration:none;font-size:.82rem
}
.product-quick-nav a:hover{border-color:rgba(111,115,255,.25);color:#fff}

@media(max-width:980px){
  .home-proof,.product-detail-hero{grid-template-columns:1fr}
  .product-detail-grid{grid-template-columns:1fr 1fr}
  .status-overview-grid{grid-template-columns:1fr 1fr}
  .product-quick-nav{grid-template-columns:1fr 1fr}
}
@media(max-width:650px){
  .release-preview-item{grid-template-columns:1fr;gap:4px}
  .product-detail-grid,.status-overview-grid,.product-quick-nav{grid-template-columns:1fr}
}


/* =========================================================
   v20 — Geometric refinement for plugin catalogue
   ========================================================= */
.plugins-index-page .plugins-hero{
  position:relative;
  padding:92px 0 42px;
}
.plugins-index-page .plugins-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 -8px 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}
.plugins-index-page .plugins-hero-copy{
  position:relative;
  padding-left:2px;
}
.plugins-index-page .plugins-summary{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size:auto, 24px 24px, 24px 24px;
  box-shadow:0 16px 42px rgba(0,0,0,.22);
}
.plugins-index-page .plugins-summary div{
  min-height:114px;
  padding:20px 22px;
}
.plugins-index-page .plugins-summary strong{
  font-size:1.85rem;
  letter-spacing:-.05em;
}
.plugins-index-page .product-quick-nav{
  margin-top:20px;
  gap:12px;
}
.plugins-index-page .product-quick-nav a{
  position:relative;
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012)),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size:auto, 20px 20px, 20px 20px;
}
.plugins-index-page .product-quick-nav a::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:2px;
  background:linear-gradient(135deg, rgba(126,130,255,.9), rgba(180,124,255,.9));
  box-shadow:0 0 16px rgba(126,130,255,.18);
}
.plugins-index-page .catalogue-bar{
  margin-top:8px;
  padding:22px 0 24px;
}
.plugins-index-page .plugin-catalogue{
  counter-reset:pluginCard;
  gap:22px;
}
.plugins-index-page .plugin-card-pro{
  counter-increment:pluginCard;
  grid-template-columns:minmax(0, 8fr) minmax(300px, 3.3fr);
  min-height:392px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(var(--accent),.065), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.014)),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size:auto, auto, 22px 22px, 22px 22px;
  box-shadow:0 22px 54px rgba(0,0,0,.24);
}
.plugins-index-page .plugin-card-pro::before{
  content:"0" counter(pluginCard);
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border:1px solid rgba(var(--accent),.22);
  background:rgba(var(--accent),.08);
  color:rgba(238,241,248,.92);
  font:700 .8rem "Space Grotesk",sans-serif;
  letter-spacing:.08em;
}
.plugins-index-page .plugin-card-pro::after{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.04);
  border-radius:12px;
  pointer-events:none;
}
.plugins-index-page .plugin-card-pro:hover{
  transform:translateY(-3px);
  border-color:rgba(var(--accent),.32);
  box-shadow:0 30px 78px rgba(0,0,0,.34);
}
.plugins-index-page .plugin-main{
  padding:30px 30px 28px;
}
.plugins-index-page .plugin-heading{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:start;
  padding-right:64px;
}
.plugins-index-page .plugin-heading-copy{
  display:grid;
  gap:5px;
}
.plugins-index-page .plugin-heading .tag{
  justify-self:start;
}
.plugins-index-page .plugin-description{
  margin:22px 0 24px;
  max-width:780px;
}
.plugins-index-page .plugin-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:2px;
}
.plugins-index-page .plugin-feature{
  min-height:48px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.065);
  border-radius:12px;
  background:rgba(255,255,255,.025);
  align-items:center;
}
.plugins-index-page .plugin-feature i{
  width:8px;
  height:8px;
  border-radius:2px;
  box-shadow:none;
}
.plugins-index-page .plugin-side{
  position:relative;
  padding:26px;
  border-left:1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.08)),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size:auto, 20px 20px, 20px 20px;
}
.plugins-index-page .plugin-side::before{
  content:"";
  position:absolute;
  inset:14px 14px auto 14px;
  height:1px;
  background:linear-gradient(90deg, rgba(var(--accent),.28), transparent);
}
.plugins-index-page .plugin-meta{
  display:grid;
  gap:10px;
}
.plugins-index-page .plugin-meta-row{
  display:grid;
  grid-template-columns:1fr;
  gap:3px;
  padding:14px 14px 13px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  background:rgba(255,255,255,.02);
}
.plugins-index-page .plugin-meta-row span{
  color:#7d8799;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.plugins-index-page .plugin-meta-row strong{
  font-size:.92rem;
  line-height:1.35;
}
.plugins-index-page .plugin-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.plugins-index-page .plugin-actions .btn{
  justify-content:center;
  min-height:44px;
}
@media(max-width:1080px){
  .plugins-index-page .plugin-card-pro{
    grid-template-columns:1fr;
  }
  .plugins-index-page .plugin-side{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.07);
  }
}
@media(max-width:720px){
  .plugins-index-page .plugin-feature-grid{
    grid-template-columns:1fr;
  }
}

/* v21 — Plugins layout bugfix */
.plugins-index-page .plugins-hero{padding-bottom:48px}
.plugins-index-page .catalogue-bar{margin-top:0}
.plugins-index-page .plugin-catalogue{padding-top:24px}
.plugins-index-page .plugin-card-pro{scroll-margin-top:96px}
.plugins-index-page .plugin-index a{justify-content:flex-start}


/* =========================================================
   v22 — Full version history changelog
   ========================================================= */
.changelog-page .release-stack{
  gap:16px;
}
.release-card-pro.release-history-card{
  grid-template-columns:110px minmax(0,1fr);
}
.release-history-card .release-card-shell{
  padding:0;
  overflow:hidden;
}
.release-history-summary{
  padding:25px 27px;
}
.release-history-summary .release-head{
  margin-bottom:17px;
}
.release-history-summary .release-points{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.release-history-details{
  border-top:1px solid rgba(255,255,255,.065);
  background:rgba(0,0,0,.085);
}
.release-history-details summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:52px;
  padding:0 27px;
  color:#aeb7c8;
  font-size:.84rem;
  font-weight:700;
}
.release-history-details summary::-webkit-details-marker{display:none}
.release-history-details summary::after{
  content:"+";
  width:26px;height:26px;display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.08);border-radius:8px;
  color:#cfd5e1;background:rgba(255,255,255,.025);
}
.release-history-details[open] summary::after{content:"−"}
.release-history-body{
  padding:0 27px 25px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 240px;
  gap:20px;
}
.release-history-body ul{
  margin:0;
  padding-left:18px;
  color:#aab3c4;
}
.release-history-body li{margin:7px 0}
.release-history-meta{
  border:1px solid rgba(255,255,255,.065);
  border-radius:14px;
  overflow:hidden;
  align-self:start;
}
.release-history-meta div{
  padding:11px 12px;
  border-top:1px solid rgba(255,255,255,.055);
}
.release-history-meta div:first-child{border-top:0}
.release-history-meta span{
  display:block;color:#778194;font-size:.67rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:3px
}
.release-history-meta strong{font-size:.82rem}
.release-source-link{
  display:inline-flex;margin-top:14px;color:#aeb7ff;text-decoration:none;font-size:.8rem
}
.release-source-link:hover{color:white}
.release-empty{
  padding:15px;border:1px dashed rgba(255,255,255,.09);border-radius:12px;
  color:#8791a3;font-size:.85rem
}
.release-product-divider{
  margin:42px 0 14px;
  display:flex;align-items:center;gap:14px;
}
.release-product-divider::after{
  content:"";height:1px;flex:1;background:rgba(255,255,255,.07)
}
.release-product-divider h2{font-size:1.2rem;margin:0}
.release-product-divider span{color:#778194;font-size:.76rem}
.changelog-source-note{
  margin:18px 0 30px;padding:16px 18px;border:1px solid rgba(111,115,255,.13);
  background:rgba(111,115,255,.045);border-radius:15px;color:#9fa8ba;font-size:.86rem
}
@media(max-width:760px){
  .release-card-pro.release-history-card{grid-template-columns:1fr}
  .release-history-card .release-date-rail{display:none}
  .release-history-body{grid-template-columns:1fr}
  .release-history-summary .release-points{grid-template-columns:1fr}
}

/* v24 — Legal pages */
.legal-page{padding:90px 0}
.legal-hero{max-width:900px;margin-bottom:34px}.legal-hero h1{margin:10px 0 14px;font-size:clamp(2.8rem,6vw,5rem);letter-spacing:-.055em}.legal-hero p{color:var(--muted);max-width:760px}
.legal-layout{display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:34px;align-items:start}
.legal-card{border:1px solid rgba(255,255,255,.075);border-radius:20px;background:linear-gradient(180deg,rgba(255,255,255,.027),rgba(255,255,255,.012));padding:30px;box-shadow:0 20px 54px rgba(0,0,0,.22)}
.legal-card h2{margin-top:34px;padding-top:24px;border-top:1px solid rgba(255,255,255,.065);font-size:1.35rem}.legal-card h2:first-child{margin-top:0;padding-top:0;border-top:0}.legal-card h3{margin-top:22px;font-size:1.05rem}
.legal-card p,.legal-card li{color:#aeb7c7;line-height:1.75}.legal-card ul,.legal-card ol{padding-left:22px}
.legal-address{display:grid;gap:4px;margin:14px 0 18px;padding:18px;border-radius:14px;border:1px solid rgba(255,255,255,.065);background:rgba(255,255,255,.02)}.legal-address strong{color:#fff}
.legal-warning{margin:0 0 22px;padding:15px 17px;border:1px solid rgba(255,190,92,.18);background:rgba(255,190,92,.055);border-radius:14px;color:#cfbf9e;line-height:1.6}.legal-warning strong{color:#ffe0a5}
.legal-nav{position:sticky;top:96px;display:grid;gap:8px;padding:16px;border:1px solid rgba(255,255,255,.07);border-radius:16px;background:rgba(255,255,255,.018)}
.legal-nav strong{font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;color:#788397;padding:4px 7px 8px}.legal-nav a{padding:9px 10px;border-radius:10px;color:#9da7b8;text-decoration:none;font-size:.85rem}.legal-nav a:hover,.legal-nav a.active{background:rgba(111,115,255,.08);color:#fff}
.legal-meta{margin-top:26px;color:#747f92;font-size:.78rem}
@media(max-width:860px){.legal-layout{grid-template-columns:1fr}.legal-nav{position:static;order:-1}}


/* =========================================================
   v26 — Veronix Plugin License
   ========================================================= */
.license-page{padding:90px 0 90px}
.license-hero{max-width:940px;margin-bottom:34px}
.license-hero h1{
  margin:10px 0 14px;
  font-size:clamp(2.9rem,6vw,5.2rem);
  letter-spacing:-.06em
}
.license-hero p{color:var(--muted);max-width:780px}
.license-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 290px;
  gap:30px;
  align-items:start
}
.license-card{
  border:1px solid rgba(255,255,255,.075);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.028),rgba(255,255,255,.012));
  padding:30px;
  box-shadow:0 22px 58px rgba(0,0,0,.24)
}
.license-card h2{
  margin-top:34px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.065);
  font-size:1.32rem
}
.license-card h2:first-child{margin-top:0;padding-top:0;border-top:0}
.license-card p,.license-card li{
  color:#adb6c7;
  line-height:1.75
}
.license-card ul{padding-left:22px}
.license-rules{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:20px 0 8px
}
.license-rule{
  min-height:110px;
  border:1px solid rgba(255,255,255,.065);
  border-radius:15px;
  padding:16px;
  background:rgba(255,255,255,.018)
}
.license-rule.allowed{border-color:rgba(74,208,139,.16);background:rgba(74,208,139,.035)}
.license-rule.denied{border-color:rgba(255,107,129,.16);background:rgba(255,107,129,.035)}
.license-rule strong{display:block;margin-bottom:7px;color:#f0f3f9}
.license-rule span{color:#9aa4b6;font-size:.87rem;line-height:1.55}
.license-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(111,115,255,.18);
  background:rgba(111,115,255,.07);
  color:#d8dcff;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.07em
}
.license-side{
  position:sticky;
  top:96px;
  display:grid;
  gap:12px
}
.license-side-card{
  border:1px solid rgba(255,255,255,.07);
  border-radius:16px;
  padding:18px;
  background:rgba(255,255,255,.018)
}
.license-side-card strong{
  display:block;
  margin-bottom:10px;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.09em;
  color:#7f899c
}
.license-side-card a{
  display:block;
  color:#aab4c5;
  text-decoration:none;
  padding:7px 0
}
.license-side-card a:hover{color:#fff}
.license-note{
  margin-bottom:22px;
  padding:15px 17px;
  border-radius:14px;
  border:1px solid rgba(111,115,255,.14);
  background:rgba(111,115,255,.045);
  color:#aab3c5;
  line-height:1.65
}
.license-note strong{color:#eef1ff}
@media(max-width:900px){
  .license-grid{grid-template-columns:1fr}
  .license-side{position:static}
}
@media(max-width:650px){
  .license-rules{grid-template-columns:1fr}
}


/* =========================================================
   v31 — Brand logo upgrade
   ========================================================= */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.08em;
}
.brand-logo{
  width:42px;
  height:42px;
  display:block;
  object-fit:contain;
  flex:0 0 auto;
  filter:drop-shadow(0 10px 24px rgba(86,162,255,.18));
}
.footer .brand-logo{
  width:40px;
  height:40px;
}
.brand-mark{
  display:none !important;
}


/* =========================================================
   v33 — real plugin images on plugins page
   ========================================================= */
.product-icon.product-icon-image{
  width:72px;
  height:72px;
  padding:0;
  border-radius:20px;
  overflow:hidden;
  background:transparent;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}
.product-icon.product-icon-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:20px;
}
@media(max-width:640px){
  .product-icon.product-icon-image{
    width:64px;
    height:64px;
    border-radius:18px;
  }
  .product-icon.product-icon-image img{
    border-radius:18px;
  }
}


/* =========================================================
   v35 — Home JobSystem details click fix
   ========================================================= */
.product-card .card-glow{
  pointer-events:none;
}
.product-card .card-bottom{
  position:relative;
  z-index:2;
}
.product-card .card-bottom a{
  position:relative;
  z-index:3;
  pointer-events:auto;
}


/* =========================================================
   v36 — Home page plugin logos
   ========================================================= */
.product-card .product-icon.product-icon-image{
  width:56px;
  height:56px;
  padding:0;
  border-radius:16px;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 32px rgba(0,0,0,.24);
}
.product-card .product-icon.product-icon-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:16px;
}
