:root{
  --bg: #0b0f17;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.88);
  --muted: rgba(255,255,255,.65);
  --muted2: rgba(255,255,255,.45);
  --accent: #7c5cff;
  --accent2: #34d399;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 70% -10%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 500px at 20% 10%, rgba(52,211,153,.12), transparent 60%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width: 1120px; margin: 0 auto; padding: 0 18px; }

/* Nav */
.nav{
  position: sticky;
  top:0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11,15,23,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navInner{
  height: 70px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.logo{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing:.5px;
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(52,211,153,.65));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brandText{ display:flex; flex-direction:column; line-height:1.05; }
.brandTop{ font-weight:700; }
.brandSub{ font-size: 12px; color: var(--muted2); margin-top:2px; }

.links{
  display:flex; gap: 18px;
  font-weight: 600;
  color: var(--muted);
}
.links a{ padding: 10px 6px; border-radius: 12px; }
.links a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

.navActions{ display:flex; gap: 10px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(124,92,255,.92);
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
}
.btn:hover{ filter: brightness(1.05); }
.btn.ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.btn.small{ padding: 10px 12px; border-radius: 12px; font-weight:700; font-size: 14px; }

/* Hero */
.hero{
  padding: 46px 0 10px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}
.badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
}
h1{
  margin: 16px 0 12px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -1px;
}
.accent{ color: rgba(124,92,255,1); }
.lead{
  margin:0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}
.heroCtas{ margin-top: 18px; display:flex; gap: 10px; flex-wrap:wrap; }

.quickStats{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 12px;
}
.statNum{ font-weight: 800; letter-spacing: -.2px; }
.statLabel{ font-size: 12px; color: var(--muted2); margin-top: 4px; }

.heroCard{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}
.heroCardTop{ display:flex; gap: 8px; flex-wrap:wrap; margin-bottom: 12px; }
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124,92,255,.20);
  border: 1px solid rgba(124,92,255,.25);
  font-weight:700;
}
.pill.soft{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 700;
  color: var(--muted);
}
.cover{
  height: 260px;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(450px 240px at 30% 20%, rgba(124,92,255,.35), transparent 55%),
    radial-gradient(450px 240px at 70% 90%, rgba(52,211,153,.12), transparent 60%),
    rgba(255,255,255,.06);
}
.coverPlaceholder{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:end;
  padding: 18px;
}
.coverBig{ font-weight: 900; font-size: 22px; }
.coverSmall{ color: var(--muted); font-size: 13px; margin-top: 4px; }

.heroCardBottom{ display:flex; gap: 10px; margin-top: 14px; flex-wrap:wrap; }

/* Sections */
.section{ padding: 46px 0 10px; }
.sectionHead h2{ margin:0; font-size: 28px; letter-spacing: -.5px; }
.sectionHead p{ margin: 8px 0 0; color: var(--muted); }

.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.card{
  overflow:hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
}
.thumb{
  height: 160px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(520px 260px at 30% 0%, rgba(124,92,255,.30), transparent 55%),
    rgba(255,255,255,.06);
}
.thumbPlaceholder{
  height:100%;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: -.5px;
  color: rgba(255,255,255,.85);
}
.thumbPlaceholder.alt{
  background:
    radial-gradient(520px 260px at 70% 10%, rgba(52,211,153,.18), transparent 55%);
}
.cardBody{ padding: 16px; }
.titleRow{ display:flex; align-items:center; justify-content:space-between; gap: 10px; }
.card h3{ margin:0; font-size: 18px; }
.desc{ margin: 10px 0 0; color: var(--muted); line-height:1.6; }

.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 800;
}
.tag.live{ background: rgba(52,211,153,.15); border-color: rgba(52,211,153,.20); color: rgba(255,255,255,.86); }
.tag.wip{ background: rgba(124,92,255,.18); border-color: rgba(124,92,255,.25); color: rgba(255,255,255,.90); }

.meta{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 8px; }
.chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.15);
  color: var(--muted);
  font-weight: 700;
}

.actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap:wrap; }

/* About */
.about{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.aboutCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
}
.aboutCard h3{ margin:0; font-size: 18px; }
.aboutCard ul{ margin: 12px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.stack{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 8px; }
.aboutActions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap:wrap; }

/* Contact */
.contact{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contactCard{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.contactCard:hover{ background: rgba(255,255,255,.07); }
.contactIcon{ font-size: 22px; width: 42px; height: 42px; display:grid; place-items:center; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);}
.contactTitle{ font-weight: 900; }
.contactSub{ font-size: 12px; color: var(--muted2); margin-top: 4px; }

/* Footer */
.footer{
  margin: 40px 0 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}
.footLinks{ display:flex; gap: 10px; align-items:center; color: var(--muted2); }
.footLinks a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  h1{ font-size: 36px; }
  .grid{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .links{ display:none; }
}
