/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: GothamLight;
  src: url("/styles/webfonts/GothamSSm-Light_Web.woff2") format("woff2"), url("/styles/webfonts/GothamSSm-Light_Web.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: GothamBook;
  src: url("/styles/webfonts/GothamSSm-Book_Web.woff2") format("woff2"), url("/styles/webfonts/GothamSSm-Book_Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: SSPLight;
  font-style: normal;
  font-weight: 300;
  src: url("/styles/webfonts/source-sans-pro-v13-latin-300.woff2") format("woff2"), url("/styles/webfonts/source-sans-pro-v13-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: SSPSemibold;
  font-style: normal;
  font-weight: 600;
  src: url("/styles/webfonts/source-sans-pro-v13-latin-600.woff2") format("woff2"), url("/styles/webfonts/source-sans-pro-v13-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  background: #F5F0EE;
  font-size: 21px;
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
}

h2 {
  font-family: GothamBook, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 47px;
  font-weight: normal;
  margin-bottom: 3.8rem;
}
h2:after {
  content: "";
  display: block;
  position: relative;
  background: #E83F4E;
  width: 70px;
  height: 5px;
  top: 25px;
}

ol {
  padding: 0;
}

p + p {
  margin-top: 28px;
}

a:not([class]) {
  color: #C51D3A;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #E83F4E;
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: #FFF;
  color: #1F2C33;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transform: translateY(-220%);
  transition: transform 120ms ease-in-out;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.floating-contact-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px 0 16px;
  color: #FFF;
  background: #E83F4E;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(31, 44, 51, 0.22);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.floating-contact-button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-contact-button:hover, .floating-contact-button:focus-visible {
  background: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  box-shadow: 0 18px 42px rgba(31, 44, 51, 0.28);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .floating-contact-button {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
    border-radius: 50%;
  }
  .floating-contact-button svg {
    width: 17px;
    height: 17px;
  }
  .floating-contact-button span {
    display: none;
  }
}
@media print {
  .floating-contact-button {
    display: none;
  }
}

img {
  max-width: 100%;
}

header,
section,
footer {
  clear: both;
}
header > div,
section > div,
footer > div {
  margin: 0 auto;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  header > div,
  section > div,
  footer > div {
    padding: 40px 20px;
  }
}
header > div,
section > div,
footer > div {
  max-width: 1060px;
}

header#introduction > div {
  padding: 115px 60px;
  position: relative;
}
@media (max-width: 768px) {
  header#introduction > div {
    padding: 60px 20px 80px;
  }
}
header#introduction h1 {
  padding: 110px 0;
  font-family: GothamLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  line-height: 1.422222222;
}
@media (max-width: 768px) {
  header#introduction h1 {
    padding: 60px 0 0;
    font-size: 20px;
  }
}
header#introduction .top-nav {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 300;
  min-height: 44px;
}
@media (max-width: 767px) {
  header#introduction .top-nav {
    right: 20px;
  }
}
header#introduction .top-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 0;
  right: 0;
  min-height: 44px;
  padding: 0 14px;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}
@media (max-width: 767px) {
  header#introduction .top-nav-toggle {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
}
header#introduction .top-nav.is-compact .top-nav-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}
header#introduction .top-nav.is-compact {
  right: 20px;
}
header#introduction .top-nav-toggle-bars,
header#introduction .top-nav-toggle-bars:before,
header#introduction .top-nav-toggle-bars:after {
  display: block;
  width: 18px;
  height: 2px;
  background-color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  border-radius: 2px;
}
header#introduction .top-nav-toggle-bars {
  position: relative;
}
header#introduction .top-nav-toggle-bars:before, header#introduction .top-nav-toggle-bars:after {
  content: "";
  position: absolute;
  left: 0;
}
header#introduction .top-nav-toggle-bars:before {
  top: -6px;
}
header#introduction .top-nav-toggle-bars:after {
  top: 6px;
}
header#introduction .top-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: visible;
}
@media (max-width: 767px) {
  header#introduction .top-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    min-width: 180px;
    border-radius: 8px;
  }
}
header#introduction .top-nav.is-compact .top-links {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  visibility: hidden;
}
@media (max-width: 767px) {
  header#introduction .top-nav.is-open .top-links {
    display: flex;
  }
}
header#introduction .top-nav.is-compact.is-open .top-links {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  flex-direction: column;
  align-items: stretch;
  min-width: 180px;
  border-radius: 8px;
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}
header#introduction .top-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: rgba(248, 248, 248, 0.9);
  color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}
@media (max-width: 767px) {
  header#introduction .top-link {
    justify-content: flex-start;
    padding: 10px 14px;
    border-radius: 6px;
    white-space: nowrap;
  }
}
header#introduction .top-link:hover {
  background-color: rgba(233, 233, 233, 0.95);
  color: rgb(181.4623255814, 21.7376744186, 35.9144186047);
}
header#introduction .top-link.is-active {
  background-color: rgba(232, 63, 78, 0.12);
  color: rgb(199.68, 23.92, 39.52);
}
header#introduction .top-nav.is-compact .top-link {
  justify-content: flex-start;
  padding: 10px 14px;
  border-radius: 6px;
  white-space: nowrap;
}
header#introduction .top-link[aria-disabled=true] {
  opacity: 0.7;
  cursor: default;
}

body#contact header#introduction > div {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  max-width: none;
  padding: 32px 60px 0;
  min-height: 0;
}
@media (max-width: 768px) {
  body#contact header#introduction > div {
    padding: 20px 20px 0;
  }
}
body#contact header#introduction .top-nav {
  position: fixed;
  top: 16px;
  right: 20px;
}
@media (max-width: 767px) {
  body#contact header#introduction .top-nav {
    right: 20px;
  }
}
body#contact header#introduction {
  background: transparent;
}

#process,
#clients {
  background: #F5F0EE;
}

@media (min-width: 768px) {
  section#process header,
  section#booking header,
  section#contact header {
    display: flex;
    align-items: flex-start;
  }
}
section#process header h2,
section#booking header h2,
section#contact header h2 {
  flex-basis: 39.5833332%;
  padding-right: 2.0833333%;
}
section#process header p,
section#booking header p,
section#contact header p {
  padding-top: 2rem;
  flex-basis: 56.2499998%;
  line-height: 1.19047619;
}

section#booking {
  background: #F5F0EE;
}
section#booking .booking-frame {
  margin-top: 56px;
  background: white;
}
section#booking iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: transparent;
}
section#booking .booking-link {
  margin-top: 24px;
}

@media (min-width: 768px) {
  #commitment > div,
  #values > div {
    display: flex;
    align-items: flex-start;
  }
}
#commitment > div img,
#values > div img {
  flex-basis: 33.3333332%;
  margin-right: 6.25%;
}
@media (max-width: 768px) {
  #commitment > div img,
  #values > div img {
    max-width: 50%;
    margin-bottom: 30px;
  }
}
#commitment > div .text,
#values > div .text {
  flex-basis: 56.2499998%;
}

.keyboard-parallax > div {
  margin: 0;
  padding: 0;
  max-width: none;
}
.keyboard-parallax .parallax-panel {
  --parallax-offset: 0px;
  height: clamp(286px, 44.2vw, 442px);
  border-radius: 0;
  background-position: center calc(42% + var(--parallax-offset));
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .keyboard-parallax .parallax-panel {
    --parallax-offset: 0px;
    height: 286px;
    background-position: center 48%;
    background-attachment: scroll;
  }
}

.keyboard-parallax--intro {
  background: linear-gradient(to bottom, #F9F7F7 0 50%, #F5F0EE 50% 100%);
}
.keyboard-parallax--intro .parallax-panel {
  background-image: linear-gradient(rgba(200, 200, 200, 0.18), rgba(200, 200, 200, 0.42)), url("/images/header-image.png");
}

.keyboard-parallax--footer {
  background: linear-gradient(to bottom, #F9F7F7 0 50%, #1F2C33 50% 100%);
}
.keyboard-parallax--footer .parallax-panel {
  background-image: linear-gradient(rgba(31, 44, 51, 0.18), rgba(31, 44, 51, 0.42)), url("/images/background-1.jpg");
}

@media (prefers-reduced-motion: reduce) {
  .keyboard-parallax .parallax-panel {
    --parallax-offset: 0px;
    background-attachment: scroll;
  }
}
#process ol {
  margin-top: 56px;
  list-style-type: none;
}
#process ol > * + * {
  margin-top: 40px;
}
#process ol li {
  box-sizing: border-box;
  clear: both;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 28, 0.08);
}
#process ol li:after {
  content: "";
  display: table;
  clear: both;
}
#process ol li video, #process ol li img {
  order: 1;
  width: 100%;
  aspect-ratio: 1080/567;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
#process ol li video {
  display: block;
}
#process ol li img {
  display: none;
}
@media (min-width: 768px) {
  #process ol li {
    display: grid;
    column-gap: 2.0833333%;
    align-items: center;
  }
  #process ol li video, #process ol li img {
    order: initial;
    width: 100%;
  }
  #process ol li .process-card {
    order: initial;
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
  }
  #process ol li:nth-child(odd) video, #process ol li:nth-child(odd) img {
    grid-column: 2;
    grid-row: 1;
  }
  #process ol li:nth-child(even) video, #process ol li:nth-child(even) img {
    grid-column: 1;
    grid-row: 1;
  }
  #process ol li:nth-child(even) .process-card {
    grid-column: 2;
    grid-row: 1;
  }
}
#process ol li .num {
  display: block;
  color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
}
#process ol li h3 {
  display: inline;
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 0.8rem;
}
#process ol li .process-card {
  box-sizing: border-box;
  order: 2;
  margin-top: 24px;
  padding: 24px 30px 28px;
}
#process ol li .process-card .num {
  display: inline-block;
  margin-right: 14px;
  font-size: 30px;
  vertical-align: baseline;
}
#process ol li .process-card h3 {
  display: inline-block;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 30px;
  line-height: 1.1;
  vertical-align: baseline;
}
#process ol li .process-card p {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0.2px;
}
@media (min-width: 768px) {
  #process ol li .process-card {
    order: initial;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  #commitment > div {
    align-items: center;
  }
}
#clients > div h2 {
  padding-bottom: 36px;
}
#clients > div .client-group {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  #clients > div .client-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#clients > div .client-card {
  position: relative;
  overflow: hidden;
  padding: 34px 28px;
  background: #FFF;
  border: 1px solid rgba(31, 44, 51, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 28, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#clients > div .client-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #E83F4E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#clients > div .client-card:hover {
  box-shadow: 0 10px 28px rgba(17, 24, 28, 0.09);
  transform: translateY(-3px);
}
#clients > div .client-card:hover:before {
  transform: scaleX(1);
}
#clients > div .client-card .client-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  margin-bottom: 16px;
}
#clients > div .client-card h3 {
  margin-bottom: 0;
  color: #E83F4E;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
}
#clients > div .client-card .client-logo {
  display: block;
  flex: 0 0 auto;
  max-width: 145px;
  max-height: 46px;
  object-fit: contain;
  object-position: right center;
}
#clients > div .client-card .client-logo--novo {
  max-width: 62px;
  max-height: 48px;
}
#clients > div .client-card .client-logo--bright {
  max-width: 58px;
  max-height: 58px;
}
#clients > div .client-card p {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.2px;
}
#clients > div .client-card p + p {
  margin-top: 18px;
}
@media (max-width: 768px) {
  #clients > div .client-card .client-card__header {
    align-items: flex-start;
    gap: 16px;
    min-height: 48px;
  }
  #clients > div .client-card h3 {
    font-size: 25px;
  }
  #clients > div .client-card .client-logo {
    max-width: 120px;
    max-height: 40px;
  }
  #clients > div .client-card .client-logo--novo {
    max-width: 54px;
    max-height: 42px;
  }
  #clients > div .client-card .client-logo--bright {
    max-width: 48px;
    max-height: 48px;
  }
}

section#contact form {
  position: relative;
  margin: 100px 0;
  font-size: 0;
}
section#contact form label {
  display: inline-block;
  width: 0;
}
section#contact form input,
section#contact form textarea {
  opacity: 1;
  transition: opacity 200ms ease-out;
  padding: 17px;
  border: none;
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
}
section#contact form input {
  margin-left: 2.0833333%;
  width: calc(31.2499999% - 1px);
}
section#contact form input[type=text]:first-of-type {
  margin-left: 0;
}
section#contact form textarea {
  margin: 2.0833333% 0;
  width: 97.9166663%;
  resize: vertical;
  height: 240px;
  min-height: 240px;
}
section#contact form input[type=submit] {
  background: #E83F4E;
  color: #F9F7F7;
  margin-left: 66.6666664%;
  padding: 8px;
  font-size: 34px;
}
@media (max-width: 768px) {
  section#contact form input,
  section#contact form textarea {
    width: 100%;
    margin: 0 0 16px !important;
  }
}
section#contact form ::placeholder {
  color: #CCC4C1;
}
section#contact form .response {
  transition: opacity 200ms ease-in;
  opacity: 0;
  position: absolute;
  top: 40px;
  z-index: 1;
  display: none;
  width: 100%;
  text-align: center;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
}
section#contact form.success input,
section#contact form.success textarea, section#contact form.failure input,
section#contact form.failure textarea {
  opacity: 0;
}
section#contact form.success .response, section#contact form.failure .response {
  opacity: 1;
  display: block;
}

footer {
  background: #1F2C33;
}
@media (min-width: 768px) {
  footer > div {
    display: flex;
    align-items: flex-start;
  }
}
footer > div {
  color: #F9F7F7;
}
@media (max-width: 768px) {
  footer > div {
    padding-top: 100px;
  }
}
footer > div small,
footer > div address {
  display: block;
  margin-bottom: 32px;
  flex-basis: 33.3333332%;
  font-size: 17px;
  line-height: 1.19047619;
}
footer > div address {
  font-style: normal;
}
footer > div address span {
  display: block;
}
footer > div address :first-child {
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
footer > div a {
  color: #F7C3AB;
  text-decoration: none;
}

body#about {
  --ink: #17252a;
  --muted: #5b5854;
  --surface: #fbf8f3;
  --canvas: #f3ece4;
  --line: #ddd4c9;
  --accent: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  --accent-strong: rgb(181.4623255814, 21.7376744186, 35.9144186047);
  --chip: rgba(232, 63, 78, 0.14);
}

body#contact,
body#databricks {
  --ink: #1f2c33;
  --muted: #5e5752;
  --surface: #f9f7f7;
  --canvas: #f5f0ee;
  --line: #d9d2cb;
  --accent: #e83f4e;
  --accent-strong: #cf2d3d;
  --chip: #f7c3ab;
}

body#about,
body#contact,
body#databricks {
  background: var(--canvas);
  color: var(--ink);
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body#about *,
body#about *::before,
body#about *::after,
body#contact *,
body#contact *::before,
body#contact *::after,
body#databricks *,
body#databricks *::before,
body#databricks *::after {
  box-sizing: border-box;
}
body#about header,
body#about section,
body#contact header,
body#contact section,
body#databricks header,
body#databricks section {
  clear: none;
}
body#about header > div,
body#about section > div,
body#contact header > div,
body#contact section > div,
body#databricks header > div,
body#databricks section > div {
  margin: 0;
  max-width: none;
  padding: 0;
}
body#about p + p,
body#contact p + p,
body#databricks p + p {
  margin-top: 0;
}
body#about a:not([class]),
body#contact a:not([class]),
body#databricks a:not([class]) {
  color: #c51d3a;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}
body#about h1,
body#contact h1,
body#databricks h1 {
  font-family: GothamBook, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
body#about h2,
body#contact h2,
body#databricks h2 {
  font-family: GothamBook, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0;
}
body#about h2::after,
body#contact h2::after,
body#databricks h2::after {
  content: none;
  display: none;
}
body#about h3,
body#contact h3,
body#databricks h3 {
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}
body#about p,
body#contact p,
body#databricks p {
  color: var(--muted);
  font-size: 1.05rem;
}
body#about .container,
body#contact .container,
body#databricks .container {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 60px;
}
body#about section,
body#contact section,
body#databricks section {
  padding: 88px 0;
}
body#about .nav-inner,
body#contact .nav-inner,
body#databricks .nav-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}
body#about .nav-logo,
body#contact .nav-logo,
body#databricks .nav-logo {
  align-items: center;
  display: inline-flex;
  transform: translateY(8px);
  text-decoration: none;
}
body#about .nav-logo-image,
body#contact .nav-logo-image,
body#databricks .nav-logo-image {
  display: block;
  height: 52px;
  width: auto;
}
body#about .top-nav,
body#contact .top-nav,
body#databricks .top-nav {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 300;
  min-height: 44px;
}
body#about .top-nav-toggle,
body#contact .top-nav-toggle,
body#databricks .top-nav-toggle {
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: var(--accent);
  cursor: pointer;
  display: inline-flex;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  gap: 6px;
  min-height: 44px;
  opacity: 0;
  padding: 0 14px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-6px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}
body#about .top-nav.is-compact .top-nav-toggle,
body#contact .top-nav.is-compact .top-nav-toggle,
body#databricks .top-nav.is-compact .top-nav-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}
body#about .top-nav.is-compact,
body#contact .top-nav.is-compact,
body#databricks .top-nav.is-compact {
  right: 20px;
}
body#about .top-nav-toggle-bars,
body#about .top-nav-toggle-bars::before,
body#about .top-nav-toggle-bars::after,
body#contact .top-nav-toggle-bars,
body#contact .top-nav-toggle-bars::before,
body#contact .top-nav-toggle-bars::after,
body#databricks .top-nav-toggle-bars,
body#databricks .top-nav-toggle-bars::before,
body#databricks .top-nav-toggle-bars::after {
  background-color: var(--accent);
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 18px;
}
body#about .top-nav-toggle-bars,
body#contact .top-nav-toggle-bars,
body#databricks .top-nav-toggle-bars {
  position: relative;
}
body#about .top-nav-toggle-bars::before,
body#about .top-nav-toggle-bars::after,
body#contact .top-nav-toggle-bars::before,
body#contact .top-nav-toggle-bars::after,
body#databricks .top-nav-toggle-bars::before,
body#databricks .top-nav-toggle-bars::after {
  content: "";
  left: 0;
  position: absolute;
}
body#about .top-nav-toggle-bars::before,
body#contact .top-nav-toggle-bars::before,
body#databricks .top-nav-toggle-bars::before {
  top: -6px;
}
body#about .top-nav-toggle-bars::after,
body#contact .top-nav-toggle-bars::after,
body#databricks .top-nav-toggle-bars::after {
  top: 6px;
}
body#about .top-links,
body#contact .top-links,
body#databricks .top-links {
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  gap: 6px;
  opacity: 1;
  padding: 8px;
  transform: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: visible;
}
body#about .top-nav.is-compact .top-links,
body#contact .top-nav.is-compact .top-links,
body#databricks .top-nav.is-compact .top-links {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  visibility: hidden;
}
body#about .top-nav.is-compact.is-open .top-links,
body#contact .top-nav.is-compact.is-open .top-links,
body#databricks .top-nav.is-compact.is-open .top-links {
  align-items: stretch;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: none;
  visibility: visible;
}
body#about .top-link,
body#contact .top-link,
body#databricks .top-link {
  align-items: center;
  background-color: rgba(248, 248, 248, 0.9);
  border-radius: 999px;
  color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  display: inline-flex;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}
body#about .top-nav.is-compact .top-link,
body#contact .top-nav.is-compact .top-link,
body#databricks .top-nav.is-compact .top-link {
  border-radius: 6px;
  justify-content: flex-start;
  padding: 10px 14px;
  white-space: nowrap;
}
body#about .top-link:hover,
body#contact .top-link:hover,
body#databricks .top-link:hover {
  background-color: rgba(233, 233, 233, 0.95);
  color: rgb(181.4623255814, 21.7376744186, 35.9144186047);
}
body#about .top-link.is-active,
body#contact .top-link.is-active,
body#databricks .top-link.is-active {
  background-color: rgba(232, 63, 78, 0.12);
  color: rgb(199.68, 23.92, 39.52);
}
body#about .section-label,
body#contact .section-label,
body#databricks .section-label {
  color: var(--accent);
  display: inline-block;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
body#about .section-header,
body#contact .section-header,
body#databricks .section-header {
  margin-bottom: 60px;
  max-width: 720px;
}
body#about .section-header h2,
body#contact .section-header h2,
body#databricks .section-header h2 {
  margin-bottom: 16px;
}
body#about .capability-card,
body#contact .capability-card,
body#databricks .capability-card {
  background: var(--canvas);
  border: 1px solid rgba(31, 44, 51, 0.08);
  border-radius: 12px;
  padding: 34px 26px;
  transition: all 0.25s ease;
}
body#about .capability-card:hover,
body#contact .capability-card:hover,
body#databricks .capability-card:hover {
  box-shadow: 0 8px 26px rgba(31, 44, 51, 0.08);
  transform: translateY(-3px);
}
body#about .capability-icon,
body#contact .capability-icon,
body#databricks .capability-icon {
  align-items: center;
  background: var(--ink);
  border-radius: 10px;
  color: #fff;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}
body#about .capability-icon svg,
body#contact .capability-icon svg,
body#databricks .capability-icon svg {
  height: 24px;
  width: 24px;
}
body#about .capability-card h3,
body#contact .capability-card h3,
body#databricks .capability-card h3 {
  margin-bottom: 12px;
}
body#about .capability-card p,
body#contact .capability-card p,
body#databricks .capability-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}
body#about .platform-text h2,
body#contact .platform-text h2,
body#databricks .platform-text h2 {
  color: var(--ink);
  margin-bottom: 20px;
}
body#about .platform-text p,
body#contact .platform-text p,
body#databricks .platform-text p {
  color: var(--muted);
  margin-bottom: 32px;
}
body#about .platform-features,
body#contact .platform-features,
body#databricks .platform-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body#about .platform-feature,
body#contact .platform-feature,
body#databricks .platform-feature {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}
body#about .platform-feature-icon,
body#contact .platform-feature-icon,
body#databricks .platform-feature-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  flex-shrink: 0;
  height: 28px;
  justify-content: center;
  margin-top: 2px;
  width: 28px;
}
body#about .platform-feature-icon svg,
body#contact .platform-feature-icon svg,
body#databricks .platform-feature-icon svg {
  color: #fff;
  height: 16px;
  width: 16px;
}
body#about .platform-feature-text h3,
body#contact .platform-feature-text h3,
body#databricks .platform-feature-text h3 {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}
body#about .platform-feature-text p,
body#contact .platform-feature-text p,
body#databricks .platform-feature-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
body#about .platform-stack,
body#contact .platform-stack,
body#databricks .platform-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body#about .stack-top,
body#contact .stack-top,
body#databricks .stack-top {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}
body#about .stack-layer,
body#contact .stack-layer,
body#databricks .stack-layer {
  background: var(--surface);
  border: 1px solid rgba(31, 44, 51, 0.12);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  transition: all 0.2s ease;
}
body#about .stack-top .stack-layer,
body#contact .stack-top .stack-layer,
body#databricks .stack-top .stack-layer {
  padding: 16px 12px;
}
body#about .stack-layer-title,
body#contact .stack-layer-title,
body#databricks .stack-layer-title {
  color: var(--ink);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
body#about .stack-layer-desc,
body#contact .stack-layer-desc,
body#databricks .stack-layer-desc {
  color: var(--muted);
  font-size: 0.85rem;
}
body#about .stack-top .stack-layer-title,
body#contact .stack-top .stack-layer-title,
body#databricks .stack-top .stack-layer-title {
  font-size: 0.85rem;
}
body#about .stack-top .stack-layer-desc,
body#contact .stack-top .stack-layer-desc,
body#databricks .stack-top .stack-layer-desc {
  font-size: 0.75rem;
}
body#about .stack-layer-highlight,
body#contact .stack-layer-highlight,
body#databricks .stack-layer-highlight {
  background: rgba(232, 63, 78, 0.08);
  border-color: rgba(232, 63, 78, 0.25);
}
body#about .stack-layer-open,
body#contact .stack-layer-open,
body#databricks .stack-layer-open {
  background: transparent;
  border-color: rgba(31, 44, 51, 0.22);
  border-style: dashed;
}
body#about .offer-card,
body#contact .offer-card,
body#databricks .offer-card {
  background: var(--canvas);
  border: 1px solid rgba(31, 44, 51, 0.08);
  border-radius: 12px;
  overflow: hidden;
  padding: 38px 30px;
  position: relative;
  transition: all 0.3s;
}
body#about .offer-card::before,
body#contact .offer-card::before,
body#databricks .offer-card::before {
  background: var(--accent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
body#about .offer-card:hover::before,
body#contact .offer-card:hover::before,
body#databricks .offer-card:hover::before {
  transform: scaleX(1);
}
body#about .offer-card:hover,
body#contact .offer-card:hover,
body#databricks .offer-card:hover {
  box-shadow: 0 8px 28px rgba(31, 44, 51, 0.08);
  transform: translateY(-3px);
}
body#about .offer-number,
body#contact .offer-number,
body#databricks .offer-number {
  color: rgba(31, 44, 51, 0.08);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}
body#about .offer-card h3,
body#contact .offer-card h3,
body#databricks .offer-card h3 {
  margin-bottom: 12px;
}
body#about .offer-card p,
body#contact .offer-card p,
body#databricks .offer-card p {
  font-size: 0.95rem;
}
body#about .partnership-banner,
body#contact .partnership-banner,
body#databricks .partnership-banner {
  background: var(--surface);
  border-bottom: 1px solid rgba(31, 44, 51, 0.08);
  border-top: 1px solid rgba(31, 44, 51, 0.08);
  padding: 34px 0;
}
body#about .partnership-inner,
body#contact .partnership-inner,
body#databricks .partnership-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
body#about .partnership-text,
body#contact .partnership-text,
body#databricks .partnership-text {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}
body#about .partnership-logos,
body#contact .partnership-logos,
body#databricks .partnership-logos {
  align-items: center;
  display: flex;
  gap: 30px;
}
body#about .db-logo-white,
body#contact .db-logo-white,
body#databricks .db-logo-white {
  display: block;
  height: 28px;
  opacity: 1;
  width: auto;
}
body#about .partner-divider,
body#contact .partner-divider,
body#databricks .partner-divider {
  background: rgba(31, 44, 51, 0.2);
  height: 30px;
  width: 1px;
}
body#about .partner-label,
body#contact .partner-label,
body#databricks .partner-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
body#about .capabilities-grid,
body#contact .capabilities-grid,
body#databricks .capabilities-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
body#about .platform-layout,
body#contact .platform-layout,
body#databricks .platform-layout {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: 1fr 1fr;
}
body#about .offerings-grid,
body#contact .offerings-grid,
body#databricks .offerings-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
body#about .hero,
body#contact .hero,
body#databricks .hero {
  background: var(--canvas);
  overflow: hidden;
  padding: 160px 0 118px;
  position: relative;
}
body#about .hero::after,
body#contact .hero::after,
body#databricks .hero::after {
  background: radial-gradient(circle, rgba(232, 63, 78, 0.09) 0%, transparent 70%);
  content: "";
  height: 600px;
  pointer-events: none;
  position: absolute;
  right: -200px;
  top: -110px;
  width: 600px;
}
body#about .hero-content,
body#contact .hero-content,
body#databricks .hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
body#about .hero-badge,
body#contact .hero-badge,
body#databricks .hero-badge {
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(31, 44, 51, 0.09);
  border-radius: 100px;
  color: var(--muted);
  display: inline-flex;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
}
body#about .hero-badge .dot,
body#contact .hero-badge .dot,
body#databricks .hero-badge .dot {
  background: var(--chip);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
body#about .hero h1,
body#contact .hero h1,
body#databricks .hero h1 {
  color: var(--ink);
  margin-bottom: 24px;
}
body#about .hero h1 span,
body#contact .hero h1 span,
body#databricks .hero h1 span {
  color: var(--accent);
}
body#about .hero p,
body#contact .hero p,
body#databricks .hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 620px;
}
body#about .hero-actions,
body#contact .hero-actions,
body#databricks .hero-actions {
  display: flex;
}
body#about .btn-secondary,
body#contact .btn-secondary,
body#databricks .btn-secondary {
  align-items: center;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: var(--surface);
  display: inline-flex;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  justify-content: center;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.2s;
}
body#about footer,
body#contact footer,
body#databricks footer {
  background: #1f2c33;
}
body#about footer > div,
body#contact footer > div,
body#databricks footer > div {
  color: #f9f7f7;
}
body#about footer > div small,
body#about footer > div address,
body#about footer > div address span,
body#contact footer > div small,
body#contact footer > div address,
body#contact footer > div address span,
body#databricks footer > div small,
body#databricks footer > div address,
body#databricks footer > div address span {
  color: #f9f7f7;
}
body#about footer > div a,
body#contact footer > div a,
body#databricks footer > div a {
  color: #f7c3ab;
  text-decoration: none;
}
body#about .platform,
body#contact .platform,
body#databricks .platform {
  background: var(--canvas);
}

body#about #about-nav {
  background: transparent;
  border: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 120;
}

body#contact #db-nav,
body#databricks #db-nav {
  background: transparent;
  border: 0;
  backdrop-filter: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 120;
}

body#about {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body#about > footer {
  margin-top: auto;
  width: 100%;
}
body#about .capabilities-grid {
  grid-template-columns: repeat(2, 1fr);
}
body#about .capability-icon {
  background: rgba(43, 111, 106, 0.12);
  color: var(--accent-strong);
}
body#about .stack-layer-highlight {
  background: rgba(43, 111, 106, 0.08);
  border-color: rgba(43, 111, 106, 0.22);
}
body#about .offer-card::before {
  background: linear-gradient(90deg, var(--accent), #d8b08b);
}
body#about .hero::after {
  background: radial-gradient(circle, rgba(43, 111, 106, 0.14) 0%, transparent 68%);
}

body#contact section#booking {
  background: transparent;
}
body#contact section#booking .booking-frame {
  isolation: isolate;
}
body#contact section#booking header {
  background: transparent;
}
body#contact section#booking iframe {
  background: transparent;
  mix-blend-mode: multiply;
}
body#contact .top-link[aria-disabled=true] {
  cursor: default;
  opacity: 0.7;
}

body#contact .capabilities {
  background: var(--surface);
}

body#contact .offerings {
  background: var(--surface);
}

body#databricks .capabilities {
  background: var(--canvas);
}
body#databricks .offerings {
  background: var(--canvas);
}
body#databricks .hero-badge {
  border-radius: 24px;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 12px 18px;
}
body#databricks .top-link[aria-disabled=true] {
  cursor: default;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  body#about .platform-layout,
  body#contact .platform-layout,
  body#databricks .platform-layout {
    gap: 48px;
    grid-template-columns: 1fr;
  }
  body#about .offerings-grid,
  body#contact .offerings-grid,
  body#databricks .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body#about .capabilities-grid {
    grid-template-columns: 1fr;
  }
  body#contact .capabilities-grid,
  body#databricks .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  body#about .container,
  body#contact .container,
  body#databricks .container {
    padding: 0 20px;
  }
  body#about h1,
  body#contact h1,
  body#databricks h1 {
    font-size: 2.2rem;
  }
  body#about h2,
  body#contact h2,
  body#databricks h2 {
    font-size: 1.8rem;
  }
  body#about section,
  body#contact section,
  body#databricks section {
    padding: 72px 0;
  }
  body#about .nav-inner,
  body#contact .nav-inner,
  body#databricks .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 14px;
    padding-top: 12px;
  }
  body#about .top-nav,
  body#contact .top-nav,
  body#databricks .top-nav {
    right: 20px;
  }
  body#about .top-nav-toggle,
  body#contact .top-nav-toggle,
  body#databricks .top-nav-toggle {
    display: inline-flex;
    opacity: 1;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }
  body#about .top-links,
  body#contact .top-links,
  body#databricks .top-links {
    align-items: stretch;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 180px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
  }
  body#about .top-nav.is-open .top-links,
  body#contact .top-nav.is-open .top-links,
  body#databricks .top-nav.is-open .top-links {
    display: flex;
  }
  body#about .top-link,
  body#contact .top-link,
  body#databricks .top-link {
    border-radius: 6px;
    justify-content: flex-start;
    padding: 10px 14px;
    white-space: nowrap;
  }
  body#about .capabilities-grid,
  body#about .offerings-grid,
  body#contact .capabilities-grid,
  body#contact .offerings-grid,
  body#databricks .capabilities-grid,
  body#databricks .offerings-grid {
    grid-template-columns: 1fr;
  }
  body#about .stack-top,
  body#contact .stack-top,
  body#databricks .stack-top {
    grid-template-columns: repeat(2, 1fr);
  }
  body#about .partnership-inner,
  body#contact .partnership-inner,
  body#databricks .partnership-inner {
    flex-direction: column;
    gap: 20px;
  }
  body#about .hero {
    padding: 172px 0 92px;
  }
  body#contact .hero,
  body#databricks .hero {
    padding: 164px 0 90px;
  }
  body#databricks .hero-badge {
    align-items: flex-start;
    border-radius: 20px;
    flex-direction: column;
  }
  body#databricks .hero-badge .partnership-logos {
    gap: 14px;
  }
  body#databricks .hero-badge .partner-divider {
    display: none;
  }
}