/* ============================================================
   Mobile Axe — launch hub (/launch/)
   Internal-facing. Minimal restyle to match the new system.
   ============================================================ */

main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

main h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.012em;
  color: var(--ink);
}

main p { max-width: 760px; color: var(--muted); line-height: 1.6; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

a.card {
  display: grid;
  gap: 10px;
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 22px;
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

a.card:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

a.card strong { font-size: 1.3rem; color: var(--ink); }
a.card span { color: var(--muted); line-height: 1.5; }
a.card small { align-self: end; color: var(--forest); font-weight: 800; }

.notice {
  margin-top: 28px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 16px 20px;
  background: var(--gold-soft);
  color: var(--ink);
}

.notice p { margin: 0; color: var(--ink); }
.notice strong { color: var(--gold-2); }

.section {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px;
  background: var(--paper);
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--ink);
  letter-spacing: -0.005em;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.number {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: var(--r-pill);
  background: var(--forest-tint);
  color: var(--forest);
  font-weight: 800;
}

.checklist strong,
.file-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.checklist span,
.file-list span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.file-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.file-list a {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 16px;
  color: inherit;
  text-decoration: none;
  background: var(--bone);
  transition: border-color 160ms ease, background 160ms ease;
}

.file-list a:hover { border-color: var(--forest); background: var(--paper); }

.blocked {
  background: var(--rust-soft);
  border-color: var(--rust);
}

.blocked .number { background: var(--rust-soft); color: var(--rust); }
.blocked h2 { color: var(--rust); }

@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  .two-column,
  .file-list { grid-template-columns: 1fr; }
}
