/* solventfutures — shared shell (Phase 1 build from canvas v23) */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fbfcfb; color: #10231d;
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif; }
a { color: #0d5c46; text-decoration: none; }
a:hover { color: #10231d; }
.page { max-width: 1280px; margin: 0 auto; background: #fbfcfb;
  display: flex; flex-direction: column; min-height: 100vh; }
img, svg { max-width: 100%; }

/* header / footer (shared) */
.sf-header { display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; padding: 22px clamp(16px, 5vw, 64px);
  border-bottom: 1px solid #dbe6e0; }
.sf-wordmark { display: flex; flex-direction: column; width: 152px; }
.sf-wordmark span { font-weight: 700; font-size: 22px; letter-spacing: -0.025em;
  line-height: 1; color: #10231d; }
.sf-nav { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 30px);
  flex-wrap: wrap; font-size: 15px; color: #40544c; }
.sf-cta { background: #0d5c46; color: #fbfcfb !important; padding: 10px 20px;
  border-radius: 6px; font-weight: 500; font-size: 15px; }
.sf-cta:hover { background: #10231d; }
.sf-footer { border-top: 1px solid #dbe6e0; margin-top: auto;
  padding: 26px clamp(16px, 5vw, 64px); display: flex; gap: 12px 24px;
  justify-content: space-between; align-items: center; flex-wrap: wrap; }
.sf-footer-tag { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #6b7d75; }
.sf-footer-links { display: flex; gap: 10px 24px; flex-wrap: wrap;
  font-size: 13px; color: #6b7d75; }

/* responsive grid collapses (classes injected by the build) */
@media (max-width: 860px) {
  .g2 { grid-template-columns: 1fr !important; }
  .g3 { grid-template-columns: 1fr !important; }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
