:root{
  --bg:#050816;
  --panel: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.70);
  --accent:#6d5efc;
  --accent2:#00d4ff;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(109,94,252,.28), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(0,212,255,.20), transparent 55%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:28px 18px}

/* NAV */
.nav{
  position:sticky;top:0;z-index:40;
  backdrop-filter: blur(14px);
  background: rgba(5,8,22,.70);
  border-bottom:1px solid var(--border);
}
.nav-row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;align-items:center;gap:12px}
.logo{
  width:38px;height:38px;border-radius:14px;
  background: linear-gradient(135deg, rgba(109,94,252,.25), rgba(0,212,255,.18));
  border:1px solid rgba(109,94,252,.30);
  box-shadow: 0 0 0 1px rgba(109,94,252,.18), 0 12px 35px rgba(109,94,252,.16);
  display:grid;place-items:center;font-weight:800;letter-spacing:.3px;
}
.nav-links{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  padding:10px 12px;border-radius:999px;
  border:1px solid var(--border); background: rgba(255,255,255,.04);
  color:var(--muted); font-size:14px;
}
.pill:hover{background: rgba(255,255,255,.08); color:var(--text)}

/* HERO */
.hero{
  padding:54px 0 26px;
  display:grid;grid-template-columns: 1.2fr .8fr;gap:18px;
}
@media (max-width: 900px){ .hero{grid-template-columns:1fr; padding-top:28px;} }

/* CARDS */
.card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-pad{padding:22px}
.h-title{font-size:46px;line-height:1.05;margin:0 0 10px;font-weight:900;letter-spacing:-.9px}
.h-sub{margin:0;color:var(--muted);font-size:16px;line-height:1.6}

/* BADGES + CTA */
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.badge{
  font-size:13px;color:var(--muted);
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
}

.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.btn{
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text); font-weight:700; font-size:14px;
  cursor:pointer;
}
.btn:hover{background: rgba(255,255,255,.10)}
.btn-primary{
  background: linear-gradient(135deg, rgba(109,94,252,.95), rgba(0,212,255,.65));
  border:1px solid rgba(109,94,252,.35);
}
.btn-primary:hover{filter: brightness(1.06)}

/* KPIs */
.kpi{display:grid;grid-template-columns:1fr 1fr; gap:12px; margin-top:14px}
.kpi .item{padding:14px;border-radius:16px;background: rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.10)}
.kpi .label{font-size:12px;color:var(--muted)}
.kpi .value{margin-top:6px;font-weight:900;font-size:16px;color:var(--text)}

/* LAYOUT HELPERS */
.section{margin-top:18px}
.section-title{margin:0 0 10px; font-weight:900; letter-spacing:-.3px; font-size:18px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 900px){ .grid-2{grid-template-columns:1fr;} }

.right{text-align:right}
.small{font-size:12px;color:var(--muted)}
.sep{height:1px;background: rgba(255,255,255,.08); margin:14px 0}
.footer{padding:28px 0 40px;color:var(--muted);font-size:12px}

/* TABLE */
.table{width:100%;border-collapse:collapse;font-size:14px}
.table th,.table td{padding:12px 12px;border-bottom:1px solid rgba(255,255,255,.08)}
.table th{text-align:left;color:var(--muted);font-weight:700}

/* INPUTS */
.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
  font-family: inherit;
}
textarea{resize:vertical; min-height: 90px}
.input:focus, select:focus, textarea:focus{
  border-color: rgba(109,94,252,.50);
  box-shadow: 0 0 0 3px rgba(109,94,252,.15)
}

/* SCROLLBAR (opcional, se ve pro) */
*::-webkit-scrollbar{height:10px;width:10px}
*::-webkit-scrollbar-thumb{background: rgba(255,255,255,.14); border-radius:999px}
*::-webkit-scrollbar-track{background: rgba(0,0,0,.15)}
