body.info-page {
  height: 100dvh;
  overflow: hidden;
}

.info-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  width: min(860px, calc(100vw - 28px));
  height: 100dvh;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 56px) 0;
  overflow: hidden;
}

.info-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 36px;
}

.info-brand,
.info-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.info-brand {
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-link:hover,
.info-brand:hover {
  color: var(--ink);
}

.info-card {
  min-height: 0;
  overflow-y: auto;
  padding: clamp(22px, 5vw, 44px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: var(--panel-bg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(var(--panel-blur));
  -webkit-backdrop-filter: blur(var(--panel-blur));
}

.info-card::-webkit-scrollbar {
  width: 8px;
}

.info-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.info-card h1 {
  margin-bottom: 14px;
}

.info-card h2 {
  margin-top: 28px;
  margin-bottom: 8px;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.info-card p {
  margin-bottom: 14px;
}

.info-card ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.info-card a {
  color: var(--blue);
}

.info-updated {
  color: var(--subtle) !important;
  font-size: 13px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
