:root{
  --bg:#0b0c10;
  --card:#121420;
  --line:#1b2030;
  --text:#e9ecf1;
  --muted:#a6aec0;
  --accent:#b8ffbd;
  --accent2:#b8d7ff;
  --danger:#ffb8b8;

  --r:16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font: 16px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(184,255,189,.08), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(184,215,255,.08), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.wrap{
  width:min(1040px, calc(100% - 32px));
  margin:0 auto;
}

.top{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.65);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.top .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.dot{
  width:10px;height:10px;border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(184,255,189,.08);
}
.nav{display:flex; gap:14px; color:var(--muted); font-weight:600}
.nav a{padding:6px 10px; border-radius:10px}
.nav a:hover{background: rgba(255,255,255,.06); color:var(--text)}

.hero{padding:34px 0 18px}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing:-.5px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  max-width:70ch;
}
.pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  border-radius:999px;
  font-weight:600;
  font-size:13px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  padding: 8px 0 26px;
}
@media (min-width: 920px){
  .grid{ grid-template-columns: 1fr 1fr; gap:16px;}
}

.card{
  background: rgba(18,20,32,.85);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 16px;
}
.card-head h2{margin:0; font-size:18px}
.card-head p{margin:6px 0 0}

.muted{color:var(--muted)}
.small{font-size:13px}

.form{margin-top:14px; display:flex; flex-direction:column; gap:12px}
.row{display:grid; grid-template-columns:1fr; gap:12px}
@media (min-width: 520px){
  .row{grid-template-columns:1fr 1fr}
}

.field label{
  display:block;
  font-weight:700;
  font-size:13px;
  margin-bottom:6px;
}
.hint{margin-top:6px; font-size:12px; color:var(--muted)}
input, select, button{
  font: inherit;
}
input, select{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(11,12,16,.6);
  color: var(--text);
  outline: none;
}
input:focus, select:focus{
  border-color: rgba(184,255,189,.35);
  box-shadow: 0 0 0 4px rgba(184,255,189,.08);
}
.stack{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
}
select{cursor:pointer; min-width: 120px}

.actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:6px;
}
button{
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.10);
}
.ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.ghost:hover{background: rgba(255,255,255,.08)}

.micro{
  padding:12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(184,215,255,.06);
  color: var(--muted);
}

.kpis{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
@media (min-width:520px){
  .kpis{grid-template-columns:1fr 1fr 1fr}
}
.kpi{
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.kpi-label{font-size:12px; color:var(--muted); font-weight:700}
.kpi-value{
  margin-top:6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing:-.2px;
}

.bar{margin-top:14px; padding:12px; border-radius:14px; border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04)}
.bar-label{display:flex; justify-content:space-between; font-size:12px; color:var(--muted); font-weight:700}
.bar-track{
  margin-top:8px;
  width:100%;
  height:12px;
  border-radius:999px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
}
.bar-invested{background: linear-gradient(90deg, rgba(184,215,255,.85), rgba(184,215,255,.35))}
.bar-interest{background: linear-gradient(90deg, rgba(184,255,189,.85), rgba(184,255,189,.35))}
.bar-foot{margin-top:8px; font-size:12px}

.details{
  margin-top:14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(11,12,16,.35);
  padding: 8px 10px;
}
details > summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
}
details > summary::-webkit-details-marker{display:none}
details[open]{padding-bottom:12px}
.table-wrap{overflow:auto; margin-top:10px}
.table{
  width:100%;
  border-collapse: collapse;
  font-size: 13px;
}
.table th, .table td{
  padding:10px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  white-space:nowrap;
}
.table th{color:var(--muted); font-weight:800}
.table td{color:var(--text)}
.table tr:hover td{background: rgba(255,255,255,.03)}

.ad-slot{
  margin:16px 0 0;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.ad-note{color:var(--muted); font-size:13px}

.share{
  margin-top:14px;
  padding:12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(184,255,189,.06);
}
.share-head{display:flex; align-items:baseline; justify-content:space-between; gap:10px}

.seo, .faq{
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(18,20,32,.55);
}
.seo h2, .faq h2{margin:0 0 10px}
.footer{padding: 22px 0 40px}
