@font-face {
  font-family: 'Bauhaus Desk Display';
  src: url('https://1951667.fs1.hubspotusercontent-eu1.net/hubfs/1951667/Assets%20-%20Surecloud%20-%202025/fonts/BauhausDeskDisplay-Medium.woff2') format('woff2'),
       url('https://1951667.fs1.hubspotusercontent-eu1.net/hubfs/1951667/Assets%20-%20Surecloud%20-%202025/fonts/BauhausDeskDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('https://fonts.gstatic.com/s/ibmplexsans/v23/zYXgKVElMYYaJe8bpLHnCwDKhdHeEA.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('https://fonts.gstatic.com/s/ibmplexsans/v23/zYX9KVElMYYaJe8bpLHnCwDKjSL9AIFscQ.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --accent: #004BFF;
  --accent-dark: #0e46af;
  --accent-bright: #00AEEF;
  --ink: #0e46af;
  --muted: #5A6478;
  --bg: #FFFFFF;
  --bg-alt: #F4F7FB;
  --radius: 14px;
  --font-sans: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Bauhaus Desk Display", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body > header.nav[data-app-shared-shell="header"],
body > footer[data-app-shared-shell="footer"] {
  --app-shell-accent: #004BFF;
  --app-shell-ink: #0e46af;
  --app-shell-muted: #5A6478;
  --app-shell-bg: #FFFFFF;
  --app-shell-font-sans: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* App-managed landing-page header and footer. These selectors are intentionally
   scoped so uploaded template styles cannot change the shared shell contract. */
body > header.nav[data-app-shared-shell="header"] {
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid color-mix(in srgb, var(--app-shell-ink) 12%, transparent);
  box-shadow: 0 8px 28px rgba(15, 28, 56, 0.08);
  backdrop-filter: blur(14px);
}

body > header.nav[data-app-shared-shell="header"] > .nav__inner {
  width: min(1160px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body > header.nav[data-app-shared-shell="header"] .nav__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--app-shell-ink);
  font-family: var(--app-shell-font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

body > header.nav[data-app-shared-shell="header"] .nav__logo-img {
  display: block;
  width: auto;
  height: 30px;
  max-width: 190px;
}

body > header.nav[data-app-shared-shell="header"] .nav__logo-text {
  display: inline-block;
}

body > header.nav[data-app-shared-shell="header"] .nav__logo-text[hidden] {
  display: none;
}

body > header.nav[data-app-shared-shell="header"] .nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 28px);
}

body > header.nav[data-app-shared-shell="header"] .nav__links a {
  color: var(--app-shell-ink);
  font-family: var(--app-shell-font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

body > header.nav[data-app-shared-shell="header"] .nav__links a:hover {
  color: var(--app-shell-accent);
  text-decoration: none;
}

body > header.nav[data-app-shared-shell="header"] .nav__links .nav__cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--app-shell-accent);
  color: #fff;
}

body > header.nav[data-app-shared-shell="header"] .nav__links .nav__cta:hover {
  color: #fff;
  opacity: 0.92;
}

body > footer[data-app-shared-shell="footer"] {
  width: 100%;
  margin: 0;
  padding: 32px 24px;
  background: var(--app-shell-bg);
  border-top: 1px solid color-mix(in srgb, var(--app-shell-ink) 12%, transparent);
  color: var(--app-shell-muted);
  font-family: var(--app-shell-font-sans);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

body > footer[data-app-shared-shell="footer"] small {
  font: inherit;
}

body > footer[data-app-shared-shell="footer"] a {
  color: var(--app-shell-muted);
  text-decoration: none;
}

body > footer[data-app-shared-shell="footer"] a:hover {
  color: var(--app-shell-accent);
  text-decoration: underline;
}

@media (max-width: 760px) {
  body > header.nav[data-app-shared-shell="header"] {
    padding-inline: 18px;
  }

  body > header.nav[data-app-shared-shell="header"] > .nav__inner {
    min-height: 64px;
  }

  body > header.nav[data-app-shared-shell="header"] .nav__links {
    gap: 10px;
  }

  body > header.nav[data-app-shared-shell="header"] .nav__links a:not(.nav__cta) {
    display: none;
  }

  body > header.nav[data-app-shared-shell="header"] .nav__links .nav__cta {
    padding: 10px 14px;
  }
}
