:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --card2:#0d172c;
  --text:#e8eefc;
  --muted:#b9c7ea;
  --brand:#4ea1ff;
  --brand2:#2b6dff;
  --ok:#33d17a;
  --warn:#ffb02e;
  --crit:#ff4d4d;
  --border:rgba(255,255,255,.10);
  --shadow:0 18px 40px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:26px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 700px at 15% 0%, rgba(78,161,255,.22), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(43,109,255,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
small{color:var(--muted)}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:84px 0}
.section.compact{padding:64px 0}
.section h2{font-size:34px; letter-spacing:-.02em; margin:0 0 16px}
.section p.lead{color:var(--muted); font-size:18px; margin:0 0 22px}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 0}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.70);
  border-bottom:1px solid var(--border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  height:70px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800; letter-spacing:.2px;
}
.brand .mark{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 25px rgba(78,161,255,.25);
}
.brand .sub{font-weight:700; color:var(--muted); font-size:12px; margin-top:-2px}
.brand span{display:flex; flex-direction:column; line-height:1.05}

.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition: .15s ease;
  font-weight:600;
  font-size:14px;
}
.navlinks a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.navlinks a.active{color:var(--text); background:rgba(78,161,255,.14); border:1px solid rgba(78,161,255,.28)}
.nav-cta{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  transition:.15s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06)}
.btn.primary{
  border:1px solid rgba(78,161,255,.35);
  background: linear-gradient(135deg, rgba(78,161,255,.95), rgba(43,109,255,.95));
  box-shadow: 0 18px 35px rgba(43,109,255,.22);
}
.btn.primary:hover{filter:brightness(1.02)}
.btn.ghost{background:transparent}
.btn.small{padding:10px 12px; font-weight:700}

.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  align-items:center; justify-content:center;
}
.hamburger svg{opacity:.9}

.hero{padding:64px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(78,161,255,.25);
  background:rgba(78,161,255,.10);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
h1{
  font-size:54px;
  margin:14px 0 14px;
  letter-spacing:-.03em;
  line-height:1.05;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
}
.hero .actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card .cap{
  display:flex; gap:10px; align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.pills{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:10px; padding:16px;
}
.pill{
  padding:12px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
}
.pill b{display:block; font-size:13px}
.pill small{display:block; margin-top:4px}

.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.grid-2{display:grid; grid-template-columns:repeat(2, 1fr); gap:18px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:17px; letter-spacing:-.01em}
.card p{margin:0; color:var(--muted); font-size:14px}
.icon{
  width:42px; height:42px; border-radius:14px;
  background: rgba(78,161,255,.12);
  border:1px solid rgba(78,161,255,.25);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px;
}
.icon svg{opacity:.95}

.media{
  border-radius:var(--radius2);
  border:1px solid var(--border);
  overflow:hidden;
  background:rgba(255,255,255,.02);
  box-shadow: var(--shadow);
}
.media img{width:100%; height:auto}
.media .note{
  padding:12px 14px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}

.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:18px}
.step{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.step .num{
  width:34px; height:34px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(78,161,255,.14);
  border:1px solid rgba(78,161,255,.28);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px; font-size:16px}
.step p{margin:0; color:var(--muted); font-size:14px}

.quote{
  padding:22px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: radial-gradient(900px 350px at 10% 0%, rgba(78,161,255,.15), transparent 55%),
              rgba(255,255,255,.03);
}
.quote b{font-size:16px}
.quote p{color:var(--muted); margin:8px 0 0}

.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--border);
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  text-align:left;
}
.table th{color:var(--muted); font-weight:800; font-size:13px; background:rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:none}

.footer{
  padding:48px 0 42px;
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.02);
}
.footer .cols{display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:18px}
.footer h4{margin:0 0 10px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.legal{margin-top:20px; color:var(--muted); font-size:12px}

.form{
  display:grid; gap:10px;
}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
textarea.input{min-height:120px; resize:vertical}

.notice{
  padding:12px 14px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.20);
  color:var(--muted);
  background:rgba(255,255,255,.03);
  font-size:13px;
}

@media (max-width: 980px){
  h1{font-size:44px}
  .hero-grid{grid-template-columns:1fr; }
  .pills{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .navlinks{display:none}
  .hamburger{display:flex}
  .footer .cols{grid-template-columns:1fr}
}

.mobile{
  display:none;
  border-top:1px solid var(--border);
  padding:12px 0;
}
.mobile.open{display:block}
.mobile a{
  display:block;
  padding:12px 14px;
  margin:6px 0;
  border-radius:14px;
  color:var(--muted);
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  font-weight:700;
}
.mobile a.active{color:var(--text); background:rgba(78,161,255,.14); border-color: rgba(78,161,255,.28)}

/* ===== Extra utilities ===== */
.muted{color:var(--muted)}
.list{padding-left:18px; color:var(--muted); margin:10px 0 0}
.list li{margin:6px 0}
:focus-visible{outline:2px solid rgba(78,161,255,.85); outline-offset:2px}

/* ===== Screens / mode switcher (index only) ===== */
.shots{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:stretch}
@media (max-width: 920px){.shots{grid-template-columns:1fr}}
.shot-figure{
  margin:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(0,0,0,.12);
}
.shot-figure img{width:100%; height:auto; display:block}
.shot-figure figcaption{padding:10px 12px; color:var(--muted); font-size:13px; border-top:1px solid var(--border)}

.shots-v2{align-items:stretch}
.notify-card{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(0,0,0,.12);
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:100%;
}
.notify-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
.notify-title{font-weight:800; letter-spacing:.2px; margin:0 0 2px}
.mode-buttons{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end}
.mode-btn{
  appearance:none;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  padding:8px 10px;
  font-weight:800;
  font-size:12px;
  cursor:pointer;
  transition:transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  white-space:nowrap;
}
.mode-btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.06); color:var(--text)}
.mode-btn.active{color:var(--text); border-color:rgba(78,161,255,.55); box-shadow:0 0 0 2px rgba(78,161,255,.18) inset; background:rgba(78,161,255,.10)}

.notify-figure{margin:0; overflow:hidden; border-radius:var(--radius); border:1px solid var(--border); background:rgba(0,0,0,.12)}
.img-btn{width:100%; padding:0; border:none; background:transparent; cursor:pointer; display:block}
.img-btn img{width:100%; height:auto; display:block}
.hint{color:var(--muted); font-size:12px; margin-top:-4px}

.thumbs{display:grid; grid-template-columns:repeat(3,1fr); gap:10px}
@media (max-width: 920px){.thumbs{grid-template-columns:1fr}}
.thumb{
  position:relative;
  padding:0;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.14);
  overflow:hidden;
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease;
  text-align:left;
}
.thumb:hover{transform:translateY(-1px)}
.thumb img{width:100%; height:92px; object-fit:cover; display:block; filter:saturate(1.05)}
.thumb.active{border-color:rgba(78,161,255,.55); box-shadow:0 0 0 2px rgba(78,161,255,.18) inset}
.thumb-pill{
  position:absolute;
  left:10px; top:10px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.3px;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.35);
  color:var(--text);
  backdrop-filter: blur(8px);
}
.thumb-pill.info{background:rgba(78,161,255,.28)}
.thumb-pill.warning{background:rgba(255,176,46,.28)}
.thumb-pill.critical{background:rgba(255,77,77,.28)}

/* ===== Lightbox ===== */
.lightbox{position:fixed; inset:0; display:none; align-items:center; justify-content:center; padding:20px; z-index:999}
.lightbox.show{display:flex}
.lightbox-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.72); backdrop-filter: blur(8px)}
.lightbox-content{
  position:relative;
  max-width:min(1080px, 96vw);
  width:100%;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(15,27,51,.92);
  box-shadow:0 22px 60px rgba(0,0,0,.55);
  overflow:hidden;
}
.lightbox-content img{width:100%; height:auto; display:block; background:rgba(0,0,0,.22)}
.lightbox-bar{display:flex; justify-content:space-between; align-items:center; gap:12px; padding:10px 12px; border-bottom:1px solid rgba(255,255,255,.10); color:var(--muted); font-size:12px}
.lightbox-close{
  appearance:none;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:8px 10px;
  cursor:pointer;
  font-weight:800;
  font-size:12px;
}
.lightbox-close:hover{background:rgba(255,255,255,.07)}


/* ===== Typography refinement: calmer scale ===== */
body{font-size:14px}
.section h2{font-size:26px; font-weight:780; letter-spacing:-.018em}
.section p.lead{font-size:14px; line-height:1.62}
.brand .sub{font-size:10px}
h1{font-size:38px; font-weight:800; letter-spacing:-.024em}
.hero p{font-size:14px; line-height:1.62}
.card h3{font-size:15px; font-weight:760}
.card p{font-size:12.5px; line-height:1.58}
.step h3{font-size:14px; font-weight:760}
.step p{font-size:12.5px; line-height:1.56}
.quote b{font-size:14px; font-weight:760}
.quote p{font-size:12.5px; line-height:1.58}
.media .note,.badge,.hero-card .cap,.notice{font-size:11px}
.footer a,.footer p,.footer li{font-size:12px; line-height:1.58}
@media (max-width: 980px){
  h1{font-size:32px}
}
@media (max-width: 640px){
  body{font-size:13px}
  .section h2{font-size:22px}
  h1{font-size:28px}
  .section p.lead,.hero p{font-size:13.5px}
}

/* ===== Further calming pass ===== */
.navlinks a{font-size:13px;font-weight:550;padding:9px 9px}
.btn{font-size:13px;font-weight:700;padding:11px 14px}
.btn.small{font-size:12px;padding:9px 11px}
.kicker{font-size:12px;padding:7px 11px}
.pill b{font-size:12px;font-weight:760}
.pill small{font-size:11px}
.table th{font-size:12px}
.table td{font-size:12.5px}
.notice,.hint,.thumb-pill,.lightbox-bar,.lightbox-close{font-size:11px}


/* Language switcher */
.lang-switcher{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1200;
  display:inline-flex;
  gap:6px;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(11,18,32,.84);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
}
.lang-switcher a{
  min-width:46px;
  text-align:center;
  padding:.5rem .76rem;
  border-radius:999px;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.06em;
  border:1px solid transparent;
  transition:background .18s ease, transform .12s ease, color .18s ease, border-color .18s ease;
}
.lang-switcher a:hover{background:rgba(255,255,255,.08); color:#fff; transform:translateY(-1px)}
.lang-switcher a.active{
  color:#0b1220;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  border-color:rgba(255,255,255,.24);
}
@media (max-width: 767.98px){
  .lang-switcher{right:12px; bottom:12px;}
}

/* ===== Final premium calm refinements ===== */
@keyframes notifySoftRise{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}
body{font-size:13.5px}
.section h2{
  font-size:30px;
  letter-spacing:-.018em;
  font-weight:780;
}
.section p.lead{
  font-size:16px;
  line-height:1.66;
}
.kicker{
  font-size:12px;
  font-weight:680;
}
h1{
  font-size:46px;
  line-height:1.06;
  font-weight:780;
  margin:12px 0 12px;
}
.hero p{
  font-size:16px;
  line-height:1.66;
}
.btn{
  font-weight:760;
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card h3,.step h3,.quote b,.notify-title{font-weight:740}
.card p,.step p,.quote p{line-height:1.62}
.hero-grid > *{animation:notifySoftRise .62s ease both}
.hero-grid > *:nth-child(2){animation-delay:.05s}
.card,.hero-card,.quote,.step,.pill,.notify-card,.thumb,.media{
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.card:hover,.hero-card:hover,.quote:hover,.step:hover,.pill:hover,.notify-card:hover,.thumb:hover,.media:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.16);
  box-shadow:0 20px 46px rgba(0,0,0,.24);
}
@media (max-width: 980px){
  h1{font-size:38px}
}
@media (max-width: 767px){
  body{font-size:13px}
  .section h2{font-size:26px}
  .section p.lead,
  .hero p{font-size:15px}
  h1{font-size:32px}
}
@media (prefers-reduced-motion: reduce){
  .hero-grid > *{animation:none !important}
  .card,.hero-card,.quote,.step,.pill,.notify-card,.thumb,.media,.btn{transition:none !important}
}


/* ===== Ultra elegant notification pass ===== */
html,body{overflow-x:hidden}
.container{max-width:1120px}
.navbar{height:66px}
.navlinks{gap:12px}
.navlinks a{font-size:12.5px;padding:8px 9px;font-weight:540}
.btn{font-size:12.5px;padding:10px 13px}
.hero{padding:54px 0 24px}
.hero-grid{grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:24px;align-items:start}
.hero-grid > *{min-width:0}
.kicker,.badge,.media .note,.hero-card .cap,.notice{font-size:10.5px}
h1{
  font-size:40px;
  line-height:1.08;
  font-weight:760;
  letter-spacing:-.02em;
  max-width:12.5ch;
}
.hero p,
.section p.lead{font-size:15px;line-height:1.62;max-width:62ch}
.section{padding:74px 0}
.section.compact{padding:54px 0}
.section h2{font-size:28px;line-height:1.14;font-weight:760}
.hero-card,.card,.media,.quote,.step,.notify-card,.thumb,.pill{border-radius:16px}
.hero-card .cap,
.visual-head{padding:12px 14px}
.pills{grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;padding:14px}
.pill{padding:11px 11px;border-radius:14px}
.pill b{font-size:11.5px}
.pill small{font-size:10.5px}
.grid-3,.grid-2,.steps,.shots,.thumbs{align-items:stretch}
.grid-3 > *, .grid-2 > *, .steps > *, .shots > *, .thumbs > *{min-width:0}
.card,.step,.quote,.notify-card{padding:16px}
.card h3,.step h3,.quote b,.notify-title{font-size:14px;font-weight:730}
.card p,.step p,.quote p{font-size:12px;line-height:1.56}
.notify-top{gap:10px}
.mode-buttons{justify-content:flex-start;gap:6px}
.mode-btn{font-size:11px;padding:7px 9px;border-radius:10px}
.thumb img{height:82px}
.lightbox-content{border-radius:18px}
.footer{padding:40px 0 36px}
.footer .cols{gap:14px}
.lang-switcher{right:14px;bottom:14px}

@media (max-width: 1180px){
  .hero-grid,
  .grid-3,
  .grid-2,
  .steps,
  .shots{grid-template-columns:1fr}
  h1{max-width:none}
}
@media (max-width: 860px){
  .hero{padding:46px 0 20px}
  .section{padding:62px 0}
  .section.compact{padding:46px 0}
  h1{font-size:32px}
  .section h2{font-size:24px}
  .hero p,
  .section p.lead{font-size:14px}
  .pills,
  .thumbs{grid-template-columns:1fr}
  .thumb img{height:auto;object-fit:contain}
}
@media (max-width: 640px){
  .container{padding:0 16px}
  .navbar{height:62px}
  h1{font-size:28px}
  .section h2{font-size:22px}
  .card,.step,.quote,.notify-card{padding:14px}
  .lang-switcher{right:10px;bottom:10px}
}


/* ===== Notifications page mobile comfort ===== */
@media (max-width: 640px){
  body.notifications-page .hero,
  body.notifications-page .hero-card,
  body.notifications-page .grid-2,
  body.notifications-page .grid-3,
  body.notifications-page .steps,
  body.notifications-page .shots,
  body.notifications-page .thumbs,
  body.notifications-page .badges{
    gap:12px;
  }
  body.notifications-page .hero-card .cap,
  body.notifications-page .media .note,
  body.notifications-page .notice,
  body.notifications-page .muted,
  body.notifications-page .hint{
    font-size:12px;
    line-height:1.55;
  }
  body.notifications-page .card h3,
  body.notifications-page .step h3,
  body.notifications-page .quote b,
  body.notifications-page .pill b{
    font-size:.98rem;
    line-height:1.3;
  }
  body.notifications-page .card p,
  body.notifications-page .step p,
  body.notifications-page .quote p,
  body.notifications-page .pill small,
  body.notifications-page .table td,
  body.notifications-page .table th{
    font-size:.87rem;
    line-height:1.6;
  }
  body.notifications-page .table{
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
}


/* ===== JNL Software premium brand pass ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@700;800&display=swap');
:root{
  --bg:#07111d;
  --card:#0d1c31;
  --card2:#0a1729;
  --text:#f3f8fd;
  --muted:#bfd0dd;
  --brand:#1FB5B8;
  --brand2:#0C3763;
  --ok:#22A7A1;
  --warn:#FF8A1F;
  --border:rgba(184,208,224,.10);
  --shadow:0 22px 56px rgba(0,0,0,.28);
}
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  background: radial-gradient(1200px 700px at 15% 0%, rgba(31,181,184,.18), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(12,55,99,.20), transparent 55%),
              var(--bg);
}
h1,.section h2,.brand{font-family:'Manrope','Inter',sans-serif}
.nav{background:rgba(7,14,28,.76);backdrop-filter:blur(20px)}
.hero-card,.card,.feature,.panel,.pricing,.faq-item,.kpi,.timeline-item,.shot,.usecase,.cta-band{box-shadow:var(--shadow)}
.btn.primary{border:1px solid rgba(31,181,184,.26);background:linear-gradient(135deg, #1FB5B8, #0C3763);box-shadow:0 18px 35px rgba(12,55,99,.24)}
.kicker{background:rgba(12,55,99,.14);border-color:rgba(31,181,184,.20);color:#eef7fb}


/* ===== Typography polish v7 ===== */
:root{
  --font-ui: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
body,
h1,h2,h3,h4,h5,h6,
.brand,
.brand small,
.btn,
.card h3,
.kicker,
.section .lead,
.section p,
.pill,
.jnl-pill,
.jnl-dropdown-toggle,
.jnl-brand-meta > span,
.jnl-brand-meta small{
  font-family:var(--font-ui) !important;
}


/* ===== SourceForge Business badge ===== */
.sourceforge-badge-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 12px;
  width: fit-content;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.sourceforge-badge-wrap .sf-root {
  display: block;
}

@media (max-width: 640px) {
  .sourceforge-badge-wrap {
    margin-top: 12px;
  }
}
