:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.14);
  --accent: #7c5cff;
  --accent2: #25d4ff;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
}

*{ 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(1000px 700px at 20% 10%, rgba(124,92,255,0.35), transparent 55%),
    radial-gradient(900px 650px at 80% 30%, rgba(37,212,255,0.25), transparent 60%),
    radial-gradient(900px 800px at 50% 90%, rgba(255,255,255,0.06), transparent 60%),
    var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.92; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left: 16px;
  top: 16px;
  width:auto;
  height:auto;
  padding: 10px 12px;
  background: rgba(0,0,0,0.8);
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,16,32,0.55);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap: 10px; }
.brand__mark{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(37,212,255,0.75));
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.brand__name{ font-weight: 700; }
.brand__tag{ color: var(--muted2); font-size: 12px; margin-top:2px; }

.nav{
  display:flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a{ padding: 8px 10px; border-radius: 12px; }
.nav a:hover{ background: rgba(255,255,255,0.06); }

.cta{ display:flex; gap: 10px; align-items:center; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.btn--primary{
  border-color: rgba(124,92,255,0.6);
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(37,212,255,0.55));
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.07); }
.btn--sm{ padding: 8px 12px; border-radius: 12px; font-size: 13px; }

.hero{ padding: 44px 0 18px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 16px 0;
}

h1{
  margin: 0 0 12px 0;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.accent{
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(37,212,255,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}

.hero__actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

.meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 14px;
}
.meta__item{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.meta__item span{ display:block; color: var(--muted2); font-size: 12px; }
.meta__item strong{ display:block; margin-top: 4px; }

.card{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card--soft{
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}
.card--glow{
  position: relative;
  overflow: hidden;
}
.card--glow::before{
  content:"";
  position:absolute;
  inset:-80px -80px auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(124,92,255,0.55), transparent 60%);
  filter: blur(10px);
  transform: rotate(10deg);
  pointer-events:none;
}
.card__title{
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.card__footer{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.mini{ font-size: 13px; color: var(--muted2); }
.mini:hover{ color: var(--text); }

.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 10px;
}
.stat{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 12px 12px;
  text-align:center;
}
.stat__kpi{ font-weight: 900; font-size: 18px; }
.stat__label{ color: var(--muted2); font-size: 12px; margin-top: 2px; }

.section{ padding: 36px 0 10px; }
.section__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.section__head h2{
  margin:0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.section__head p{
  margin:0;
  color: var(--muted2);
  max-width: 70ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.tile{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  padding: 16px;
}
.tile h3{ margin:0 0 8px 0; letter-spacing:-0.01em; }
.tile p{ margin:0 0 10px 0; color: var(--muted); line-height: 1.6; }
.tile ul{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.project{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  padding: 16px;
}
.project__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.project h3{ margin:0; letter-spacing:-0.01em; }
.project p{ margin:0 0 12px 0; color: var(--muted); line-height: 1.6; }
.project__links{ display:flex; gap: 10px; flex-wrap: wrap; }

.badge{
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.chips{ display:flex; flex-wrap: wrap; gap: 8px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.section--contact{ padding-bottom: 40px; }
.contact{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: start;
}
.contact p{ color: var(--muted); line-height: 1.6; }
.contact__actions{ display:flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 6px; }
.small{ font-size: 13px; color: var(--muted2); }

.divider{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 12px 0;
}

.links2{ display:flex; gap: 12px; flex-wrap: wrap; }
.links2 a{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.links2 a:hover{ background: rgba(255,255,255,0.07); color: var(--text); }

.footer{
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0 26px;
  margin-top: 12px;
}
.footer__inner{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted2);
  font-size: 13px;
}
.dot{ opacity: 0.6; }

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .meta{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
