/* style.css (înlocuiește complet fișierul) */
:root{
  --bg:#0b0f14; --text:#e8eef6; --muted:#a9b4c2; --line:#1d2a3a;
  --accent:#31d27c; --shadow:0 14px 40px rgba(0,0,0,.45); --radius:16px; --max:1100px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(49,210,124,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(49,210,124,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), #070a0f 60%);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}
.mini{font-size:12px;color:var(--muted)}
.sub{color:var(--muted);font-size:16px;line-height:1.6;margin:14px 0 22px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid rgba(29,42,58,.65);
}
.bar{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand strong{font-weight:900; letter-spacing:.2px}
.logo{display:none} /* remove the green circle/icon completely */

/* Desktop links */
.links{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.links a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
  border:1px solid transparent;
}
.links a:hover{color:var(--text); border-color:rgba(49,210,124,.25); background: rgba(49,210,124,.06)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid rgba(49,210,124,.35);
  background: linear-gradient(180deg, rgba(49,210,124,.18), rgba(49,210,124,.08));
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
  font-weight:800;
}
.btn:hover{border-color:rgba(49,210,124,.55); background: linear-gradient(180deg, rgba(49,210,124,.24), rgba(49,210,124,.10))}
.btn2{
  padding:11px 14px; border-radius:12px;
  border:1px solid rgba(29,42,58,.9);
  background: rgba(16,26,38,.8);
  color:var(--muted);
  font-weight:800;
}
.btn2:hover{color:var(--text); border-color:rgba(49,210,124,.25)}

/* Header / hero */
header{padding:56px 0 22px}
.hero{display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:center}
@media (max-width:900px){.hero{grid-template-columns:1fr}}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(49,210,124,.25);
  background: rgba(49,210,124,.07);
  color: var(--muted);
  width:fit-content;
  margin-bottom:14px;
  font-size:13px;
}
h1{margin:0; font-size:44px; line-height:1.1}
@media (max-width:520px){h1{font-size:34px}}

.heroCard{
  border:1px solid rgba(29,42,58,.75);
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(16,26,38,.85), rgba(11,15,20,.55));
  box-shadow: var(--shadow);
  padding:18px;
  display:grid;
  gap:12px;
}

/* Stats blocks used in hero */
.stat{
  border:1px solid rgba(29,42,58,.75);
  border-radius:14px;
  background: rgba(16,26,38,.65);
  padding:14px;
}
.stat .n{font-size:16px; font-weight:900}
.stat .t{color:var(--muted); font-size:13px; margin-top:4px}

/* Sections */
section{padding:26px 0}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:14px}
.section-title h2{margin:0; font-size:22px}
.section-title p{margin:0; color:var(--muted); font-size:14px}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width:900px){.grid3{grid-template-columns:1fr}}
.card{
  border:1px solid rgba(29,42,58,.75);
  border-radius:var(--radius);
  background: rgba(16,26,38,.65);
  padding:16px;
  margin-bottom:10px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px;
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(29,42,58,.9);
  background: rgba(11,15,20,.45);
}
.icon{width:10px; height:10px; border-radius:3px; background: rgba(49,210,124,.9); box-shadow: 0 0 16px rgba(49,210,124,.45)}
.card h3{margin:10px 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}

.two{display:grid; grid-template-columns:1fr 1fr; gap:14px}
@media (max-width:900px){.two{grid-template-columns:1fr}}

/* FAQ */
.faq details{
  border:1px solid rgba(29,42,58,.75);
  border-radius:14px;
  background: rgba(16,26,38,.55);
  padding:14px;
}
.faq details + details{margin-top:10px}
.faq summary{cursor:pointer; font-weight:900}
.faq p{margin:10px 0 0; color:var(--muted); line-height:1.6}

/* Screenshots */
.shots{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:16px;
  align-items:start;
}
figure.shot{
  margin:0;
  padding:12px;
  border:1px solid rgba(29,42,58,.75);
  border-radius:16px;
  background: rgba(16,26,38,.28);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
figure.shot img{
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:12px;
  display:block;
  border:1px solid var(--line);
  background:#000;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: zoom-in;
}
figure.shot img:hover{transform: scale(1.01); box-shadow: 0 18px 40px rgba(0,0,0,.6)}
figure.shot figcaption{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

/* Lightbox */
.lb{
  position:fixed; inset:0; z-index:9999;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lb.open{display:flex}
.lb img{
  max-width:min(1100px, 96vw);
  max-height:88vh;
  width:auto;
  height:auto;
  border-radius:16px;
  border:1px solid rgba(29,42,58,.9);
  box-shadow: 0 18px 60px rgba(0,0,0,.65);
  background:#000;
}
.lb .close{
  position:absolute; top:14px; right:14px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(29,42,58,.9);
  background: rgba(16,26,38,.75);
  color: var(--text);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lb .close:hover{border-color:rgba(49,210,124,.25)}

/* Footer */
footer{padding:0}
.foot{
  margin:26px auto 40px;
  padding:22px 18px;
  border:1px solid rgba(29,42,58,.75);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(16,26,38,.42), rgba(16,26,38,.18));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  color:var(--muted);
}
.footgrid{display:grid; grid-template-columns:1.4fr .8fr .8fr; gap:22px; align-items:start}
@media (max-width:900px){.footgrid{grid-template-columns:1fr; gap:16px}}
.footlinks{margin-top:10px; display:flex; flex-direction:column; gap:8px}
.footlinks a{
  color:var(--muted);
  padding:6px 8px;
  border-radius:10px;
  border:1px solid transparent;
  width:fit-content;
}
.footlinks a:hover{color:var(--text); border-color:rgba(49,210,124,.25); background: rgba(49,210,124,.06)}

/* Anchor offset for sticky topbar */
[id]{scroll-margin-top:90px}
.footcopy{ text-align:center; color:var(--muted); font-size:13px; margin: 0 0 24px; }

/* ---------------- Mobile navbar ---------------- */
.navToggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(29,42,58,.9);
  background: rgba(16,26,38,.75);
  color:var(--text);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  padding:0;
}
.navToggle:hover{border-color:rgba(49,210,124,.25)}
.navToggle span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(232,238,246,.9);
  border-radius:2px;
  margin:4px auto;
}

@media (max-width:720px){
  .brand .sub{display:none} /* subtitle-ul din topbar e prea mult pe mobil */
  .navToggle{display:inline-flex}

  /* închide links by default */
  .links{
    position:fixed;
    left:14px; right:14px;
    top:74px;
    display:none;
    flex-direction:column;
    gap:8px;
    padding:12px;
    border-radius:16px;
    border:1px solid rgba(29,42,58,.9);
    background: rgba(11,15,20,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0,0,0,.55);
    z-index:100;
  }
  .links a{width:100%; padding:10px 12px}
  .links a.btn{justify-content:center}

  .topbar.nav-open .links{display:flex}
}

/* mici îmbunătățiri pe ecrane foarte mici */
@media (max-width:360px){
  .wrap{padding:0 14px}
}
