/* MimiteVentures — style clean, lisible, compliance-friendly */
:root{
  --bg:#0b1220;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.12);
  --text:#eef3ff;
  --muted: rgba(238,243,255,.75);
  --brand1:#7aa2ff;
  --brand2:#69e6c1;
  --shadow: 0 16px 44px rgba(0,0,0,.35);
  --r: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  background:
    radial-gradient(1100px 520px at 18% -12%, rgba(122,162,255,.26), transparent 60%),
    radial-gradient(900px 520px at 86% 0%, rgba(105,230,193,.20), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:var(--brand1);text-decoration:none}
a:hover{text-decoration:underline}
strong{color:var(--text)}

.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:20;
  background:rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  min-height:64px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand{display:flex; align-items:center; gap:10px; color:var(--text); font-weight:900}
.brand__mark{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--brand1),var(--brand2));
  color:#071223;font-weight:950;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.nav{display:flex; gap:14px; flex-wrap:wrap}
.nav a{color:var(--muted); font-weight:650}
.nav a:hover{color:var(--text); text-decoration:none}

/* Hero */
.hero{padding:56px 0 28px; border-bottom:1px solid var(--border)}
.hero__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}
@media(max-width:920px){.hero__grid{grid-template-columns:1fr}}

.badge{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.03);
}
h1{font-size:42px;line-height:1.1;margin:12px 0 12px}
h2{font-size:28px;line-height:1.2;margin:0 0 12px}
h3{font-size:18px;margin:0 0 8px}
.lead{font-size:18px;color:var(--muted);max-width:760px}
.hint{font-size:12px;color:var(--muted);margin-top:14px}

.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;
  background:linear-gradient(135deg,var(--brand1),var(--brand2));
  color:#071223;font-weight:900;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.btn:hover{filter:brightness(1.05); text-decoration:none}
.btn--ghost{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
  box-shadow:none;
}

/* Layout */
.section{padding:34px 0}
.section--alt{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.grid{display:grid; gap:14px}
.grid--2{grid-template-columns:1fr 1fr}
.grid--3{grid-template-columns:repeat(3,1fr)}
@media(max-width:920px){
  .grid--2,.grid--3{grid-template-columns:1fr}
}

/* Surfaces */
.card,.panel,.tile{
  border:1px solid var(--border);
  border-radius:var(--r);
  background:var(--panel);
}
.card{padding:16px; box-shadow:var(--shadow)}
.panel{padding:16px}
.tile{padding:16px; background:var(--panel2)}

/* Lists */
.check,.bullets{margin:10px 0 0 0; padding-left:18px; color:var(--muted)}
.check li{margin:8px 0}
.bullets li{margin:6px 0}

/* Text helpers */
.small{font-size:12px}
.muted{color:var(--muted)}

/* Footer */
.footer{padding:18px 0; color:var(--muted)}
.footer__inner{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;flex-wrap:wrap}
