<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
  --black: rgba(25, 25, 25, 1);

  --dark-gray: rgba(90, 90, 90, 1);
  --gray: rgba(225, 225, 225, 1);
  --light-gray: rgba(245, 245, 245, 1);

  --dark-blue: rgba(10, 110, 180, 1);
  --blue: rgba(15, 145, 240, 1);
  --light-blue: rgba(110, 190, 245, 1);

  --dark-purple: rgba(140, 30, 160, 1);
  --purple: rgba(185, 40, 215, 1);
  --light-purple: rgba(215, 125, 230, 1);

  --green: rgba(20, 120, 45, 1);
  --light-green: rgba(160, 220, 180, 1);

  --yellow: rgba(240, 175, 15, 1);
  --light-yellow: rgba(250, 220, 160, 1);
}

/* FONTS */

@font-face {
  font-family: 'JakartaSans-Light';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-Light.ttf');
}

@font-face {
  font-family: 'JakartaSans-LightItalic';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-LightItalic.ttf');
}

@font-face {
  font-family: 'JakartaSans-Regular';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-Regular.ttf');
}

@font-face {
  font-family: 'JakartaSans-RegularItalic';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-Italic.ttf');
}

@font-face {
  font-family: 'JakartaSans-Medium';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-Medium.ttf');
}

@font-face {
  font-family: 'JakartaSans-MediumItalic';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-MediumItalic.ttf');
}

@font-face {
  font-family: 'JakartaSans-SemiBold';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-SemiBold.ttf');
}

@font-face {
  font-family: 'JakartaSans-SemiBoldItalic';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-SemiBoldItalic.ttf');
}

@font-face {
  font-family: 'JakartaSans-Bold';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-Bold.ttf');
}

@font-face {
  font-family: 'JakartaSans-BoldItalic';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-BoldItalic.ttf');
}

@font-face {
  font-family: 'JakartaSans-ExtraBold';
  src: url('/fonts/PlusJakartaSans/PlusJakartaSans-ExtraBold.ttf');
}

/* GLOBAL */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'JakartaSans-Medium';
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

@media screen and (max-width: 768px) {
  main {
    gap: 32px;
  }
}

main section:first-child {
  padding-top: 32px
}

main section:last-child {
  padding-bottom: 64px;
}

header {
  z-index: 5;
}

section, div {
  scroll-margin-top: 128px;
}

/* SIZING */

.max-md {
  max-width: 768px;
  margin: auto;
}

.max-lg {
  max-width: 992px;
  margin: auto;
}

.scale {
  transition: all .2s ease-in-out ;
}

.scale:hover {
  transform: scale(1.03);
}

/* CURSOR */

#pricingCheck:hover {
  cursor: pointer;
}

/* BACKGROUND */

.bg-white {
  background-color: white;
}

.bg-black {
  background-color: var(--black);
}

.bg-light-gray {
  background-color: var(--light-gray);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-purple {
  background-color: var(--purple);
}

/* BORDER */

.border {
  border: 1px solid var(--gray);
  border-radius: 4px;
}

/* TYPOGRAPHY */

.text-white {
  color: white;
}

.text-black {
  color: black;
}

.display-3 {
  font-family: 'JakartaSans-SemiBold';
}

.display-3 em {
  font-family: 'JakartaSans-SemiBoldItalic';
}

.display-5 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: 'JakartaSans-Medium';
}

.display-6 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: 'JakartaSans-SemiBold';
}

.text-semi {
  font-family: 'JakartaSans-SemiBold';
}

.text-bold {
  font-family: 'JakartaSans-SemiBold';
}

@media screen and (max-width: 768px) {
  .display-6 {
    font-size: 1.2rem;
  }
}

strong {
  font-family: 'JakartaSans-Bold';
}

.p-sm {
  font-size: .8rem;
}

/* LINKS */

a {
  text-decoration: none;
  transition: all .2s ease-in-out;
}

a.a-toc {
  color: var(--purple);
  font-family: 'JakartaSans-SemiBold';
}

a.a-toc:hover {
  color: var(--dark-purple);
}

a.a-td {
  color: var(--blue);
  font-family: 'JakartaSans-SemiBold';
}

a.a-td:hover {
  color: var(--dark-blue);
}

.card-link.card-link-td {
  color: var(--blue);
}

.card-link.card-link-toc {
  color: var(--purple);
}

.card-link.card-link-td:hover {
  color: var(--dark-blue);
}

.card-link.card-link-toc:hover {
  color: var(--dark-purple);
}

header a {
  font-family: 'JakartaSans-SemiBold';
}

footer a {
  color: var(--dark-gray)
}

footer a:hover {
  color: var(--black)
}

/* BUTTONS */

.btn {
  text-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: .8rem;
  }
}

.btn-primary {
  background-color: black;
  color: white;
  border: 1px solid black;
}

.btn-primary:hover {
  background-color: var(--dark-gray);
  border: 1px solid var(--dark-gray);
}

.btn-light {
  background-color: var(--light-gray);
  border: 1px solid var(--gray);
}

.btn-light:hover {
  border: 1px solid var(--gray);
  background-color: var(--gray);
}

.btn-primary.btn-primary-td {
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

.btn-primary.btn-primary-td:hover {
  background-color: var(--dark-blue);
}

.btn-primary.btn-primary-toc {
  background-color: var(--purple);
  border: 1px solid var(--purple);
}

.btn-primary.btn-primary-toc:hover {
  background-color: var(--dark-purple);
}

.btn-outline-primary.btn-outline-primary-td {
  border: 1px solid var(--blue)!important;
}

.btn-outline-primary.btn-outline-primary-td:hover {
  background-color: var(--blue);
  border: 1px solid var(--blue)!important;
}

.btn-outline-primary.btn-outline-primary-toc {
  border: 1px solid var(--purple)!important;
}

.btn-outline-primary.btn-outline-primary-toc:hover {
  border: 1px solid var(--purple)!important;
}

input[type="radio"]:checked + label {
  background-color: var(--blue)!important;
  border: 1px solid var(--blue);
}

.btn-logo {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-logo img {
  height: 16px;
}

.btn-logo-appsource:hover {
  background-color: var(--black);
  color: white!important;
}

/* HEADER */

nav {
  background-color: white;
}

.dropdown-menu {
  font-size: .9rem;
  width: 100%;
}

/* CONTAINER */

.container-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.container-hero.container-hero-lg {
  gap: 64px;
}

@media screen and (max-width: 768px) {
  .container-hero {
    text-align: start;
    gap: 16px;

  }
}

.container-break {
  text-align: center;
  position: relative;
  top: 64px;
}

.container-text {
  font-size: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

/* HERO */

.img-hero {
  position: relative;
  top: 64px;
}

/* CARD */

.card-header {
  background-color: var(--light-gray);
}

a.card-body:hover {
  background-color: var(--light-gray)
}

.list-group-item-action:hover {
  background-color: var(--light-gray)
}

.card-product a .card-header {
  color: var(--dark-gray);
}

.card-product:hover .card-header h2 {
  color: var(--black);
}

/* OTHER */

#trust-list {
  top: 128px;
  z-index: auto;
}

.hstack {
  flex-wrap: wrap;
}

/* ARCHITECTURE DIAGRAM */

.architecture {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.diagram {
  width: 100%;
  font-size: 0.8rem;
}

.web-browser {
  background-color: var(--blue);
  text-align: center;
  padding: 8px;
  margin-top: 4px;
}

.web-browser p {
  color: white;
}

.diagram-layout {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.diagram-main {
  width: 50%
}

.diagram-element {
  padding: 8px;
  background-color: var(--light-gray);
  color: var(--brightblue);
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
}

.diagram-element button {
  background-color: var(--light-gray);
  border: none;
  font-size: 0.8rem;
}
.diagram-arrows {
  display: flex;
  justify-content: space-around;
}

.diagram-arrow {
  height: 24px;
}

.diagram-icon {
  height: 24px;
  margin-bottom: 8px;
}

.diagram-side {
  background-color: #8dcffb;
  text-align: center;
  width: 25%;
  margin-bottom: 8px;
  display: flex;
  flex-direction:column;
  justify-content: center;
  padding: 8px;
}

.diagram-side p {
  color: var(--dark-blue);
}

.diagram-side img {
  height: 32px;
  margin-bottom: 16px;
}

#tocFrontDoorInfo, #tocFirewallInfo, #tocInfo, #tocGraphInfo,
#tdFrontDoorInfo, #tdFirewallInfo, #tdInfo, #tdGraphInfo {
  display:none;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--blue);
  text-align: center;
  color: black;
}

.diagram-more-info p, .diagram-more-info a   {
  font-size: 0.7rem;
}

.key {
  font-size: 1rem;
}

.key h2 {
  font-size: 2.5rem;
}

@media only screen and (min-width: 860px) {
  .diagram {
    font-size: 1rem;
  }
  .diagram-more-info p, .diagram-more-info a   {
    font-size: 0.8rem;
  }
  .diagram-element {
    padding: 16px;
  }
  .key {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 960px) {
  .architecture {
    flex-direction: row-reverse;
    gap: 64px;
  }
  .diagram {
    width: 50%;
  }
  .key {
    width: 50%
  }
  .diagram-side img {
    height: 64px;
    margin-bottom: 16px;
  }
  .diagram-icon {
    height: 32px;
  }
}





/* === HERO === */

/* .hero {
  max-width: 1000px;
  display: flex;
  margin: auto;
  flex-direction: column;
  text-align: center;
  gap: 64px;
}

.hero-sub {
  font-size: 1.5rem;
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media screen and (max-width: 860px) {
  .hero {
    gap: 32px;
  }
  .hero-title {
    font-size: 2.4rem
  }
  .hero-sub {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 560px) {
  .hero-title {
    font-size: 1.9rem
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-links {
    flex-direction: column;
    gap: 8px;
  }
  .hero-links a {
    width: 75%;
    margin: auto;
    padding: 6px;
    font-size: 1rem;
  }
} */

/* === HERO MENU === */

/* .hero-menu, .hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-menu .side-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-menu .side-card {
  padding: 16px 32px;
}

.hero-menu .card-title, .hero-menu .card-title .side-card-title, .hero-features .card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hero-menu .card-content, .hero-features .card-content {
  font-size: 1rem;
}

.hero-menu .card-item .card-icon-lg, .hero-features .card-item .card-icon-lg {
  height: 32px;
  margin-bottom: 12px;
}

.hero-menu .card-item .card-icon-md, .hero-features .card-item .card-icon-md  {
  height: 32px;
}

@media screen and (min-width: 860px) {
  .hero-menu {
    flex-direction: row;
  }
  .side-menu {
    min-width: 30%;
  }
  .hero-menu .card-title {
    font-size: 2rem;
  }
  .hero-menu .side-card-title {
    font-size: 1.4rem;
  }
  .hero-menu .card-item .card-icon-md, .hero-features .card-item .card-icon-md {
    height: 48px;
  }
  .hero-menu .card-item .card-icon-lg, .hero-features .card-item .card-icon-lg {
    height: 64px;
    margin-bottom: 32px;
  }
  .hero-menu .card-content {
    font-size: 1.3rem;
  }
  .hero-menu .side-card .card-content {
    font-size: 1rem;
  }  
} */

/* === HERO FEATURES === */

/* .features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list:last-of-type {
  margin-top: 16px;
}

@media screen and (min-width: 860px) {
  .features-list {
    flex-direction: row;
  }

  .features-list .card-title {
    font-size: 1.4rem;
  }
} */

/* === TABLE === */

/* .feature-comparison .hero {
  margin-bottom: 48px;
}

table {
  width: 100%;
  margin: auto;
}

th {
  font-size: 1rem;
}

.th-center {
  text-align: center;
  padding: 16px;
} 

tr {
  border-bottom: solid 1px var(--darkgray);
}

th {
  padding: 8px 0;
}

th img {
  height: 28px;
}

td {
  padding: 8px;
  text-align: center;
}

td img {
  height: 16px;
}

@media screen and (min-width: 560px) {
  th, td {
    padding: 16px;
  }
  td img {
    height: 24px;
  }
}

@media screen and (min-width: 860px) {
  table {
    width: 75%;
  }
  th {
    font-size: 1.2rem;
  }
} */

/* === DOCUMENTS TABLE === */

/* .documents .document-download {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 1.2rem;
  padding: 16px 0;
}

.documents .document-date {
  text-align: right;
}

@media screen and (max-width: 560px) {
  .documents .document-download {
    font-size: 1rem;
    gap: 16px;
  }
  .download-icon {
    height: 16px;
  }
  .documents .document-date {
    font-size: 0.8rem;
    padding: 16px 0;
  }
}

@media screen and (max-width: 860px) {
  .view-document {
    padding: 2px 8px;
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 860px) {
  .documents .document-download {
    font-size: 1.5rem;
  }

  .documents table {
    width: 100%;
  }
  .view-document {
    margin: 0 72px;
  }
} */

/* === DROPDOWN LIST === */

/* .drop-down-list .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
}

.drop-down-list .answer.open {
  max-height: 1000px;
  padding: 32px 16px;
}

.drop-down-list li {
  border-bottom: solid 1px var(--darkgray);
}

.drop-down-list .arrow {
  height: 20px;
}

.drop-down-list .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
  cursor: pointer;
  gap: 32px;
}

.drop-down-list h5 {
  font-size: 1.2rem;
}

@media screen and (min-width: 860px) {
  .drop-down-list .arrow {
    height: 32px;
  }
  .drop-down-list h5 {
    font-size: 1.5rem;
  }
  .drop-down-list .answer {
    font-size: 1.3rem;
  }
} */

/* === RECOMMENDED GUIDES === */

/* .recommended-guides .hero-title {
  margin-bottom: 32px;
}

.recommended-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 12px;
}

.recommended-links img {
  height: 16px;
}

.recommended-guides .card-item {
  padding: 8px 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: unset;
  flex-basis: unset;
}

@media only screen and (min-width: 860px) {
  .recommended-guides .hero-title  {
      text-align: center;
      margin-bottom: 48px;
  }
  .recommended-links img {
      height: 24px;
  }
  .recommended-links {
      justify-content: center;
      gap: 16px;
  }
  .recommended-guides .card-item {
    font-size: 1.2rem;
  }
} */

/* === TEXT BLOCK === */

/* .text-block {
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
}

.text-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
  width: 100%
}

.text-block h2 {
  margin-bottom: 16px;
  font-size: 1.9rem;
}

@media only screen and (min-width: 860px) {
  .text-block {
    flex-direction: row;
  }
  .text-item {
    width: 50%;
    font-size: 1.2rem;
  }
  .text-block h2 {
    font-size: 2.5rem;
  }
} */

/* === VIDEO === */

/* .video {
  max-width: 900px;
  margin: auto;
} */

/* === 404 LINKS === */

/* .suggested-links {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  font-size: 1.4rem;
  text-align: left;
}

@media only screen and (max-width: 860px) {
  .suggested-links {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    font-size: 1.2rem;
  }
} */

/* === PRICING === */

/* .pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pricing .card-item {
  align-items: space-between;
  text-align: center;
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: space-between;
}

.pricing.signup .card-item {
  gap: 32px;
}

.pricing.signup .card-item h3 {
  font-size: 2rem;
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.price-info h3 {
  font-size: 3rem;
}

.price-info p {
  font-size: 1.2rem;
}

.price-links {
  display:flex;
  flex-direction: column;
  gap: 16px;
}

.price-links a {
  font-size: 1.2rem;
}

.free-trial a  {
  margin-top: 8px;
  margin-bottom: 16px;
}

.bespoke .card-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.bespoke .card-item h3{
  margin-bottom: 16px;
}

.pricing-icon {
  height: 128px;
  width: 128px;
}

.signup-icon {
  height: 64px;
  width: 64px;
}

.bespoke-info {
  display: flex;
  gap: 64px;
  flex-direction: row;
}

@media only screen and (max-width: 960px) {
  .pricing {
    flex-direction: column;
  }
  .pricing .btn-toc-one, .pricing .btn-two {
    padding: 4px 8px;
    font-size: 0.9rem;
  }
  .price-info {
    margin-bottom: 16px;
  }
  .bespoke .card-item {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .pricing .card-item {
    gap: 16px;
  }
  .price-info {
    gap: 16px;
  }
  .pricing-icon {
    height: 64px;
    width: 64px;
  }
  .bespoke-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
} */

/* === BUYERS GUIDE SIGN UP === */
  

/* .buyers-guide {
  background-color: white;
  box-shadow: 0 2px 6px 0 var(--darkgray);
  border: solid 1px var(--darkgray);
  border-radius: 4px;
  padding: 32px;
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-top: 16px;
}

.checkbox-text {
  font-size: 0.8rem;
  font-weight: normal;
} */</pre></body></html>