/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "Pacaembu";
  src: url("../fonts/Pacaembu/Pacaembu-Light.woff2") format("woff2"), url("../fonts/Pacaembu/Pacaembu-Light.woff") format("woff"), url("../fonts/Pacaembu/Pacaembu-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Pacaembu";
  src: url("../fonts/Pacaembu/Pacaembu-Regular.woff2") format("woff2"), url("../fonts/Pacaembu/Pacaembu-Regular.woff") format("woff"), url("../fonts/Pacaembu/Pacaembu-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBM Plex Mono/IBMPlexMono.woff2") format("woff2"), url("../fonts/IBM Plex Mono/IBMPlexMono.woff") format("woff"), url("../fonts/IBM Plex Mono/IBMPlexMono.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: #111226;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .container {
    width: min(100% - 10rem, 80rem);
  }
}

.section {
  padding-block: 7.5rem 7.5rem;
}

h1,
.h1 {
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 3rem + 0.0450704225 * (100vw - 23.4375rem), 6rem);
}

h2,
.h2 {
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(2.25rem, 2.25rem + 0.0225352113 * (100vw - 23.4375rem), 3.75rem);
}

h3,
.h3 {
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(1.75rem, 1.75rem + 0.0187793427 * (100vw - 23.4375rem), 3rem);
}

p,
.text-body {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
}
@media (max-width: 1023px) {
  p,
  .text-body {
    font-size: 1rem;
  }
}

.text-accent {
  color: #01deab;
}

.site-header {
  position: relative;
  z-index: 100;
}

.site-header__bar {
  background: linear-gradient(128deg, #01deab 0%, #2448ff 100%);
  box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.4);
  position: relative;
}
.site-header__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 38, 0.1);
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
  padding-block: 0.5rem;
}

.site-header__brand {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.site-header__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.site-header__brand .custom-logo-link img,
.site-header__brand img.custom-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 16rem;
  object-fit: contain;
}

.site-header__title-link {
  text-decoration: none;
  color: #ffffff;
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
}

.site-header__end {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.site-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  color: #ffffff;
  position: relative;
  z-index: 320;
  transition: background 200ms ease;
}
.site-header__burger:hover, .site-header__burger:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}
.site-header__burger:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
@media (min-width: 1024px) {
  .site-header__burger {
    display: none;
  }
}

.site-header__burger-line {
  display: block;
  height: 2px;
  width: 1.125rem;
  margin-inline: auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}

body.site-header--nav-open .site-header__burger-line:nth-child(1) {
  transform: translateY(0.52rem) rotate(45deg);
}

body.site-header--nav-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

body.site-header--nav-open .site-header__burger-line:nth-child(3) {
  transform: translateY(-0.52rem) rotate(-45deg);
}

@media (min-width: 1024px) {
  .site-header__pill {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-shrink: 0;
    min-height: 2.5rem;
    padding-left: 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    max-width: none;
    width: auto;
    height: auto;
    box-shadow: none;
    overflow: visible;
  }
}
@media (max-width: 1023px) {
  .site-header__pill {
    position: fixed;
    inset: 0;
    z-index: 310;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 3rem;
    padding: 5rem 1.25rem;
    background: rgba(17, 18, 38, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
}

@media (max-width: 1023px) {
  body.site-header--nav-open .site-header__pill {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1023px) {
  body.site-header--nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .site-header__nav {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
  }
}

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .site-header__menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
  }
}
.site-header__menu a {
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
}
.site-header__menu a:hover, .site-header__menu a:focus-visible {
  color: #01deab;
}
.site-header__menu a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 2px;
}
.site-header__menu .current-menu-item > a {
  font-weight: 500;
  opacity: 1;
  color: #01deab;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8125rem;
  align-self: center;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 9999px;
  background: #111226;
  color: #ffffff;
  text-decoration: none;
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  white-space: nowrap;
  transition: transform 200ms ease, filter 200ms ease;
}
@media (min-width: 1024px) {
  .site-header__cta {
    align-self: center;
    flex-shrink: 0;
  }
}
.site-header__cta:hover, .site-header__cta:focus-visible {
  filter: brightness(1.06);
}
.site-header__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.site-header__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #2448ff;
  color: #ffffff;
}
.site-header__cta-icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

body.has-first-home-hero .site-header__bar,
body.has-first-page-hero .site-header__bar {
  background: transparent;
}

.site-footer {
  background: #111226;
  color: #ffffff;
  padding-block: 5rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.site-footer__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5rem;
}
@media (min-width: 1024px) {
  .site-footer__main {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 5rem;
  }
}

.site-footer__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
  max-width: 40rem;
}
@media (min-width: 1024px) {
  .site-footer__intro {
    flex-shrink: 0;
  }
}

.site-footer__headline {
  margin: 0;
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8125rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  white-space: nowrap;
  transition: background 200ms ease, transform 200ms ease;
}
.site-footer__cta:hover, .site-footer__cta:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.site-footer__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.site-footer__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.site-footer__cta-icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.site-footer__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.site-footer__col-label {
  margin: 0;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.site-footer__menu a {
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #ffffff;
  text-decoration: none;
  transition: color 200ms ease;
}
.site-footer__menu a:hover, .site-footer__menu a:focus-visible {
  color: #01deab;
}
.site-footer__menu a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 2px;
}

.site-footer__connect {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #ffffff;
}
.site-footer__connect a {
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.site-footer__connect a:hover, .site-footer__connect a:focus-visible {
  color: #01deab;
}
.site-footer__connect a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 2px;
}

.site-footer__connect-address {
  white-space: pre-line;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__logo-wrap {
  max-width: 14.0625rem;
}
.site-footer__logo-wrap .site-footer__logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 5rem;
  object-fit: contain;
}

.site-footer__legal {
  margin: 0;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__legal-sep {
  margin-inline: 0.15em;
}

.site-footer__legal-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 200ms ease;
}
.site-footer__legal-link:hover, .site-footer__legal-link:focus-visible {
  opacity: 0.9;
}

.gradient-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.gradient-canvas {
  --gradient-color-1: #01deab;
  --gradient-color-2: #4dcfff;
  --gradient-color-3: #2448ff;
  --gradient-color-4: #0a18cc;
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

.page-prose {
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
  padding-block: 7.5rem 7.5rem;
}
@media (min-width: 1024px) {
  .page-prose {
    width: min(100% - 10rem, 80rem);
  }
}

.page-prose__title {
  font-size: clamp(2rem, 2rem + 0.0150234742 * (100vw - 23.4375rem), 3rem);
  margin-block-end: 3rem;
}

.page-prose__content h2 {
  font-size: clamp(1.5rem, 1.5rem + 0.0075117371 * (100vw - 23.4375rem), 2rem);
  margin-block: 3rem 1.5rem;
}
.page-prose__content h3 {
  font-size: clamp(1.25rem, 1.25rem + 0.0056338028 * (100vw - 23.4375rem), 1.625rem);
  margin-block: 2rem 1rem;
}
.page-prose__content h4 {
  font-size: clamp(1.0625rem, 1.0625rem + 0.0028169014 * (100vw - 23.4375rem), 1.25rem);
  margin-block: 2rem 1rem;
}
.page-prose__content p,
.page-prose__content li {
  margin-block-end: 1rem;
}
.page-prose__content ul,
.page-prose__content ol {
  padding-inline-start: 2rem;
  margin-block-end: 2rem;
}
.page-prose__content a {
  color: #2448ff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.page-prose__content a:hover, .page-prose__content a:focus-visible {
  color: #01deab;
}

.error-404__lead {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-weight: 400;
  line-height: 1.6;
  margin: 2rem 0 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.error-404__actions {
  margin-top: 3rem;
}

.error-404__cta.site-header__cta {
  margin-top: 0;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 9999px;
  background: #2448ff;
  color: #ffffff;
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 200ms ease, filter 200ms ease;
}
.btn-pill:hover, .btn-pill:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-pill--dark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 9999px;
  background: #111226;
  color: #ffffff;
  font-family: "Pacaembu", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 200ms ease, filter 200ms ease;
}
.btn-pill--dark:hover, .btn-pill--dark:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero-gradient {
  background: linear-gradient(128deg, #01deab 0%, #2448ff 100%);
}

.contact-cf7__submit-wrap {
  gap: 0.5rem;
}

.wpcf7-spinner {
  display: none !important;
}

::selection {
  background: #01deab;
  color: #111226;
}
