:root{
  --bg: #0b0e14;
  --card: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --border: rgba(255,255,255,0.12);
  --accent: #7aa7ff;
  --accent2: #7dffcc;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(122,167,255,0.22), transparent 55%),
    radial-gradient(900px 500px at 85% 20%, rgba(125,255,204,0.16), transparent 50%),
    radial-gradient(800px 700px at 50% 90%, rgba(255,255,255,0.06), transparent 55%),
    var(--bg);
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: 0.1px;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 10px; }

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 18px 46px;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 8px 4px 22px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(122,167,255,0.9), rgba(125,255,204,0.85));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  position: relative;
}

.logo::after{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(0,0,0,0.22), rgba(255,255,255,0.06));
  mix-blend-mode: overlay;
}

.brand h1{
  font-size: 16px;
  margin: 0;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand p{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill{
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
}

.hero{
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  overflow: hidden;
  position: relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(122,167,255,0.28), transparent 60%);
  transform: rotate(12deg);
  pointer-events:none;
}

.kicker{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  color: var(--muted);
  font-size: 13px;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent2);
  box-shadow: 0 0 0 5px rgba(125,255,204,0.12);
}

.hero h2{
  margin: 14px 0 8px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 68ch;
  font-size: 15.5px;
}

.cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

.btn.primary{
  border-color: rgba(122,167,255,0.35);
  background: linear-gradient(135deg, rgba(122,167,255,0.22), rgba(125,255,204,0.14));
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.card{
  grid-column: span 6;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  min-height: 110px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.card:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

.card h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.card p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.meta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.16);
  padding: 5px 8px;
  border-radius: 999px;
}

footer{
  margin-top: 18px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.small-links{ display:flex; gap: 12px; flex-wrap: wrap; }
.small-links a{ color: var(--muted); }
.small-links a:hover{ color: var(--text); }

@media (max-width: 820px){
  .card{ grid-column: span 12; }
  header{ align-items:flex-start; }
  nav{ justify-content:flex-start; }
}
