:root{
  --bg:#0b1220;
  --card:#111a2c;
  --hover:#1b2a46;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --accent:#3b82f6;
  --border:rgba(255,255,255,0.08);
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ color:var(--text); }

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

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
}

.card-pad{ padding:20px; }

.site-header{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.site-title{
  margin:0;
  font-size:1.5rem;
  letter-spacing:.2px;
}

.site-subtitle{
  margin:6px 0 0;
  color:var(--muted);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  font-size:.85rem;
  white-space:nowrap;
}

.pill b{ color:var(--text); font-weight:650; }

.footer{
  margin-top:18px;
  color:var(--muted);
  font-size:.85rem;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.footer a{
  color:var(--muted);
  border-bottom:1px dotted rgba(255,255,255,0.22);
}

.footer a:hover{
  color:var(--text);
  border-bottom-color:rgba(255,255,255,0.45);
}

.hr{
  height:1px;
  background:var(--border);
  border:none;
  margin:18px 0;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
  gap:16px;
}

a.launch-card{
  display:block;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px 18px 16px;
  transition:background .15s ease, transform .1s ease, border-color .15s ease;
  position:relative;
  overflow:hidden;
  min-height:98px;
}

a.launch-card:hover{
  background:var(--hover);
  border-color:rgba(59,130,246,0.35);
  transform:translateY(-2px);
}

.launch-title{
  margin:0;
  font-weight:700;
  font-size:1.03rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.badge{
  font-size:.72rem;
  color:var(--muted);
  border:1px solid var(--border);
  border-radius:999px;
  padding:4px 8px;
  white-space:nowrap;
}

.launch-desc{
  margin:10px 0 0;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.25rem;
}
