/* ============== INFO MODAL ============== */
.info-modal {
  position: fixed; inset: 0;
  z-index: 110;
  display: none;
  align-items: center; justify-content: center;
  padding: 28px;
  font-family: var(--body);
}
.info-modal.open { display: flex; }

.info-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 12, 24, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: infoFade 0.2s ease;
}
@keyframes infoFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.info-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 56px);
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 32px 30px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  color: var(--offwhite);
  overflow-y: auto;
  animation: infoPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes infoPop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.info-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(240,253,250,0.7);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.info-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.info-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(6,214,160,0.08);
  border: 1px solid rgba(6,214,160,0.22);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.info-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.info-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(240,253,250,0.78);
}
.info-body p { margin-bottom: 12px; }
.info-body p:last-child { margin-bottom: 0; }
.info-body ul {
  margin: 10px 0 12px;
  padding-left: 0;
  list-style: none;
}
.info-body ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.info-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
}
.info-body strong { color: #fff; font-weight: 600; }

.info-footnote {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(240,253,250,0.4);
}

/* Footer links — make the buttons look identical to the original anchors */
footer .footer-link {
  background: none; border: none; padding: 0;
  font: inherit; color: inherit;
  text-align: left; cursor: pointer;
}

@media (max-width: 560px) {
  .info-modal { padding: 16px; }
  .info-card { padding: 24px 22px 26px; }
  .info-card h3 { font-size: 20px; }
}
