/* Shared styles across the public site */

/* The footer is intentionally defined once here so every public route uses
   the same treatment as the homepage. */
#footer {
  position: relative;
  padding-top: 104px;
  background: #0b0f14 !important;
  background-image: none !important;
  background-blend-mode: multiply;
}

#footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.02;
  pointer-events: none;
}

#footer .footer-top,
#footer .footer-bottom {
  position: relative;
  z-index: 1;
  background-image: none !important;
}

#footer .footer-top {
  padding-top: 0;
  padding-bottom: 64px;
  border: 0;
}

#footer .footer-top .row {
  row-gap: 28px;
}

#footer .footer-top .row > [class*='col-']:nth-child(n + 4) {
  display: none;
}

#footer .footer-links {
  padding-right: 24px;
}

#footer .footer-links ul li {
  margin-bottom: 8px;
}

#footer .footer-title h4,
#footer .footer-links strong,
#footer .footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

#footer .footer-links a:hover,
#footer .footer-links a:focus-visible {
  color: #64b6b8;
}

#footer .copyright,
#footer .credits,
#footer .footer-links p,
#footer .footer-links address {
  color: rgba(255, 255, 255, 0.5);
}

#footer .footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #090d12 !important;
}

#footer .footer-bottom .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#footer .footer-bottom .copyright,
#footer .footer-bottom .credits {
  color: rgba(255, 255, 255, 0.42);
}

#footer .social-links a {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

#footer .social-links a:hover,
#footer .social-links a:focus-visible {
  background: transparent !important;
  color: #64b6b8 !important;
}

.engagement-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  height: auto !important;
  padding: 12px 32px !important;
  border: 1px solid #3a8f95 !important;
  border-radius: 6px !important;
  background: #3a8f95 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    color 300ms ease,
    transform 300ms ease !important;
}

.engagement-cta:hover,
.engagement-cta:focus-visible {
  border-color: #3a8f95 !important;
  background: transparent !important;
  color: #64b6b8 !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
}

.engagement-cta:active {
  transform: translateY(0) !important;
}

.site-breadcrumbs {
  margin: 0;
  font-family: Inter, Satoshi, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.site-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  color: var(--site-text-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.site-breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 7px;
  color: var(--site-accent-bright);
  opacity: 0.6;
}

.site-breadcrumbs a,
.site-breadcrumbs span {
  color: inherit;
  text-decoration: none;
}

.site-breadcrumbs a {
  border-bottom: 1px solid transparent;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.site-breadcrumbs a:hover,
.site-breadcrumbs a:focus-visible {
  border-bottom-color: #64b6b8;
  color: #64b6b8;
  text-decoration: none;
}

.site-breadcrumbs a:focus-visible {
  outline: 2px solid #64b6b8;
  outline-offset: 4px;
}

.site-breadcrumbs li[aria-current='page'] {
  flex: 1 1 180px;
  color: var(--site-text-secondary);
}

.site-breadcrumbs li[aria-current='page'] span {
  overflow-wrap: anywhere;
}

.site-page-header {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--site-line);
  background: var(--site-bg);
}

.site-page-header-title {
  margin: 18px 0 0;
  color: var(--site-text);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.faq-founder-header .site-breadcrumbs,
.case-studies-header .site-breadcrumbs {
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  #footer {
    padding-top: 72px;
  }

  .site-page-header {
    padding: 34px 0 30px;
  }
}
