
:root{
  --bg:#070a12;
  --bg2:#0a1020;
  --panel: rgba(255,255,255,.035);
  --card: rgba(255,255,255,.05);
  --text:#f2f5ff;
  --muted:#b4bdd8;
  --line: rgba(255,255,255,.085);
  --accent:#7dd3fc;
  --accent2:#34d399;
  --gold:#f6d38b;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 12px 30px rgba(0,0,0,.45);
  --radius: 20px;
  --max: 1180px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(125,211,252,.12), transparent 55%),
    radial-gradient(900px 650px at 90% 10%, rgba(52,211,153,.10), transparent 60%),
    radial-gradient(900px 650px at 60% 120%, rgba(246,211,139,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.topbar{
  position:sticky; top:0; z-index:20;
  background:rgba(7,10,18,.78);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:10px; font-weight:850; letter-spacing:.2px}
.brand-badge{
  width:38px; height:38px; border-radius:14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(135deg, rgba(125,211,252,.95), rgba(52,211,153,.78));
  box-shadow: 0 18px 40px rgba(125,211,252,.10);
  border:1px solid rgba(255,255,255,.10);
}
.navlinks{display:flex; gap:10px; flex-wrap:wrap}
.navlinks a{color:rgba(242,245,255,.78); padding:10px 12px; border-radius:16px; border:1px solid transparent}
.navlinks a:hover{background:rgba(255,255,255,.04); border-color:rgba(255,255,255,.06)}
.cta{display:flex; gap:10px; align-items:center}
.btn{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:11px 14px;
  border-radius:16px;
  cursor:pointer;
  transition:.18s transform, .18s background, .18s border-color, .18s box-shadow;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.16); box-shadow: var(--shadow2)}
.btn.primary{
  border-color:rgba(125,211,252,.35);
  background:
    radial-gradient(180px 80px at 30% 10%, rgba(246,211,139,.18), transparent 65%),
    linear-gradient(135deg, rgba(125,211,252,.22), rgba(52,211,153,.12));
}
.btn.primary:hover{border-color:rgba(125,211,252,.60)}
.hero{padding:56px 0 22px}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:stretch}
@media (max-width: 920px){ .hero-grid{grid-template-columns:1fr} }
.panel{background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden}
.panel-inner{padding:24px}
.kicker{color:rgba(242,245,255,.62); font-weight:700; letter-spacing:.20em; text-transform:uppercase; font-size:12px}
.h1{margin:12px 0 10px; font-size:44px; line-height:1.06; letter-spacing:-.02em}
@media (max-width: 520px){ .h1{font-size:34px} }
.sub{color:rgba(242,245,255,.72); font-size:16px; line-height:1.6; max-width:62ch}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.tracker{display:flex; gap:10px; margin-top:14px; align-items:center}
.input{
  flex:1; min-width:220px; padding:12px 14px; border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.20);
  color:var(--text); outline:none;
}
.input:focus{border-color:rgba(125,211,252,.55); box-shadow:0 0 0 4px rgba(125,211,252,.12)}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width: 920px){ .grid3{grid-template-columns:1fr} }
.card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.card h3{margin:6px 0 8px; letter-spacing:-.01em}
.card p{margin:0; color:rgba(242,245,255,.70); line-height:1.6}
.pill{
  display:inline-flex; align-items:center; gap:8px; padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px; background:rgba(255,255,255,.03);
  color:rgba(242,245,255,.68); font-size:13px;
}
.section{padding:22px 0}
.section h2{margin:0 0 10px; letter-spacing:-.01em}
.section .lead{color:rgba(242,245,255,.70); margin:0 0 14px; line-height:1.6}
.footer{margin-top:30px; border-top:1px solid rgba(255,255,255,.08); padding:22px 0 30px; color:rgba(242,245,255,.60)}
.small{font-size:13px; color:rgba(242,245,255,.62)}
.table{
  width:100%; border-collapse:separate; border-spacing:0; overflow:hidden;
  border-radius:16px; border:1px solid rgba(255,255,255,.10);
}
.table th,.table td{ text-align:left; padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.08) }
.table th{color:rgba(242,245,255,.62); font-weight:750; background:rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:none}
.badge{display:inline-flex; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:800; border:1px solid rgba(255,255,255,.10)}
.badge.green{background:rgba(52,211,153,.10); color:#c9ffea; border-color:rgba(52,211,153,.28)}
.badge.blue{background:rgba(125,211,252,.10); color:#d9f2ff; border-color:rgba(125,211,252,.28)}
.badge.amber{background:rgba(246,211,139,.10); color:#ffeac2; border-color:rgba(246,211,139,.28)}
.badge.red{background:rgba(239,68,68,.10); color:#ffd0d0; border-color:rgba(239,68,68,.28)}
.notice{border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.03); border-radius:16px; padding:12px 14px; color:rgba(242,245,255,.70)}
.notice.error{border-color:rgba(239,68,68,.28); color:#ffd0d0; background:rgba(239,68,68,.08)}
.notice.ok{border-color:rgba(52,211,153,.28); color:#c9ffea; background:rgba(52,211,153,.08)}
/* ===== Packius hero slider (premium) ===== */
.hero-full{ padding:0; }
.hero-slider{
  position:relative;
  width:100%;
  min-height: 560px;
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.hero-slides{ position:relative; height:100%; }

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .9s ease;
  background:
    radial-gradient(900px 650px at 20% 10%, rgba(125,211,252,.14), transparent 55%),
    radial-gradient(900px 650px at 80% 10%, rgba(52,211,153,.10), transparent 60%),
    linear-gradient(180deg, rgba(7,10,18,.75), rgba(10,16,32,.9)),
    var(--bg) center/cover no-repeat;
}

.hero-slide.is-active{
  opacity:1;
  transform: scale(1);
  z-index:2;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,18,.92) 0%, rgba(7,10,18,.55) 45%, rgba(7,10,18,.25) 100%),
    radial-gradient(900px 600px at 25% 35%, rgba(0,0,0,.35), transparent 60%);
}

.hero-content{
  position:relative;
  z-index:3;
  padding: 90px 0 64px;
  max-width: 860px;
}

.hero-title{
  margin: 12px 0 10px;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -.03em;
}
.hero-sub{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color: rgba(242,245,255,.74);
  max-width: 68ch;
}

.hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.hero-tracker{ max-width: 640px; }

.hero-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:5;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,18,.35);
  color: rgba(242,245,255,.9);
  cursor:pointer;
  backdrop-filter: blur(10px);
  font-size: 28px;
  line-height: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: .18s transform, .18s background, .18s border-color;
}
.hero-nav:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-50%) translateY(-1px);
}
.hero-prev{ left:18px; }
.hero-next{ right:18px; }

.hero-dots{
  position:absolute;
  left:0; right:0; bottom:18px;
  z-index:6;
  display:flex;
  justify-content:center;
  gap:10px;
  padding:0 18px;
}
.hero-dot{
  width: 34px;
  height: 6px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  transition: .18s transform, .18s background, .18s border-color;
}
.hero-dot:hover{ transform: translateY(-1px); }
.hero-dot.is-active{
  background: linear-gradient(90deg, rgba(125,211,252,.65), rgba(52,211,153,.45));
  border-color: rgba(125,211,252,.35);
}

@media (max-width: 920px){
  .hero-content{ padding: 76px 0 56px; }
  .hero-title{ font-size: 40px; }
  .hero-overlay{
    background: linear-gradient(180deg, rgba(7,10,18,.88) 0%, rgba(7,10,18,.55) 55%, rgba(7,10,18,.35) 100%);
  }
}
@media (max-width: 520px){
  .hero-slider{ min-height: 640px; }
  .hero-title{ font-size: 34px; }
}

/* ===== Packius hero slider (safe) ===== */
.hero-full { padding: 0; }
.hero-slider{
  position:relative;
  width:100%;
  min-height: 560px;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.08);
  
}
.hero-slides{ position:relative; min-height:560px; }

/* HARD RULE: show only active slide */
.hero-slide{ display:none; position:relative; }
.hero-slide.is-active{ display:block; }

.hero-slide{
  display:none !important;
  position:relative;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.hero-slide.is-active{ display:block !important; }

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,18,.92) 0%, rgba(7,10,18,.55) 45%, rgba(7,10,18,.25) 100%),
    radial-gradient(900px 600px at 25% 35%, rgba(0,0,0,.35), transparent 60%);
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,10,18,.92) 0%, rgba(7,10,18,.55) 45%, rgba(7,10,18,.25) 100%);
}
.hero-content{
  position:relative; z-index:2;
  padding: 90px 0 64px;
  max-width: 920px;
}
.hero-title{ margin:12px 0 10px; font-size:52px; line-height:1.04; letter-spacing:-.03em; }
.hero-sub{ margin:0; font-size:16px; line-height:1.65; color:rgba(242,245,255,.74); max-width:68ch; }
.hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.hero-tracker{ max-width: 760px; }

.hero-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:3;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,18,.35);
  color: rgba(242,245,255,.9);
  backdrop-filter: blur(10px);
  font-size: 28px;
  display:flex; align-items:center; justify-content:center;
}
.hero-prev{ left:18px; }
.hero-next{ right:18px; }

.hero-dots{
  position:absolute; left:0; right:0; bottom:18px;
  z-index:3;
  display:flex; justify-content:center; gap:10px; padding:0 18px;
}
.hero-dot{
  width: 34px; height: 6px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.hero-dot.is-active{
  background: linear-gradient(90deg, rgba(125,211,252,.65), rgba(52,211,153,.45));
  border-color: rgba(125,211,252,.35);
}

@media (max-width: 920px){
  .hero-content{ padding: 76px 0 56px; }
  .hero-title{ font-size: 40px; }
  .hero-overlay{ background: linear-gradient(180deg, rgba(7,10,18,.88) 0%, rgba(7,10,18,.55) 55%, rgba(7,10,18,.35) 100%); }
}
@media (max-width: 520px){
  .hero-slider{ min-height: 640px; }
  .hero-slides{ min-height: 640px; }
  .hero-title{ font-size: 34px; }
}
/* Packius slider: show only active slide */
.hero-slide{ display:none !important; }
.hero-slide.is-active{ display:block !important; }


.hero-slide{ opacity:1 !important; }