
:root{
  --navy:#01233f;
  --orange:#ff7f00;
  --bg:#f6f8fb;
  --card:#ffffff;
  --text:#0b1a2a;
  --muted:#64748b;
  --line:rgba(15,23,42,.08);
  --shadow: 0 12px 35px rgba(1,35,63,.10);
  --shadow2: 0 8px 20px rgba(2,10,25,.10);
  --radius:18px;
  --radius2:14px;
  --focus:0 0 0 4px rgba(255,127,0,.22);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,127,0,.08), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(1,35,63,.16), transparent 55%),
              var(--bg);
              background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
a{color:inherit; text-decoration:none}
.container{max-width:1180px; margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(180deg, rgba(1,35,63,.98), rgba(1,35,63,.94));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{display:flex; align-items:center; gap:18px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brandmark{
  width:40px; height:40px; border-radius:14px;
  background: radial-gradient(18px 18px at 70% 20%, rgba(255,127,0,.95), rgba(255,127,0,.2) 55%, transparent 70%),
              linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  display:grid; place-items:center;
}
.brandmark svg{width:24px; height:24px; display:block}
.brandtext{display:flex; flex-direction:column; line-height:1.05}
.brandtext strong{color:#fff; font-size:14px; letter-spacing:.4px}
.brandtext span{color:rgba(255,255,255,.68); font-size:12px}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex:1;
  overflow:visible;
  max-width:none;
}
.nav::-webkit-scrollbar{display:none}
.nav a{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 10px;
  border-radius:12px;
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.01em;
  border:1px solid transparent;
  white-space:nowrap;
}
.nav a svg{width:16px; height:16px; opacity:.9}
.nav a:hover{background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.12)}
.nav a.active{
  background:rgba(255,127,0,.16);
  border-color:rgba(255,127,0,.35);
  color:#fff;
}
.right{
  display:flex; align-items:center; gap:10px;
}
.pill{ padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:700;
}
.pill .dot{
  width:28px; height:28px; border-radius:999px;
  background: radial-gradient(circle at 35% 30%, rgba(255,127,0,.95), rgba(255,127,0,.25) 55%, rgba(255,127,0,.08) 70%),
              linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 22px rgba(0,0,0,.24);
}
.btn{
  appearance:none; border:none; cursor:pointer;
  padding:10px 14px;
  border-radius:14px;
  font-weight:800;
  background:var(--orange);
  color:#111;
  box-shadow: 0 14px 30px rgba(255,127,0,.22);
}
.btn:hover{filter:brightness(1.02)}
.btn:focus{outline:none; box-shadow: var(--focus), 0 14px 30px rgba(255,127,0,.22)}
.btn.ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.btn.ghost:hover{background:rgba(255,255,255,.12)}
.main{padding:22px 0 44px}
.breadcrumbs{
  display:flex; align-items:center; gap:8px;
  color:rgba(2,10,25,.55);
  font-weight:700;
  font-size:13px;
  margin: 6px 0 16px;
}
.breadcrumbs .sep{opacity:.5}
.h1{
  margin:0;
  font-size:28px;
  letter-spacing:-.4px;
}
.sub{
  margin:6px 0 0;
  color:var(--muted);
  font-weight:600;
}
.grid{
  display:grid;
  gap:16px;
}
.grid.cols-3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid.cols-2{grid-template-columns: repeat(2, minmax(0,1fr))}
@media (max-width: 980px){
  .brand{min-width:auto}
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.card-title{font-weight:900; margin:0 0 6px; font-size:16px}
.card-meta{color:var(--muted); font-weight:600; margin:0}
.kpis{
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 980px){ .kpis{grid-template-columns:1fr 1fr} }
.kpi{
  padding:14px 14px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(1,35,63,.06), rgba(1,35,63,.02));
  border:1px solid rgba(1,35,63,.10);
}
.kpi b{display:block; font-size:18px}
.kpi span{display:block; color:var(--muted); font-weight:700; font-size:12px; margin-top:4px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(255,127,0,.35);
  background: rgba(255,127,0,.10);
  color: #7a3a00;
}
.badge.dark{
  border-color: rgba(1,35,63,.22);
  background: rgba(1,35,63,.06);
  color: rgba(1,35,63,.9);
}
.hero{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 980px){ .hero{grid-template-columns:1fr} }
.hero-cover{
  border-radius: 18px;
  background: radial-gradient(600px 260px at 15% 0%, rgba(255,127,0,.18), transparent 55%),
              radial-gradient(700px 320px at 80% 30%, rgba(1,35,63,.26), transparent 55%),
              linear-gradient(180deg, rgba(1,35,63,.10), rgba(1,35,63,.02));
  border:1px solid rgba(1,35,63,.12);
  box-shadow: var(--shadow2);
  overflow:hidden;
  position:relative;
  min-height:260px;
}
.hero-cover .overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.55), rgba(255,255,255,.10));
}
.hero-cover .content{
  position:relative;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hero-cover h2{margin:0; font-size:22px; letter-spacing:-.3px}
.hero-cover p{margin:0; color:rgba(2,10,25,.65); font-weight:650; max-width:54ch}
.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:6px}
.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(1,35,63,.12);
  background: rgba(255,255,255,.7);
  color: rgba(1,35,63,.92);
  font-weight:800;
  font-size:12px;
}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-weight:700;
  color:rgba(2,10,25,.75);
  font-size:13px;
}
.table th{background: rgba(1,35,63,.04); color: rgba(1,35,63,.85)}
.table tr:last-child td{border-bottom:none}
.status{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(22,163,74,.12);
  color: rgba(22,163,74,.92);
  border:1px solid rgba(22,163,74,.20);
  font-weight:900;
  font-size:12px;
}
.footer{
  padding:18px 0;
  color:rgba(2,10,25,.55);
  font-weight:700;
  font-size:12px;
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.notice{
  padding:14px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(255,127,0,.10), rgba(255,127,0,.04));
  border:1px solid rgba(255,127,0,.18);
  color: rgba(2,10,25,.70);
  font-weight:700;
}
.small{font-size:12px; color:var(--muted); font-weight:650}


/* Role dropdown */
.role-wrap{position:relative;}
.role-menu{position:absolute; right:0; top:calc(100% + 10px); width:220px; background:rgba(10,16,26,.98); border:1px solid rgba(255,255,255,.10); border-radius:16px; box-shadow:0 20px 60px rgba(0,0,0,.35); padding:8px; display:none; z-index:60;}
.role-menu a{display:flex; align-items:center; gap:10px; padding:10px 10px; border-radius:12px; color:rgba(255,255,255,.92); text-decoration:none; font-weight:800;}
.role-menu a:hover{background:rgba(255,255,255,.08)}
.role-menu .sep{height:1px; background:rgba(255,255,255,.10); margin:6px 6px;}
.role-menu.show{display:block;}

/* ===== Public / Landing (VOTIUM) ===== */
.landing-wrap{max-width:1180px; margin:0 auto; padding:24px 22px 40px;}
.landing-hero{display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:center;}
@media (max-width: 980px){.landing-hero{grid-template-columns:1fr;}}
.hero-badge{display:inline-flex; gap:10px; align-items:center; padding:8px 12px; border-radius:999px; background:rgba(255,127,0,.10); border:1px solid rgba(255,127,0,.28); color:rgba(1,35,63,.92); font-weight:900;}
.hero-title{margin:14px 0 10px; font-size:42px; line-height:1.05; letter-spacing:-.02em; color:#071a2a;}
.hero-title .accent{color:var(--accent)}
@media (max-width: 520px){.hero-title{font-size:34px}}
.hero-sub{margin:0 0 16px; color:rgba(7,26,42,.78); font-weight:700; line-height:1.5;}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.btn-primary{background:linear-gradient(180deg, rgba(255,127,0,1), rgba(233,100,0,1)); color:#081522; border:0; padding:12px 16px; border-radius:14px; font-weight:950; box-shadow:0 14px 40px rgba(255,127,0,.22); cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; gap:10px;}
.btn-primary:hover{filter:brightness(1.02)}
.btn-ghost{background:#fff; color:#0a1a2a; border:1px solid rgba(1,35,63,.14); padding:12px 16px; border-radius:14px; font-weight:900; text-decoration:none; display:inline-flex; align-items:center; gap:10px;}
.btn-ghost:hover{border-color:rgba(1,35,63,.24)}
.hero-pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}
.pill{padding:8px 10px; border-radius:999px; background:#fff; border:1px solid rgba(1,35,63,.12); color:rgba(7,26,42,.78); font-weight:800; font-size:12.5px;}

/* Slider */
.slider{position:relative; border-radius:22px; overflow:hidden; box-shadow:0 26px 80px rgba(6,18,34,.14); background:radial-gradient(900px 300px at 20% 0%, rgba(255,127,0,.25), transparent 55%), linear-gradient(180deg, #0b2340, #071a2a);}
.slider .slides{display:flex; transition:transform .55s cubic-bezier(.2,.8,.2,1);}
.slide{min-width:100%; position:relative; aspect-ratio: 16/11; display:grid; place-items:center;}
@media (max-width: 980px){.slide{aspect-ratio: 16/12;}}
.slide img{width:100%; height:100%; object-fit:cover; filter:saturate(1.02) contrast(1.02);}
.slide::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(7,26,42,.10), rgba(7,26,42,.55));}
.slide-caption{position:absolute; left:16px; right:16px; bottom:14px; display:flex; justify-content:space-between; align-items:flex-end; gap:12px; color:#fff; z-index:2;}
.slide-caption .left{max-width:70%;}
.slide-caption .kicker{font-weight:900; letter-spacing:.06em; text-transform:uppercase; opacity:.85; font-size:12px;}
.slide-caption h3{margin:6px 0 0; font-size:18px; line-height:1.1;}
.slide-caption p{margin:6px 0 0; opacity:.88; font-weight:700; font-size:13px;}
.slide-caption .tag{background:rgba(255,127,0,.20); border:1px solid rgba(255,127,0,.35); padding:8px 10px; border-radius:12px; font-weight:950;}

.slider-nav{position:absolute; inset:auto 0 10px 0; display:flex; justify-content:center; gap:7px; z-index:3;}
.dot{width:9px; height:9px; border-radius:99px; background:rgba(255,255,255,.35); border:1px solid rgba(255,255,255,.35); cursor:pointer;}
.dot.active{width:22px; background:rgba(255,127,0,.95); border-color:rgba(255,127,0,.95)}
.slider-btn{position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:14px; border:1px solid rgba(255,255,255,.20); background:rgba(7,26,42,.55); backdrop-filter: blur(10px); color:#fff; display:grid; place-items:center; cursor:pointer; z-index:3;}
.slider-btn:hover{background:rgba(7,26,42,.70)}
.slider-btn.prev{left:12px}
.slider-btn.next{right:12px}

/* Sections */
.section{margin-top:26px;}
.section h2{margin:0 0 12px; color:#071a2a; font-size:22px; letter-spacing:-.01em;}
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
@media (max-width: 980px){.cards{grid-template-columns:1fr;}}
.card{background:#fff; border:1px solid rgba(1,35,63,.10); border-radius:18px; padding:14px; box-shadow:0 10px 30px rgba(6,18,34,.06);}
.card .icon{width:42px; height:42px; border-radius:14px; display:grid; place-items:center; background:rgba(255,127,0,.14); border:1px solid rgba(255,127,0,.25); color:rgba(1,35,63,.92); font-weight:1000;}
.card h3{margin:10px 0 6px; color:#071a2a; font-size:15px;}
.card p{margin:0; color:rgba(7,26,42,.72); font-weight:650; line-height:1.45; font-size:13px;}

.trust{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.trust .chip{padding:10px 12px; border-radius:999px; border:1px solid rgba(1,35,63,.12); background:rgba(255,255,255,.8); color:rgba(7,26,42,.72); font-weight:900;}

.testimonials{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
@media (max-width: 980px){.testimonials{grid-template-columns:1fr;}}
.quote{background:#fff; border:1px solid rgba(1,35,63,.10); border-radius:18px; padding:14px;}
.quote p{margin:0 0 10px; color:rgba(7,26,42,.74); font-weight:650; line-height:1.55;}
.quote .who{display:flex; gap:10px; align-items:center;}
.quote .avatar{width:38px; height:38px; border-radius:14px; background:linear-gradient(180deg, rgba(1,35,63,.14), rgba(1,35,63,.06)); border:1px solid rgba(1,35,63,.10); display:grid; place-items:center; font-weight:1000; color:rgba(1,35,63,.80)}
.quote .meta{line-height:1.1}
.quote .meta b{display:block; color:#071a2a}
.quote .meta span{font-size:12px; color:rgba(7,26,42,.60); font-weight:750}

.cta-bar{margin-top:18px; padding:14px; border-radius:20px; background:linear-gradient(180deg, rgba(1,35,63,1), rgba(7,26,42,1)); color:#fff; display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;}
.cta-bar .txt{max-width:700px}
.cta-bar .txt b{font-size:16px;}
.cta-bar .txt p{margin:6px 0 0; opacity:.88; font-weight:650}



/* AUTH PAGE */

.auth-page .topbar { position: sticky; top: 0; z-index: 50; }
.auth-page .topbar-inner { display:flex; align-items:center; gap:18px; }
.auth-page .public-links { display:flex; gap:16px; align-items:center; margin-left:auto; margin-right: 10px; }
.auth-page .public-links a { color: rgba(255,255,255,.85); font-weight:600; font-size:13px; padding:8px 10px; border-radius: 12px; }
.auth-page .public-links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.auth-page .topbar-right { display:flex; align-items:center; gap:10px; }

.auth-main { padding: 34px 0 46px; }
.auth-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: stretch; }
.auth-left { padding: 18px 6px; }
.auth-badge { display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border-radius:999px; background: rgba(255,127,0,.12); color: var(--orange); font-weight:800; font-size:12px; }
.auth-left h1 { margin: 14px 0 8px; font-size: 44px; line-height: 1.05; letter-spacing: -0.02em; }
.auth-left .muted { max-width: 520px; font-size: 15px; }
.auth-perks { margin-top: 18px; display:flex; flex-direction:column; gap: 12px; }
.perk { display:flex; gap: 12px; align-items:flex-start; padding: 12px 12px; border-radius: 18px; background: rgba(1,35,63,.04); border: 1px solid rgba(1,35,63,.06); }
.perk-ico { width: 34px; height: 34px; border-radius: 12px; display:flex; align-items:center; justify-content:center; background: rgba(255,127,0,.14); }
.perk strong { display:block; }
.perk small { display:block; opacity:.75; margin-top:2px; }
.auth-back { margin-top: 14px; }

.auth-card .card { border-radius: 22px; padding: 20px; background: rgba(255,255,255,.92); border: 1px solid rgba(1,35,63,.10); box-shadow: 0 18px 50px rgba(17,24,39,.12); }
.auth-card h2 { margin: 0 0 6px; font-size: 30px; }
.form { display:flex; flex-direction:column; gap: 12px; margin-top: 14px; }
.field span { display:block; font-weight:700; font-size: 13px; margin-bottom: 6px; color: rgba(1,35,63,.85); }
.field input { width: 100%; padding: 5px 14px; border-radius: 14px; border: 1px solid rgba(1,35,63,.14); background: #fff; outline: none; }
.field input:focus { border-color: rgba(255,127,0,.65); box-shadow: 0 0 0 4px rgba(255,127,0,.12); }
.btn.w100 { width: 100%; }
.form-row { display:flex; justify-content:flex-end; }

@media (max-width: 980px){
  .auth-grid{ grid-template-columns: 1fr; }
  .auth-left h1{ font-size: 34px; }
  .auth-page .public-links{ display:none; }
}
