:root{
  --bg:#f7f9ff;
  --panel:rgba(255,255,255,.88);
  --panel2:rgba(15,23,42,.03);
  --border:rgba(15,23,42,.12);
  --text:#0f172a;
  --muted:rgba(15,23,42,.72);
  --muted2:rgba(15,23,42,.55);

  /* Vibrant brand palette */
  --brand:#2563eb;     /* blue */
  --brand2:#7c3aed;    /* violet */
  --accent:#06b6d4;    /* cyan */
  --accent2:#f97316;   /* orange */

  --shadow:0 18px 50px -30px rgba(2,6,23,.28);
  --radius:18px;
  --radius2:22px;
  --max:1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, 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);
  line-height:1.6;

  /* Light, vibrant background (no black) */
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(37,99,235,.18), transparent 55%),
    radial-gradient(900px 500px at 95% 10%, rgba(124,58,237,.14), transparent 55%),
    radial-gradient(900px 500px at 60% 110%, rgba(6,182,212,.12), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7f9ff 60%, #ffffff);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.78);
  border-bottom:1px solid var(--border);
  box-shadow:0 12px 40px -34px rgba(2,6,23,.25);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
}
.logo{
  width:40px; height:40px;
  border-radius:16px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff; font-weight:900;
  box-shadow:0 18px 40px -28px rgba(37,99,235,.9);
}
.brand b{display:block; font-size:14px}
.brand small{display:block; color:var(--muted2); margin-top:-2px}
.links{display:flex; gap:18px; align-items:center}
.links a{color:var(--muted); font-size:14px}
.links a:hover{color:var(--brand)}
.ctas{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.86);
  color:var(--text);
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  box-shadow:0 12px 40px -34px rgba(2,6,23,.25);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.btn:hover{background:#fff}
.btn.primary{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  border-color:transparent;
}
.btn.primary:hover{filter:brightness(1.02); transform: translateY(-1px)}
.hero{
  padding:56px 0 26px;
}
.grid{
  display:grid; gap:18px;
}
.grid.two{grid-template-columns: 1.1fr .9fr}
@media(max-width:900px){ .grid.two{grid-template-columns:1fr} .links{display:none}}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px}
.badge{
  font-size:12px;
  color:rgba(15,23,42,.75);
  border:1px solid rgba(37,99,235,.18);
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(6,182,212,.08));
  padding:6px 10px;
  border-radius:999px;
}
h1{
  font-size:44px; line-height:1.1; margin:0;
  letter-spacing:-.02em;
}
@media(max-width:520px){ h1{font-size:36px}}
.lead{color:var(--muted); margin:14px 0 0}
.hero-actions{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}
.kpis{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
@media(max-width:520px){ .kpis{grid-template-columns:1fr} }
.card{
  border:1px solid var(--border);
  background: var(--panel);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:16px;
}
.card.soft{background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08));}
.card h3{margin:0 0 6px; font-size:15px}
.card p{margin:0; color:var(--muted); font-size:13px}
.section{
  padding:44px 0;
}
.section h2{
  margin:0;
  font-size:30px;
  letter-spacing:-.01em;
}
.section .sub{margin-top:10px; color:var(--muted); max-width:780px}
.cards{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media(max-width:900px){ .cards{grid-template-columns:1fr} }
.list{
  margin:0; padding-left:18px; color:var(--muted);
}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
@media(max-width:900px){ .split{grid-template-columns:1fr} }
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--border);
  margin-top:14px;
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  font-size:13px;
}
.table th{
  text-align:left;
  color:var(--text);
  background: var(--panel2);
  font-weight:800;
}
.table td{color:var(--muted)}
.table tr:last-child td{border-bottom:none}
.footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  color:var(--muted2);
  font-size:13px;
}
.form{
  display:grid; gap:10px; margin-top:10px;
}
.input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.92);
  color:var(--text);
  outline:none;
  font-size:13px;
}
textarea{min-height:110px; resize:vertical}
label{font-size:12px; color:var(--muted2)}
.note{font-size:12px; color:var(--muted2)}
.notice{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(6,182,212,.10), rgba(37,99,235,.08));
  color:var(--muted);
  font-size:13px;
}
.pill{
  display:inline-flex; align-items:center;
  font-size:12px;
  color:rgba(15,23,42,.72);
  border:1px solid rgba(124,58,237,.18);
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(249,115,22,.08));
  padding:6px 10px;
  border-radius:999px;
}
.inline{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.small{font-size:12px; color:var(--muted2)}

input:focus, select:focus, textarea:focus{border-color: rgba(37,99,235,.35); box-shadow:0 0 0 4px rgba(37,99,235,.12)}
