/* Shared site footer for every Roam marketing page.
   Light (#F7F7F7) block per the Roam style guide — see web/STYLE_GUIDE.md. */
.site-footer {
  background: #F7F7F7;
  color: #222222;
  margin-top: 96px;
  padding: 64px 0 40px;
  border-top: 1px solid #DDDDDD;
  overflow: hidden;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.footer-eyebrow {
  display: block;
  font-size: 12px; line-height: 1.3; font-weight: 500;
  color: #717171;
}

/* CTA row */
.footer-cta {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding-bottom: 40px;
}
.footer-headline {
  margin-top: 12px;
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.15;
  font-size: clamp(26px, 4vw, 36px); color: #222222; max-width: 520px;
}
.footer-cta-btn {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(to right, #FF385C 0%, #E61E4D 50%, #D70466 100%); color: #fff;
  font-size: 16px; font-weight: 600;
  height: 48px; border-radius: 8px; padding: 0 24px; text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}
.footer-cta-btn:hover { background: linear-gradient(to right, #FF385C 0%, #E61E4D 50%, #D70466 100%); filter: brightness(0.94); }
.footer-cta-btn:active { transform: scale(0.98); }

.footer-divider { height: 1px; background: #DDDDDD; }

/* Columns */
.footer-grid {
  display: flex; flex-wrap: wrap; gap: 48px 64px;
  justify-content: space-between; align-items: flex-start; padding: 40px 0 24px;
}
.footer-about { max-width: 320px; }
.footer-logo { display: block; }
.footer-wordmark-sm { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: #FF385C; }
.footer-tagline { margin-top: 16px; font-size: 14px; line-height: 1.5; color: #6A6A6A; }

.footer-cols { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.footer-col { display: flex; flex-direction: column; gap: 12px; min-width: 120px; }
.footer-col .footer-eyebrow { margin-bottom: 4px; font-weight: 600; color: #222222; }
.footer-col a {
  font-size: 14px; color: #6A6A6A; text-decoration: none;
  transition: color 150ms ease; width: fit-content;
}
.footer-col a:hover { color: #222222; }

/* Coverage flags strip */
.footer-flags {
  width: 100%; clear: both; margin-top: 56px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 6px;
  font-size: 17px; line-height: 1;
}
.footer-flags span.note { font-size: 13px; font-weight: 500; color: #6A6A6A; margin-left: 8px; }

/* Oversized brand sign-off */
.footer-wordmark {
  margin-top: 24px;
  font-weight: 700; letter-spacing: -0.05em; line-height: 0.8;
  font-size: clamp(64px, 13vw, 200px);
  background: linear-gradient(to right, #FF385C 0%, #E61E4D 50%, #D70466 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.12;
  user-select: none; pointer-events: none;
}

/* Bottom bar */
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center;
  justify-content: space-between;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid #DDDDDD;
}
.footer-bottom span { font-size: 12px; color: #717171; }

.site-footer a:focus-visible, .footer-cta-btn:focus-visible {
  outline: 2px solid #222222; outline-offset: 3px; border-radius: 4px;
}

@media (max-width: 640px) {
  .site-footer { padding: 48px 0 32px; }
  .footer-wordmark { font-size: clamp(48px, 20vw, 120px); }
  .footer-inner { padding: 0 24px; }
  .footer-cta-btn { width: 100%; }
}
