/* ================================================================
   PHOENIX GROWTH COLLECTIVE — GLOBAL FOOTER STYLES
   ⚠️  LOCKED — requires double prompt to modify
   ================================================================ */

#pgc-footer {
  background: #060f29;
  color: #c9ced5;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  border-top: 2px solid #D4AF37;
}

#pgc-footer * { box-sizing: border-box; margin: 0; padding: 0; }

#pgc-footer a {
  color: #c9ced5;
  text-decoration: none;
  transition: color 150ms ease;
}
#pgc-footer a:hover { color: #D4AF37; }

.pgc-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 0;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 40px;
}

/* ── Brand column ── */
.pgc-footer-logo {
  height: 54px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.pgc-footer-nap {
  font-size: 13px;
  line-height: 2;
  color: #8a95a8;
}

.pgc-footer-nap a {
  color: #c9ced5;
  border-bottom: 1px solid #2a3245;
}
.pgc-footer-nap a:hover { color: #D4AF37; border-bottom-color: #D4AF37; }

.pgc-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.pgc-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #2a3245;
  color: #8a95a8;
  transition: border-color 150ms, color 150ms;
}
.pgc-footer-social a:hover { border-color: #D4AF37; color: #D4AF37; }
.pgc-footer-social svg { width: 14px; height: 14px; }

/* ── Columns ── */
.pgc-footer-col h2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #737d91;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a2540;
}

.pgc-footer-col a {
  display: flex;
  align-items: center;
  font-size: 13px;
  padding: 3px 0;
  min-height: 44px;
  color: #c9ced5;
}
.pgc-footer-col a:hover { color: #D4AF37; padding-left: 4px; }

/* ── CTA button ── */
.pgc-footer-audit-btn {
  display: block;
  margin-top: 4px;
  padding: 13px 20px;
  background: #D4AF37;
  color: #060f29 !important;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  transition: background 150ms ease;
}
.pgc-footer-audit-btn:hover { background: #b8941f; color: #fff !important; }

/* ── Bottom bar ── */
.pgc-footer-rule {
  height: 1px;
  background: #1a2540;
  margin: 40px 32px 0;
  max-width: calc(1280px - 0px);
  margin-left: auto;
  margin-right: auto;
}

.pgc-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #717c97;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .pgc-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px 0;
  }
  .pgc-footer-brand { grid-column: 1 / -1; }
  .pgc-footer-rule { margin-left: 24px; margin-right: 24px; }
  .pgc-footer-bottom { padding: 16px 24px 24px; }
}

@media (max-width: 560px) {
  .pgc-footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 0;
  }
  .pgc-footer-rule { margin-left: 20px; margin-right: 20px; }
  .pgc-footer-bottom { padding: 16px 20px 24px; }
}
