* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111f;
  color: #edf4ff;
}
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 40px 0 56px; }
.hero {
  display: flex; justify-content: space-between; gap: 24px; align-items: flex-start;
  margin-bottom: 28px; padding: 28px; border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px; background: linear-gradient(135deg, rgba(43,127,255,.22), rgba(8,20,38,.92));
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.heroBrand { display: flex; gap: 24px; align-items: center; }
.heroLogo {
  width: min(30vw, 250px); min-width: 160px; max-width: 250px; height: auto;
  border-radius: 20px; background: rgba(255,255,255,.92); padding: 10px; object-fit: contain;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}
.eyebrow {
  margin: 0 0 10px; color: #8fc0ff; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
h1 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: .97; }
.subtitle { max-width: 760px; margin: 18px 0 0; color: #c7d8ee; font-size: 17px; line-height: 1.6; }
.statusLink {
  white-space: nowrap; display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 999px; color: #07111f; background: #8fc0ff;
  font-weight: 800; text-decoration: none;
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 16px; }
.card {
  position: relative; display: flex; flex-direction: column; gap: 9px; min-height: 292px; padding: 18px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 24px; color: #edf4ff;
  background: rgba(255,255,255,.06); text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover, .card:focus-visible {
  transform: translateY(-3px); border-color: rgba(143,192,255,.8); background: rgba(143,192,255,.12);
}
.cardDisabled { opacity: .72; cursor: not-allowed; }
.cardDisabled:hover { transform: none; border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }
.cardLogo {
  width: 100%; height: 124px; object-fit: contain; background: rgba(255,255,255,.94);
  border-radius: 18px; padding: 8px;
}
.card span { font-size: 22px; font-weight: 800; }
.card small { color: #9fc8ff; font-size: 14px; }
.card p { min-height: 42px; margin: 0; color: #c7d8ee; font-size: 14px; line-height: 1.45; }
.card em { margin-top: auto; color: #9fb8d5; font-size: 12px; font-style: normal; }
.badge {
  align-self: flex-start; padding: 6px 10px; border-radius: 999px; color: #07111f;
  background: #8fc0ff; font-size: 12px; font-weight: 900;
}
.cardDisabled .badge { background: rgba(255,255,255,.68); }
.notice {
  margin-top: 28px; padding: 24px; border-radius: 24px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.notice h2 { margin: 0 0 10px; }
.notice p { margin: 0; color: #c7d8ee; line-height: 1.6; }
@media (max-width: 760px) {
  .hero { flex-direction: column; }
  .heroBrand { flex-direction: column; align-items: flex-start; }
  .heroLogo { width: min(100%, 230px); min-width: 0; }
}
