/* ══════════════════════════════════════════════════
   ABOUT / INFO PAGE
   Layered on top of home.css — reuses its tokens,
   masthead, footer, menu island and info FAB.
══════════════════════════════════════════════════ */

.info-page{
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.75rem 5rem;
}

.info-page .kicker{
  position: relative;
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:700;
  font-size: 0.95rem;
  color: var(--purple-deep);
  margin-bottom: 0.9rem;
}

.info-page h1{
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 1.6rem;
}

.info-page .lede{
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: 2.5rem;
}
.info-page .lede a{
  color: var(--purple-deep);
  text-decoration: underline;
}
.info-page code{
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 0.92em;
  background: var(--paper-2);
  border: 1px solid rgba(34,17,43,0.2);
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
  color: var(--purple-deep);
}

/* ══════════════════════════════════════════════════
   STATUS BANNER — matches the one on the commands page
══════════════════════════════════════════════════ */
.status-banner{
  margin-bottom: 2rem;
  padding: 1.15rem 1.35rem;
  background: var(--paper-2);
  border: 2px dashed rgba(34,17,43,0.3);
  border-radius: 14px 14px 14px 3px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.status-banner-dot{
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 0.6rem;
  animation: pulse 2.2s ease-in-out infinite;
}
.status-banner-body{
  flex: 1;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}
.status-banner-body strong{ color: var(--ink); }
.status-banner-body a{
  color: var(--purple-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════════════════
   INFO BLOCKS
══════════════════════════════════════════════════ */
.info-block{
  border-top: 2px dotted rgba(34,17,43,0.3);
  padding: 2rem 0;
}
.info-block h2{
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.info-block p{
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 0.8rem;
}
.info-block p:last-child{ margin-bottom: 0; }
.info-block a{
  color: var(--purple-deep);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════
   CTA ROW
══════════════════════════════════════════════════ */
.info-cta{
  margin-top: 2.5rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 640px){
  .info-page{ padding: 3rem 1.35rem 4rem; }
}

@media (prefers-reduced-motion: reduce){
  .status-banner-dot{ animation: none !important; }
}