:root{
  --bg: #0B0F17;
  --bg2:#101827;
  --card:#0E1423;
  --stroke:#22314F;
  --text:#EAF0FF;
  --muted:#9FB2D9;
  --gold:#F5C542;
  --magenta:#DB05B3;
  --mint:#48E5C2;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 30px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% 10%, rgba(219,5,179,.12), transparent 60%),
              radial-gradient(1000px 700px at 90% 18%, rgba(245,197,66,.10), transparent 60%),
              radial-gradient(1000px 700px at 80% 90%, rgba(72,229,194,.08), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:16px; width:auto; height:auto;
  padding:10px 12px; border-radius:12px;
  background:var(--bg2); border:1px solid var(--stroke);
  z-index:9999;
}

.header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.64);
  border-bottom: 1px solid rgba(34,49,79,.55);
}
.navbar{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand img{width:190px; height:auto}
.navlinks{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.navlinks a{
  padding:10px 12px; border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
  font-weight:650;
  letter-spacing:.1px;
}
.navlinks a:hover{border-color: rgba(245,197,66,.35); color:var(--text); background: rgba(16,24,39,.45)}
.navlinks a.active{border-color: rgba(245,197,66,.55); color:var(--text); background: rgba(16,24,39,.65)}

.hero{
  padding: 44px 0 12px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(34,49,79,.7);
  background: rgba(14,20,35,.7);
  color:var(--muted);
  font-weight:700;
  width:fit-content;
}
.badge-dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  box-shadow: 0 0 24px rgba(245,197,66,.25);
}

h1{
  font-size: clamp(32px, 3.4vw, 48px);
  line-height:1.12;
  margin: 14px 0 12px;
  letter-spacing:-.5px;
}
.lead{
  font-size: 16.5px;
  color: var(--muted);
  max-width: 60ch;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(34,49,79,.9);
  background: rgba(16,24,39,.55);
  color: var(--text);
  font-weight:800;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.btn:hover{transform: translateY(-1px); background: rgba(16,24,39,.8)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  border-color: rgba(245,197,66,.55);
  background: linear-gradient(135deg, rgba(245,197,66,.16), rgba(219,5,179,.16));
}
.btn small{opacity:.9; font-weight:700; color:var(--muted)}

.hero-card{
  border:1px solid rgba(34,49,79,.7);
  background: linear-gradient(180deg, rgba(14,20,35,.75), rgba(14,20,35,.55));
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute; inset:0;
  background-image:url("../img/pattern.svg");
  opacity:.55;
  pointer-events:none;
  mix-blend-mode:screen;
}
.hero-card .media{
  position:relative;
  padding: 14px;
}
.hero-card img{border-radius: 22px; border:1px solid rgba(34,49,79,.75)}
.hero-card .mini{
  display:flex; gap:10px; flex-wrap:wrap;
  padding: 0 16px 16px;
  position:relative;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  border-radius:999px;
  padding:8px 10px;
  border:1px solid rgba(34,49,79,.65);
  background: rgba(16,24,39,.45);
  color: var(--muted);
  font-weight:750;
}
.pill b{color:var(--text)}

.section{
  padding: 34px 0;
}
.section h2{
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 12px;
  letter-spacing:-.2px;
}
.section .sub{
  color: var(--muted);
  max-width: 78ch;
  margin: 0 0 18px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border:1px solid rgba(34,49,79,.72);
  background: rgba(14,20,35,.62);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.card .top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  margin-bottom: 12px;
}
.icon{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(16,24,39,.7);
  border:1px solid rgba(34,49,79,.75);
}
.icon img{width:46px; height:46px}
.card h3{margin:0; font-size: 16.5px; letter-spacing:-.1px}
.card p{margin:10px 0 0; color:var(--muted)}
.kpis{
  display:flex; gap:8px; flex-wrap:wrap; margin-top: 12px;
}
.kpi{
  border:1px solid rgba(34,49,79,.65);
  background: rgba(16,24,39,.45);
  padding:8px 10px;
  border-radius: 14px;
  color:var(--muted);
  font-weight:750;
}
.kpi strong{color:var(--text)}

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-items:start;
}
.list{
  margin:0; padding:0; list-style:none;
  display:flex; flex-direction:column; gap:10px;
}
.list li{
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(34,49,79,.65);
  background: rgba(16,24,39,.42);
}
.list li b{color:var(--text)}
.list li span{color:var(--muted)}

.table-wrap{
  overflow:auto;
  border-radius: var(--radius);
  border:1px solid rgba(34,49,79,.72);
  background: rgba(14,20,35,.62);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width: 740px;
}
th, td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(34,49,79,.55);
  text-align:left;
  vertical-align:top;
}
th{
  position:sticky; top:0;
  background: rgba(16,24,39,.82);
  color:#DCE6FF;
  font-weight:900;
}
td{color: var(--muted)}
td b{color: var(--text)}
.stars{
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 900;
}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(34,49,79,.7);
  background: rgba(16,24,39,.55);
  color: var(--muted);
  font-weight:800;
  margin-right:6px;
  margin-top:6px;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery figure{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(34,49,79,.75);
  background: rgba(14,20,35,.62);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.gallery figcaption{
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 700;
}
.gallery img{width:100%; height:auto;}

.faq{
  display:flex; flex-direction:column; gap:10px;
}
details{
  border-radius: var(--radius);
  border:1px solid rgba(34,49,79,.72);
  background: rgba(14,20,35,.62);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  list-style:none;
  font-weight:900;
  letter-spacing:-.1px;
}
summary::-webkit-details-marker{display:none}
details p{color:var(--muted); margin: 10px 0 0}

.footer{
  padding: 28px 0 48px;
  border-top: 1px solid rgba(34,49,79,.55);
  color: var(--muted);
}
.footer .fine{
  display:flex; flex-wrap:wrap; gap:8px; align-items:center;
  margin-top: 10px;
}
.pulse{
  width:10px; height:10px; border-radius:50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(72,229,194,.28);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .brand img{width:170px}
  .grid-3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn:hover{transform:none}
}
