@charset "UTF-8";
:root {
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --font-family-base: system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.5;
  --color-primary: #1457d9;
  --color-secondary: #0d2748;
  --color-accent: #36c5a3;
  --color-text: #172033;
  --color-background: #ffffff;
  --color-surface: #f4f7fb;
}

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

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border-radius: 16px;
}

body {
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.container {
  width: min(100% - 2 * var(--space-md), 75rem);
  margin-inline: auto;
}

.site-header {
  --site-header-background: #ffffff;
  --site-header-border: #e2e2e2;
  --site-header-text: #404040;
  --site-header-chevron: url("../images/chevron-down.svg");
  --site-header-offset: 0px;
  position: sticky;
  top: var(--site-header-offset);
  z-index: 100;
  border-bottom: 1px solid var(--site-header-border);
  background: var(--site-header-background);
}

@media (min-width: 601px) {
  .admin-bar .site-header {
    --site-header-offset: 32px;
  }
}
@media (min-width: 601px) and (max-width: 782px) {
  .admin-bar .site-header {
    --site-header-offset: 46px;
  }
}
.theme-dark .site-header {
  --site-header-background: #111318;
  --site-header-border: rgb(255 255 255 / 14%);
  --site-header-text: #f7f8fb;
  --site-header-chevron: url("../images/chevron-down-white.svg");
}

.site-header__inner {
  display: flex;
  width: min(1080px, 100% - 80px);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 20px 0;
}

.site-header__brand,
.site-header__logo {
  width: 106px;
  height: 40px;
}

.site-header__brand {
  flex: 0 0 auto;
}

.site-header__logo {
  display: block;
}
.site-header__logo--dark {
  display: none;
}

.theme-dark .site-header__logo--light {
  display: none;
}
.theme-dark .site-header__logo--dark {
  display: block;
}

.site-header__navigation {
  margin-left: auto;
}

.site-header__controls {
  display: flex;
  margin-left: 24px;
  align-items: center;
  gap: 4px;
}

.site-header__menu,
.site-header__menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__menu .menu-item {
  position: relative;
}

.site-header__menu a {
  display: block;
  color: var(--site-header-text);
  font-family: "Geist", var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible {
  color: #df1e26;
}

.site-header__menu .nuventures > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  color: #df1e26;
}

.site-header__menu .nuventures > a::after {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  content: "↗";
  transform: translateY(-1px);
}

.site-header__menu .nuventures > a:is(:hover, :focus-visible) {
  color: #df1e26;
  opacity: 0.78;
}

.site-header__menu > .menu-item--ai > a {
  min-height: 27px;
  min-width: 27px;
  text-align: center;
  padding: 4px 5px;
  border: 1px solid #df1e26;
  border-radius: 5px;
  color: #df1e26;
}

.site-header__menu > .menu-item-has-children > a {
  padding-right: 24px;
  background-image: var(--site-header-chevron);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.site-header__menu > .menu-item--ai.menu-item-has-children {
  display: flex;
  align-items: center;
}

.site-header__menu > .menu-item--ai.menu-item-has-children > a {
  padding-right: 5px;
  background-image: none;
}

.site-header__menu > .menu-item--ai.menu-item-has-children::after {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: var(--site-header-chevron) center/24px 24px no-repeat;
  content: "";
  pointer-events: none;
}

.site-header__menu > .menu-item--dropdown-label > a {
  cursor: default;
}

.site-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 210px;
  padding: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: var(--site-header-background);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.site-header__menu .sub-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 15px;
  content: "";
}

.site-header__menu .sub-menu a {
  padding: 10px 12px;
  white-space: normal;
}

.site-header__menu .menu-item-has-children:hover > .sub-menu,
.site-header__menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__menu > .menu-item--linkedin {
  margin-left: -4px;
}

.site-header__menu > .menu-item--linkedin > a {
  width: 20px;
  height: 20px;
  overflow: hidden;
  background: url("../images/linkedin.png") center/20px 20px no-repeat;
  font-size: 0;
  opacity: 0.8;
}

.site-header__menu > .menu-item--linkedin > a:hover,
.site-header__menu > .menu-item--linkedin > a:focus-visible {
  opacity: 1;
}

.theme-dark .site-header__menu > .menu-item--linkedin > a {
  filter: grayscale(1) brightness(0) invert(1);
}

.site-header__menu > .menu-item--contact > a {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 7px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  color: var(--site-header-text);
  font-size: 0;
  margin-right: -10px;
}

.site-header__menu > .menu-item--contact > a::before,
.site-header__contact-trigger::before {
  display: block;
  width: 22px;
  height: 22px;
  background: currentcolor;
  content: "";
  -webkit-mask: url("../images/email.svg") center/contain no-repeat;
          mask: url("../images/email.svg") center/contain no-repeat;
}

.site-header__menu > .menu-item--contact > a:is(:hover, :focus-visible) {
  background: rgba(127, 127, 127, 0.12);
  color: #df1e26;
}

.site-header__contact-trigger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 7px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--site-header-text);
  cursor: pointer;
}

.site-header__contact-trigger:is(:hover, :focus-visible) {
  background: rgba(127, 127, 127, 0.12);
  color: #df1e26;
}

.site-header__contact-trigger:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 2px;
}

.site-header__theme-toggle {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 7px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--site-header-text);
  cursor: pointer;
}

.site-header__theme-toggle:hover,
.site-header__theme-toggle:focus-visible {
  background: rgba(127, 127, 127, 0.12);
}

.site-header__theme-toggle:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 2px;
}

.site-header__theme-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header__theme-icon--moon {
  fill: currentcolor;
  stroke: none;
}

.site-header__theme-icon--sun {
  display: none;
}

.theme-dark .site-header__theme-icon--moon {
  display: none;
}

.theme-dark .site-header__theme-icon--sun {
  display: block;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--site-header-text);
  cursor: pointer;
}

.site-header__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentcolor;
  transition: transform 150ms ease, opacity 150ms ease;
}

.site-header__toggle .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

@media (max-width: 47.99rem) {
  .site-header__inner {
    width: 100%;
    min-height: 72px;
    padding: 16px 20px;
  }
  .site-header__controls {
    margin-left: auto;
    gap: 22px;
  }
  .site-header__toggle {
    display: block;
  }
  .site-header__contact-trigger {
    display: grid;
  }
  .site-header__toggle[aria-expanded=true] .site-header__toggle-line:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header__toggle[aria-expanded=true] .site-header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .site-header__toggle[aria-expanded=true] .site-header__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-header__navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 100% - var(--site-header-offset));
    overflow-y: auto;
    border-bottom: 1px solid var(--site-header-border);
    background: var(--site-header-background);
  }
  .site-header--menu-open .site-header__navigation {
    display: block;
  }
  .site-header__menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 20px 24px;
  }
  .site-header__menu a {
    padding: 12px 0;
    white-space: normal;
    font-size: 24px;
  }
  .site-header__menu > .menu-item {
    margin-block: 15px;
  }
  .site-header__menu > .menu-item--ai > a {
    display: inline-flex;
    min-height: 27px;
    padding: 4px 8px;
  }
  .site-header__menu > .menu-item-has-children > a {
    background-position: right center;
  }
  .site-header__menu .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-header__menu .menu-item--submenu-open > .sub-menu {
    display: block;
  }
  .site-header__menu .menu-item--submenu-open > a {
    background-image: var(--site-header-chevron);
    transform: none;
    padding-bottom: 20px;
  }
  .site-header__menu > .menu-item--ai.menu-item-has-children > .sub-menu {
    flex-basis: 100%;
  }
  .site-header__menu > .menu-item--ai.menu-item--submenu-open > a {
    padding-bottom: 4px;
    background-image: none;
  }
  .site-header__menu .sub-menu a {
    padding: 20px 0;
  }
  .site-header__menu > .menu-item--linkedin {
    margin: 12px 0 0;
  }
  .site-header__menu > .menu-item--contact {
    display: none;
  }
  .site-header__menu > .menu-item--linkedin > a {
    padding: 0;
  }
}
.site-footer {
  --footer-background: #f4f7fb;
  --footer-text: #172033;
  --footer-muted: #596579;
  --footer-border: #dce1e8;
  --footer-chip: #e7ecf2;
  --footer-button: #172033;
  --footer-button-text: #fff;
  --footer-link: #bb1720;
  padding: 80px clamp(20px, 6.95vw, 100px) 40px;
  background: var(--footer-background);
  color: var(--footer-text);
}
.site-footer__inner {
  width: min(1080px, 100%);
  margin-inline: auto;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: 400fr 340fr 340fr;
  gap: clamp(32px, 4vw, 80px);
}
.site-footer__invitation {
  max-width: 400px;
}
.site-footer__title {
  margin: 0 0 12px;
  color: #df1e26;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.32px;
}
.site-footer__tagline {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.24px;
}
.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--footer-button);
  color: var(--footer-button-text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
.site-footer__cta:hover {
  background: #df1e26;
  color: #fff;
}
.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}
.site-footer__column--india {
  padding-top: 64px;
}
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--footer-chip);
  border-radius: 16px;
  color: var(--footer-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}
.site-footer__social img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) opacity(0.65);
}
.site-footer__social:hover {
  color: var(--footer-text);
  background: var(--footer-border);
}
.site-footer__office {
  display: grid;
  gap: 12px;
  font-size: 14px;
}
.site-footer__office-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer__address {
  color: var(--footer-muted);
  font-style: normal;
  line-height: 26px;
}
.site-footer__contact {
  display: grid;
  gap: 4px;
  padding-top: 8px;
  line-height: 22px;
}
.site-footer__contact p {
  margin: 0;
}
.site-footer__contact a {
  color: var(--footer-muted);
  text-decoration: none;
}
.site-footer__contact a:hover {
  text-decoration: underline;
}
.site-footer__contact .site-footer__email {
  color: var(--footer-link);
  font-weight: 600;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--footer-border);
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.6;
}
.site-footer__copyright {
  margin: 0;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 24px;
}
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
}
.site-footer__legal a:hover {
  color: var(--footer-text);
  text-decoration: underline;
}
.site-footer a:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 5px;
}

.theme-dark .site-footer {
  --footer-background: #080c14;
  --footer-text: #fff;
  --footer-muted: #94a3b8;
  --footer-border: #1e293b;
  --footer-chip: rgb(30 41 59 / 50%);
  --footer-button: #fff;
  --footer-button-text: #080c14;
  --footer-link: #38bdf8;
}
.theme-dark .site-footer .site-footer__social img {
  filter: none;
}

@media (max-width: 63.99rem) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
  .site-footer__invitation {
    grid-column: 1/-1;
  }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 32px;
  }
}
@media (max-width: 47.99rem) {
  .site-footer {
    padding: 48px 20px 32px;
  }
  .site-footer__columns {
    grid-template-columns: minmax(0, 1fr);
  }
  .site-footer__column--india {
    padding-top: 0;
  }
  .site-footer__title {
    font-size: 38px;
  }
  .site-footer__tagline {
    font-size: 22px;
    line-height: 1.4;
  }
  .site-footer__bottom {
    margin-top: 40px;
  }
}
.home-hero {
  --home-hero-element-gap: 30px;
  display: flex;
  min-height: calc(100svh - 200px);
  padding: 100px;
  flex-direction: column;
  justify-content: center;
  gap: var(--home-hero-element-gap);
  background: var(--color-surface);
  color: var(--color-text);
}

.home-hero__heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--home-hero-element-gap);
}

.home-hero__title {
  width: -moz-max-content;
  width: max-content;
  height: 1.05em;
  font-family: "Geist", var(--font-family-base);
  font-size: clamp(180px, 10.42vw, 150px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
  overflow: visible;
  white-space: nowrap;
}

.home-hero__sequence {
  display: block;
  color: var(--color-text);
}

.home-hero__subtitle {
  font-family: "Geist", var(--font-family-base);
  font-size: clamp(42px, 4.17vw, 60px);
  font-weight: 200;
  line-height: 1;
}

.has-js .home-hero__subtitle,
.has-js .home-hero__content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease, visibility 400ms ease;
}

.has-js .home-hero--subtitle-visible .home-hero__subtitle,
.has-js .home-hero--content-visible .home-hero__content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-hero__content {
  display: flex;
  width: min(100%, 700px);
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.home-hero__copy {
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.home-hero__prompt {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
}

.home-hero__question {
  font-weight: 700;
}

.home-hero__ai-form {
  display: flex;
  width: 100%;
  height: 56px;
  padding: 0 16px 0 20px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(23, 32, 51, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.home-hero__ai-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.home-hero__ai-input {
  min-width: 0;
  padding: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  font-family: "Inter", var(--font-family-base);
  font-size: 16px;
  line-height: 1.4;
}

.home-hero__ai-input::-moz-placeholder {
  color: #737b89;
  opacity: 1;
}

.home-hero__ai-input::placeholder {
  color: #737b89;
  opacity: 1;
}

.home-hero__ai-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.home-hero__ai-button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
}

.home-hero__ai-button img {
  width: 18px;
  height: 18px;
}

.home-hero__ai-button--mic {
  background: rgba(23, 32, 51, 0.08);
}

.home-hero__ai-button--mic img {
  filter: brightness(0) saturate(100%);
}

.home-hero__ai-button--send {
  background: #df1e26;
}

.home-hero__ai-button:focus-visible,
.home-hero__ai-input:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}

@media (max-width: 63.99rem) {
  .home-hero {
    min-height: calc(100svh - 81px);
    padding: 80px 64px;
  }
}
@media (max-width: 47.99rem) {
  .home-hero {
    --home-hero-element-gap: 24px;
    min-height: calc(100svh - 73px);
    padding: 64px 20px;
    justify-content: flex-start;
  }
  .home-hero__title {
    font-size: clamp(124px, 22vw, 92px);
  }
  .home-hero__subtitle {
    max-width: 10em;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.05;
  }
  .home-hero__copy {
    font-size: 15px;
    line-height: 1.45;
  }
  .home-hero__ai-form {
    padding-right: 10px;
    padding-left: 16px;
    gap: 10px;
  }
  .home-hero__ai-input {
    font-size: 14px;
  }
  .home-hero__ai-actions {
    gap: 8px;
  }
}
@media (max-width: 23rem) {
  .home-hero__ai-button--mic {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .has-js .home-hero__subtitle,
  .has-js .home-hero__content {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
}
.particle-hero {
  --particle-hero-lift: clamp(80px, 10vh, 140px);
  --particle-hero-background: #111318;
  --particle-hero-text: #f7f8fb;
  --particle-hero-muted: rgb(247 248 251 / 76%);
  --particle-hero-field: rgb(255 255 255 / 8%);
  --particle-hero-field-border: rgb(255 255 255 / 14%);
  --particle-hero-placeholder: rgb(255 255 255 / 52%);
  --particle-hero-focus: #ffffff;
  --particle-zero-color: #ffffff;
  --particle-one-color: #7d8796;
  position: relative;
  height: calc(100svh - 221px);
  padding: clamp(48px, 7vw, 100px);
  overflow: hidden;
  background: var(--particle-hero-background);
  color: var(--particle-hero-text);
  padding-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.theme-dark .particle-hero {
  --particle-hero-background: #111318;
  --particle-hero-text: #f7f8fb;
  --particle-hero-muted: rgb(247 248 251 / 76%);
  --particle-hero-field: rgb(255 255 255 / 8%);
  --particle-hero-field-border: rgb(255 255 255 / 14%);
  --particle-hero-placeholder: rgb(255 255 255 / 52%);
  --particle-hero-focus: #ffffff;
  --particle-zero-color: #ffffff;
  --particle-one-color: #7d8796;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.particle-hero__text,
.particle-hero__content {
  position: relative;
  z-index: 1;
  top: calc(-1 * var(--particle-hero-lift));
}

.particle-hero__text {
  width: 100%;
  height: clamp(280px, 38vw, 500px);
}

.particle-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle-hero__sr,
.particle-hero__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.particle-hero__content {
  display: flex;
  width: min(100%, 760px);
  margin-top: calc(40px - var(--particle-hero-baseline-tail, 0px));
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.particle-hero--ready .particle-hero__content {
  opacity: 1;
  transform: translateY(0);
}

.particle-hero__subtitle {
  font-family: "Geist", var(--font-family-base);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 200;
  line-height: 1;
}

.particle-hero__description {
  max-width: 700px;
  color: var(--particle-hero-muted);
  font-size: 16px;
  line-height: 1.5;
}

.particle-hero__prompt {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.particle-hero__question {
  font-weight: 700;
}

.particle-hero__form {
  display: flex;
  width: min(100%, 500px);
  height: 56px;
  padding: 0 10px 0 20px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--particle-hero-field-border);
  border-radius: 28px;
  background: var(--particle-hero-field);
}

.particle-hero__input {
  min-width: 0;
  padding: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--particle-hero-text);
  font: inherit;
}

.particle-hero__input::-moz-placeholder {
  color: var(--particle-hero-placeholder);
}

.particle-hero__input::placeholder {
  color: var(--particle-hero-placeholder);
}

.particle-hero__submit {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: #df1e26;
  cursor: pointer;
}

.particle-hero__submit img {
  width: 18px;
  height: 18px;
}

.particle-hero__form:focus-within {
  border-color: var(--particle-hero-focus);
}

.particle-hero__submit:focus-visible {
  outline: 2px solid var(--particle-hero-focus);
  outline-offset: 3px;
}

@media (max-width: 47.99rem) {
  .particle-hero {
    --particle-hero-lift: 32px;
    height: auto;
    padding: 40px 20px 24px;
  }
  .particle-hero__text {
    height: clamp(220px, 58vw, 340px);
  }
  .particle-hero__description {
    font-size: 15px;
  }
}
.our-worlds {
  position: relative;
  padding: 50px clamp(40px, 7.8vw, 100px) 65px;
  overflow: hidden;
  background: #ffffff url("../images/our-worlds-background.png") center/cover no-repeat;
  color: #000000;
  border-bottom: 1px solid #e2e2e2;
}

.our-worlds__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  margin-inline: auto;
}

.our-worlds__header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}

.our-worlds__title,
.our-worlds__intro,
.our-worlds__card-title,
.our-worlds__description {
  margin: 0;
}

.our-worlds__title {
  font-family: "Geist", var(--font-family-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.our-worlds__title span {
  color: #df1e26;
}

.our-worlds__intro {
  max-width: 1040px;
  font-size: 16px;
  line-height: 1.2;
}

.our-worlds__grid {
  display: flex;
  margin-top: 48px;
  align-items: center;
  justify-content: center;
}

.our-worlds__card {
  position: relative;
  width: 34%;
  flex: 0 0 34%;
  aspect-ratio: 1/1;
}

@media (min-width: 64rem) and (prefers-reduced-motion: no-preference) {
  .our-worlds--reveal-ready .our-worlds__card {
    opacity: 0;
  }
  .our-worlds--reveal-ready.our-worlds--revealed .our-worlds__card {
    opacity: 1;
    transition: opacity 1000ms ease var(--world-reveal-delay, 0ms);
  }
  .our-worlds--reveal-ready .our-worlds__card:focus-within {
    opacity: 1;
    transition: none;
  }
}
.our-worlds__card + .our-worlds__card {
  margin-left: -8%;
}

.our-worlds__card:nth-child(1),
.our-worlds__card:nth-child(3) {
  z-index: 2;
}

.our-worlds__card:nth-child(2),
.our-worlds__card:nth-child(4) {
  z-index: 1;
}

.our-worlds__visual {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

.our-worlds__network {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.our-worlds__icon {
  position: absolute;
  top: 17%;
  left: 50%;
  width: 25%;
  height: 25%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
  transform: translateX(-50%);
}

.our-worlds__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 68%;
  height: 100%;
  margin-inline: auto;
  padding: 45% 0 12%;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.our-worlds__card-title {
  font-family: "Geist", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.our-worlds__description {
  font-size: 14px;
  line-height: 1.2;
  max-width: 80%;
}

.our-worlds__link {
  display: grid;
  min-width: 36px;
  min-height: 36px;
  margin-top: 0;
  place-items: center;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
}

.our-worlds__link:hover,
.our-worlds__link:focus-visible {
  background: #df1e26;
}

.our-worlds__link:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}

.our-worlds__carousel-controls {
  display: none;
}

@media (max-width: 47.99rem) {
  .our-worlds {
    padding: 48px 20px 64px;
    background-size: auto 100%;
  }
  .our-worlds__title {
    font-size: 30px;
    line-height: 1.1;
  }
  .our-worlds__intro {
    line-height: 1.4;
  }
  .our-worlds__grid {
    --world-offset: 0px;
    display: flex;
    width: 100%;
    margin: 40px auto 0;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(calc(0px - var(--world-offset)));
    transition: transform 450ms ease;
  }
  .our-worlds__card {
    width: 100%;
    flex: 0 0 100%;
    aspect-ratio: 1/1;
    opacity: 0.38;
    pointer-events: none;
    transition: opacity 300ms ease;
  }
  .our-worlds__card + .our-worlds__card {
    margin-left: 0;
  }
  .our-worlds__card:not(:last-child) {
    margin-right: calc(-8% - 20px);
  }
  .our-worlds__card--active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
  }
  .our-worlds__card--previous,
  .our-worlds__card--next {
    z-index: 1;
    opacity: 0.55;
  }
  .our-worlds__card--previous .our-worlds__content,
  .our-worlds__card--next .our-worlds__content {
    opacity: 0;
  }
  .our-worlds__content {
    width: 100%;
    padding-top: 49%;
  }
  .our-worlds__carousel-controls {
    display: flex;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .our-worlds__carousel-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid #18181b;
    border-radius: 16px;
    background: #ffffff;
    color: #18181b;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }
  .our-worlds__carousel-button:hover,
  .our-worlds__carousel-button:focus-visible {
    background: #18181b;
    color: #ffffff;
  }
  .our-worlds__carousel-button:focus-visible {
    outline: 2px solid #df1e26;
    outline-offset: 3px;
  }
  .our-worlds__pagination {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .our-worlds__pagination-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b4b4b4;
    transition: width 200ms ease, background-color 200ms ease;
  }
  .our-worlds__pagination-dot--active {
    width: 20px;
    border-radius: 4px;
    background: #18181b;
  }
}
.stat-counter {
  display: flex;
  padding: 80px 20px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: #f4f7fb;
  color: #18181b;
  outline: 0;
  border-bottom: 1px solid #e2e2e2;
}

.stat-counter__title {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.stat-counter:focus-visible {
  box-shadow: inset 0 0 0 2px #df1e26;
}

.stat-counter__row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.stat-counter__button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid #d4d4d8;
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
}

.stat-counter__button img {
  width: 20px;
  height: 20px;
}

.stat-counter__button:hover,
.stat-counter__button:focus-visible {
  border-color: #18181b;
}

.stat-counter__button:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}

.stat-counter__stat {
  display: flex;
  width: min(400px, 100%);
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.stat-counter__number,
.stat-counter__description {
  margin: 0;
}

.stat-counter__number {
  font-family: "Geist", sans-serif;
  font-size: clamp(72px, 7.8vw, 100px);
  font-weight: 200;
  line-height: 1;
  white-space: nowrap;
}

.stat-counter__suffix,
.stat-counter__description {
  transition: opacity 180ms ease;
}

.stat-counter__description {
  color: #71717a;
  font-size: clamp(18px, 1.88vw, 24px);
  font-weight: 500;
  line-height: 1.4;
}

.stat-counter__link {
  display: inline-flex;
  min-height: 48px;
  margin-top: 16px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid #18181b;
  border-radius: 16px;
  background: transparent;
  color: #18181b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.stat-counter__link:hover,
.stat-counter__link:focus-visible {
  background: #18181b;
  color: #ffffff;
}

.stat-counter__link:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}

.stat-counter--changing .stat-counter__suffix,
.stat-counter--changing .stat-counter__description {
  opacity: 0;
}

@media (max-width: 47.99rem) {
  .our-worlds__icon {
    width: 28%;
    height: 28%;
  }
  .stat-counter {
    min-height: 180px;
    padding: 64px 20px;
  }
  .stat-counter__number {
    font-size: 62px;
  }
  .stat-counter__row {
    gap: clamp(12px, 5vw, 28px);
  }
  .stat-counter__button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
.theme-dark .stat-counter {
  background: #000000;
  color: #f7f8fb;
  border-color: rgba(255, 255, 255, 0.14);
}
.theme-dark .stat-counter__description {
  color: #b3bbc7;
}
.theme-dark .stat-counter__button {
  border-color: #626b79;
  background: #232730;
}
.theme-dark .stat-counter__button img {
  filter: brightness(0) invert(1);
}
.theme-dark .stat-counter__button:hover, .theme-dark .stat-counter__button:focus-visible {
  border-color: #f7f8fb;
  background: #343a46;
}
.theme-dark .stat-counter__link {
  border-color: #f7f8fb;
  color: #f7f8fb;
}
.theme-dark .stat-counter__link:hover, .theme-dark .stat-counter__link:focus-visible {
  background: #f7f8fb;
  color: #17191e;
}

.theme-dark .our-worlds {
  background: #111318;
  color: #f7f8fb;
  border-color: rgba(255, 255, 255, 0.14);
  isolation: isolate;
}
.theme-dark .our-worlds::before {
  position: absolute;
  inset: 0;
  background: url("../images/our-worlds-background.png") center/cover no-repeat;
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
  opacity: 0.35;
  pointer-events: none;
  content: "";
}
.theme-dark .our-worlds__intro, .theme-dark .our-worlds__description {
  color: #c8ced8;
}
.theme-dark .our-worlds__visual {
  mix-blend-mode: normal;
}
.theme-dark .our-worlds__network {
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
}
.theme-dark .our-worlds__icon {
  mix-blend-mode: normal;
}
.theme-dark .our-worlds__link {
  background: #f7f8fb;
  color: #111318;
}
.theme-dark .our-worlds__link:hover, .theme-dark .our-worlds__link:focus-visible {
  background: #df1e26;
  color: #ffffff;
}
.theme-dark .our-worlds__carousel-button {
  border-color: #788291;
  background: #232730;
  color: #f7f8fb;
}
.theme-dark .our-worlds__carousel-button:hover, .theme-dark .our-worlds__carousel-button:focus-visible {
  background: #f7f8fb;
  color: #111318;
}
.theme-dark .our-worlds__pagination-dot {
  background: #788291;
}
.theme-dark .our-worlds__pagination-dot--active {
  background: #f7f8fb;
}

@media (max-width: 47.99rem) {
  .theme-dark .our-worlds::before {
    background-size: auto 100%;
  }
}
.careers-cta {
  --careers-cta-background: #fdfdfd;
  --careers-cta-text: #353535;
  --careers-cta-button-background: #2c2c2c;
  --careers-cta-button-text: #fdfdfd;
  position: relative;
  z-index: 2;
  display: grid;
  padding: 80px clamp(40px, 6.95vw, 100px);
  grid-template-columns: 258px minmax(0, 814px);
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  background: var(--careers-cta-background);
  color: var(--careers-cta-text);
  border-bottom: 1px solid #e2e2e2;
}

.theme-dark .careers-cta {
  --careers-cta-background: #17191e;
  --careers-cta-text: #f7f8fb;
  --careers-cta-button-background: #f7f8fb;
  --careers-cta-button-text: #17191e;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.careers-cta__media {
  min-height: 258px;
  overflow: hidden;
}

.careers-cta__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.careers-cta__content {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}

.careers-cta__title {
  margin: 0;
  font-family: "Geist", var(--font-family-base);
  font-size: clamp(44px, 4.3vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.careers-cta__title-accent {
  color: #df1e26;
}

.careers-cta__description {
  max-width: 814px;
  margin: 0;
  font-family: "Geist", var(--font-family-base);
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.2;
}

.careers-cta__link {
  display: inline-flex;
  min-height: 56px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  background: var(--careers-cta-button-background);
  color: var(--careers-cta-button-text);
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  border-radius: 16px;
}

.careers-cta__link:hover,
.careers-cta__link:focus-visible {
  background: #df1e26;
  color: #ffffff;
}

.careers-cta__link:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}

@media (max-width: 47.99rem) {
  .careers-cta {
    padding: 20px 20px 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .careers-cta__media {
    order: 2;
    width: min(100%, 520px);
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .careers-cta__content {
    display: contents;
  }
  .careers-cta__title {
    order: 1;
    font-size: clamp(40px, 12vw, 56px);
  }
  .careers-cta__title br {
    display: none;
  }
  .careers-cta__description {
    order: 3;
  }
  .careers-cta__link {
    order: 4;
    justify-self: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .particle-hero__content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.ai-carousel {
  --ai-carousel-background: #ffffff;
  --ai-carousel-text: #000000;
  --ai-carousel-border: #e2e2e2;
  --ai-carousel-dot: #d9d9d9;
  --ai-carousel-dot-active: #2f2f2f;
  position: relative;
  min-height: 600px;
  padding: 46px clamp(40px, 8.13vw, 104px) 60px;
  overflow: hidden;
  background-color: var(--ai-carousel-background);
  color: var(--ai-carousel-text);
  border-bottom: 1px solid var(--ai-carousel-border);
  isolation: isolate;
}

.theme-dark .ai-carousel {
  --ai-carousel-background: #111318;
  --ai-carousel-text: #f7f8fb;
  --ai-carousel-border: rgb(255 255 255 / 14%);
  --ai-carousel-dot: #555b66;
  --ai-carousel-dot-active: #f7f8fb;
}

.ai-carousel__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ai-carousel__background canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.ai-carousel__globe-space {
  display: none;
}

.ai-carousel__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1072px);
  margin-inline: auto;
}

.ai-carousel__intro {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}

.ai-carousel__eyebrow,
.ai-carousel__summary,
.ai-carousel__title,
.ai-carousel__description {
  margin: 0;
}

.ai-carousel__eyebrow {
  font-family: "Geist", var(--font-family-base);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.ai-carousel__summary {
  max-width: 770px;
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.ai-carousel__body {
  width: min(100%, 450px);
  margin-top: 56px;
}

.ai-carousel__controls {
  display: flex;
  height: 6px;
  align-items: center;
  gap: 11px;
}

.ai-carousel__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 1px solid var(--ai-carousel-text);
  border-radius: 16px;
  background: var(--ai-carousel-dot);
  cursor: pointer;
}

.ai-carousel__dot--active {
  width: 18px;
  border-color: var(--ai-carousel-dot-active);
  background: var(--ai-carousel-dot-active);
}

.ai-carousel__dot:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 4px;
}

.ai-carousel__slides {
  display: grid;
  margin-top: 30px;
}

.ai-carousel__slide {
  grid-area: 1/1;
  align-self: start;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}

.ai-carousel__slide[hidden] {
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.ai-carousel__title {
  color: #df1e26;
  font-family: "Geist", var(--font-family-base);
  font-size: clamp(36px, 3.44vw, 44px);
  font-weight: 700;
  line-height: 1;
}

.ai-carousel__description {
  font-family: "Geist", var(--font-family-base);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.ai-carousel__link {
  display: inline-flex;
  min-height: 53px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid #df1e26;
  border-radius: 16px;
  background: #df1e26;
  color: #ffffff;
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
}

.ai-carousel__link:hover,
.ai-carousel__link:focus-visible {
  border-color: #b71820;
  background: #b71820;
  color: #ffffff;
}

.ai-carousel__link:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}

.ai-carousel__link--outline {
  gap: 10px;
  background: var(--ai-carousel-background);
  color: #df1e26;
}
.ai-carousel__link--outline:hover, .ai-carousel__link--outline:focus-visible {
  border-color: #df1e26;
  background: var(--ai-carousel-background);
  color: #df1e26;
}

@media (max-width: 47.99rem) {
  .ai-carousel {
    min-height: 620px;
    padding: 48px 20px 64px;
  }
  .ai-carousel__body {
    margin-top: 0;
  }
  .ai-carousel__globe-space {
    display: block;
    height: clamp(240px, 60vw, 360px);
  }
  .ai-carousel__title {
    font-size: clamp(36px, 11vw, 44px);
  }
}
.case-study {
  --case-bg: #ffffff;
  --case-surface: #f4f7fb;
  --case-text: #172033;
  --case-muted: #565f70;
  --case-border: #e2e2e2;
  --case-red: #df1e26;
  background: var(--case-bg);
  color: var(--case-text);
  border-bottom: 1px solid var(--case-border);
  font-family: "Geist", var(--font-family-base);
}
.case-study__container {
  width: min(1072px, 100% - 80px);
  margin-inline: auto;
}
.case-study__hero {
  padding-block: 36px 72px;
  background: var(--case-surface);
  border-bottom: 1px solid var(--case-border);
}
.case-study__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  color: var(--case-muted);
  font-size: 14px;
}
.case-study__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.case-study__breadcrumb a:hover {
  color: var(--case-red);
  text-decoration: underline;
}
.case-study__eyebrow {
  margin: 0 0 20px;
  color: var(--case-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-study__title {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.case-study__body {
  width: min(800px, 100% - 80px);
  margin-inline: auto;
  padding-block: 64px 80px;
}
.case-study__hero--image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #080c14;
  color: #ffffff;
}
.case-study__hero--image .case-study__breadcrumb {
  color: #e0e5ee;
}
.case-study__hero--image .case-study__breadcrumb a:hover {
  color: #ffffff;
}
.case-study__hero--image .case-study__eyebrow {
  color: #ff6970;
}
.case-study__hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.case-study__hero-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 20, 0.85), rgba(8, 12, 20, 0.65));
  content: "";
}
.case-study__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: blur(6px);
  transform: scale(1.06);
}
.case-study__content {
  font-size: 18px;
  line-height: 1.8;
  overflow-wrap: break-word;
}
.case-study__content h2 {
  margin: 56px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--case-border);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.25;
  font-weight: 700;
}
.case-study__content h3 {
  margin: 32px 0 16px;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 600;
}
.case-study__content h4, .case-study__content h5, .case-study__content h6 {
  margin: 28px 0 12px;
  font-size: 20px;
  line-height: 1.4;
}
.case-study__content > :first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.case-study__content p {
  margin: 0 0 24px;
}
.case-study__content ul, .case-study__content ol {
  margin: 0 0 28px;
  padding-left: 1.5em;
}
.case-study__content ul {
  list-style: disc;
}
.case-study__content ol {
  list-style: decimal;
}
.case-study__content li {
  padding-left: 0.25em;
  margin-bottom: 10px;
}
.case-study__content li::marker {
  color: var(--case-red);
  font-weight: 600;
}
.case-study__content li > ul, .case-study__content li > ol {
  margin-top: 12px;
  margin-bottom: 20px;
}
.case-study__content li > ul {
  list-style: circle;
}
.case-study__content a {
  color: var(--case-red);
  text-underline-offset: 3px;
}
.case-study__content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--case-red);
  background: var(--case-surface);
}
.case-study__content blockquote p:last-child {
  margin-bottom: 0;
}
.case-study__content img, .case-study__content video {
  max-width: 100%;
  height: auto;
}
.case-study__content figure {
  max-width: 100%;
  margin-inline: 0;
}
.case-study__content pre, .case-study__content .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}
.case-study__content hr {
  margin-block: 40px;
  border: 0;
  border-top: 1px solid var(--case-border);
}
.case-study a:focus-visible {
  outline: 2px solid var(--case-red);
  outline-offset: 4px;
}
.case-study__pages {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.theme-dark .case-study {
  --case-bg: #111318;
  --case-surface: #17191e;
  --case-text: #f7f8fb;
  --case-muted: #b3bbc7;
  --case-border: rgb(255 255 255 / 14%);
}

@media (max-width: 47.99rem) {
  .case-study__container, .case-study__body {
    width: calc(100% - 40px);
  }
  .case-study__hero {
    padding-block: 24px 40px;
  }
  .case-study__breadcrumb {
    margin-bottom: 32px;
  }
  .case-study__body {
    padding-block: 36px 48px;
  }
  .case-study__content {
    font-size: 16px;
    line-height: 1.75;
  }
  .case-study__content h2 {
    margin-top: 40px;
    padding-top: 24px;
  }
  .case-study__content > :first-child {
    margin-top: 0;
    padding-top: 0;
  }
}
.case-library {
  --library-bg: #fff;
  --library-surface: #f4f7fb;
  --library-text: #172033;
  --library-muted: #565f70;
  --library-border: #e2e2e2;
  --library-accent: #df1e26;
  padding-block: 72px 96px;
  background: var(--library-bg);
  color: var(--library-text);
  border-bottom: 1px solid var(--library-border);
  font-family: "Geist", var(--font-family-base);
}
.case-library__container {
  width: min(1280px, 100% - 80px);
  margin-inline: auto;
}
.case-library__header {
  margin-bottom: 48px;
}
.case-library__eyebrow {
  margin: 0 0 16px;
  color: var(--library-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-library__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.case-library__filters {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
}
.case-library__field {
  min-width: 0;
}
.case-library__field label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.case-library__field input, .case-library__field select {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--library-border);
  border-radius: 16px;
  background: var(--library-bg);
  color: var(--library-text);
  font: inherit;
  font-size: 16px;
}
.case-library__field input::-moz-placeholder {
  color: var(--library-muted);
  opacity: 1;
}
.case-library__field input::placeholder {
  color: var(--library-muted);
  opacity: 1;
}
.case-library__results {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-block: 24px 32px;
  font-size: 14px;
  color: var(--library-muted);
}
.case-library__results p {
  margin: 0;
}
.case-library__results a, .case-library__empty a {
  color: var(--library-text);
  text-underline-offset: 4px;
}
.case-library__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.case-library__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--library-border);
  border-radius: 20px;
  background: var(--library-surface);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.case-library__card:hover, .case-library__card:focus-within {
  border-color: var(--library-accent);
}
.case-library__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.case-library__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-library__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 18px;
}
.case-library__categories {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  margin: 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--library-bg);
  color: var(--library-accent);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.case-library__card-title {
  margin: 0 0 12px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.3;
  font-weight: 600;
  overflow-wrap: break-word;
}
.case-library__card-title a {
  color: inherit;
  text-decoration: none;
}
.case-library__card-title a::after {
  position: absolute;
  inset: 0;
  content: "";
}
.case-library__excerpt {
  margin: 0;
  color: var(--library-muted);
  font-size: 16px;
  line-height: 1.55;
}
.case-library__empty {
  padding: 64px 24px;
  text-align: center;
  background: var(--library-surface);
  border-radius: 20px;
}
.case-library__empty h2 {
  margin: 0 0 12px;
}
.case-library__empty p {
  margin: 0 0 24px;
  color: var(--library-muted);
}
.case-library :is(a, button, input, select):focus-visible {
  outline: 2px solid var(--library-accent);
  outline-offset: 4px;
}

.theme-dark .case-library {
  --library-bg: #111318;
  --library-surface: #17191e;
  --library-text: #f7f8fb;
  --library-muted: #b3bbc7;
  --library-border: rgb(255 255 255 / 14%);
  --library-accent: #ff4d58;
}
.theme-dark .case-library__field {
  color-scheme: dark;
}

@media (max-width: 64rem) {
  .case-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-library__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-library__field--search {
    grid-column: 1/-1;
  }
}
@media (max-width: 47.99rem) {
  .case-library {
    padding-block: 40px 56px;
  }
  .case-library__container {
    width: calc(100% - 40px);
  }
  .case-library__header {
    margin-bottom: 32px;
  }
  .case-library__filters {
    gap: 16px;
  }
  .case-library__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .case-library__card-body {
    padding: 18px 18px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .case-library__card {
    transition: none;
  }
}
.ai-page {
  --ai-bg: #fff;
  --ai-text: #172033;
  --ai-muted: #565f70;
  --ai-border: #e2e2e2;
  --ai-red: #df1e26;
  background: var(--ai-bg);
  color: var(--ai-text);
  font-family: "Geist", var(--font-family-base);
}
.ai-page__container {
  width: min(1072px, 100% - 80px);
  margin-inline: auto;
}
.ai-page__hero {
  --ai-bg: #111318;
  --ai-text: #f7f8fb;
  --ai-muted: #b3bbc7;
  --ai-border: rgb(255 255 255 / 14%);
  --ai-red: #ff4d58;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 434px;
  padding-block: 80px 120px;
  border-bottom: 1px solid var(--ai-border);
  overflow: hidden;
  background: var(--ai-bg);
}
.ai-page__particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.ai-page__particles canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.ai-page__hero--tabs-sticky .ai-page__particles {
  position: fixed;
  top: calc(var(--ai-tabs-top, 80px) + var(--ai-tabs-height, 67px) - var(--ai-particles-height, 434px));
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 90;
  height: var(--ai-particles-height, 434px);
  background: var(--ai-bg);
  clip-path: inset(calc(var(--ai-particles-height, 434px) - var(--ai-tabs-height, 67px)) 0 0 0);
}
.ai-page__hero--tabs-sticky {
  isolation: auto;
}
.ai-page__hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.ai-page__hero-content::before {
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: var(--ai-bg);
  opacity: 0.86;
  filter: blur(24px);
  content: "";
  pointer-events: none;
}
.ai-page__title {
  margin: 0;
  color: var(--ai-red);
  font-size: 44px;
  line-height: 1.39;
  font-weight: 300;
}
.ai-page__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}
.ai-page__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--ai-text);
  border-radius: 16px;
  background: var(--ai-text);
  color: var(--ai-bg);
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.ai-page__cta:hover {
  background: var(--ai-red);
  border-color: var(--ai-red);
  color: white;
}
.ai-page__services {
  position: relative;
  padding-block: 56px 64px;
  border-bottom: 0;
}
.ai-page__content .wp-block-tab-list {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(1072px, 100% - 80px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--ai-border);
  margin: 0;
  background: transparent;
}
.ai-page__mobile-tab-select {
  display: none;
}
.ai-page__content .wp-block-tab-list--sticky {
  position: fixed;
  top: var(--ai-tabs-top, 80px);
  bottom: auto;
  z-index: 92;
}
.ai-page__content [role=tab] {
  width: 100%;
  padding: 18px 14px;
  margin: 0;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #FFFFFF;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.ai-page__content [role=tab][aria-selected=true] {
  border-bottom-color: var(--ai-red);
  color: var(--ai-red);
}
.ai-page__content [role=tabpanel][hidden] {
  display: none !important;
}
.ai-page__content [role=tabpanel] {
  min-height: 220px;
  font-size: 18px;
  line-height: 1.7;
}
.ai-page__content h2 {
  margin: 0 0 24px;
  font-size: clamp(16px, 3vw, 26px);
  line-height: 1.25;
  color: #df1e26;
}
.ai-page__content h3 {
  margin-block: 28px 16px;
  font-size: 24px;
}
.ai-page__content p {
  margin: 0 0 20px;
}
.ai-page__content ul, .ai-page__content ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
.ai-page__content ul {
  list-style: disc;
}
.ai-page__content ol {
  list-style: decimal;
}
.ai-page__content img {
  max-width: 100%;
  height: auto;
}
.ai-page__content a {
  color: var(--ai-red);
}
.ai-page__content p:empty {
  display: none;
}
.ai-page__content .ai-advisory-cards {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.ai-page__content .ai-advisory-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ai-border);
  border-radius: 20px;
  background: color-mix(in srgb, var(--ai-bg) 92%, var(--ai-text));
}
.ai-page__content .ai-advisory-card h3 {
  margin: 0 0 18px;
  color: var(--ai-red);
  font-size: 24px;
  line-height: 1.25;
}
.ai-page__content .ai-advisory-card p {
  font-size: 16px;
  line-height: 1.55;
}
.ai-page__content .ai-advisory-card p:has(strong) {
  margin-bottom: 12px;
  color: var(--ai-text);
  font-size: 18px;
}
.ai-page__content .ai-advisory-card ul {
  margin: auto 0 0;
  padding: 18px 0 0 1.25em;
  border-top: 1px solid var(--ai-border);
  font-size: 15px;
  line-height: 1.5;
}
.ai-page__content .ai-advisory-card li {
  margin-bottom: 8px;
}
.ai-page__content .ai-advisory-card li::marker {
  color: var(--ai-red);
}
.ai-page__content > .wp-block-quote {
  width: 100vw;
  margin: 64px 0 -64px calc(50% - 50vw);
  padding: 120px max(40px, (100vw - 1080px) / 2);
  border: 0;
  border-block: 1px solid var(--ai-border);
  background: var(--color-surface);
  color: var(--ai-text);
}
.ai-page__content > .wp-block-quote p {
  width: min(100%, 1080px);
  margin: 0 auto;
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.ai-page__content > .wp-block-quote cite {
  display: block;
  width: min(100%, 1080px);
  margin: 40px auto 0;
  color: var(--ai-muted);
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
}
.ai-page__studies.case-library {
  padding-block: 56px 64px;
  border-top: 0;
}
.ai-page__studies-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.ai-page__studies-header h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}
.ai-page__studies-header a {
  color: inherit;
  font-size: 14px;
  text-underline-offset: 4px;
}
.ai-page__track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding-bottom: 8px;
}
.ai-page__track .case-library__card {
  scroll-snap-align: start;
}
.ai-page__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  font-size: 14px;
}
.ai-page__controls[hidden] {
  display: none;
}
.ai-page__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ai-border);
  border-radius: 16px;
  background: var(--ai-bg);
  color: var(--ai-text);
  font-size: 22px;
  cursor: pointer;
}
.ai-page__controls button:disabled {
  opacity: 0.35;
  cursor: default;
}
.ai-page :is(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--ai-red);
  outline-offset: 3px;
}

.theme-dark .ai-page {
  --ai-bg: #111318;
  --ai-text: #f7f8fb;
  --ai-muted: #b3bbc7;
  --ai-border: rgb(255 255 255 / 14%);
  --ai-red: #ff4d58;
}
.theme-dark .ai-page .ai-page__content > .wp-block-quote {
  background: #000;
  color: #fff;
}

@media (max-width: 64rem) {
  .ai-page__track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}
@media (max-width: 47.99rem) {
  .ai-page__container {
    width: calc(100% - 40px);
  }
  .ai-page__hero {
    min-height: 400px;
    padding-block: 56px 120px;
  }
  .ai-page__title {
    font-size: 28px;
  }
  .ai-page__services, .ai-page__studies.case-library {
    padding-block: 36px 40px;
  }
  .ai-page__content .wp-block-tab-list {
    display: none;
  }
  .ai-page__mobile-tab-select {
    position: relative;
    display: block;
    margin: 24px 0 32px;
  }
  .ai-page__mobile-tab-select::after {
    position: absolute;
    top: 50%;
    right: 21px;
    width: 14px;
    height: 14px;
    border-right: 3px solid #172033;
    border-bottom: 3px solid #172033;
    content: "";
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
  }
  .ai-page__mobile-tab-select select {
    width: 100%;
    min-height: 56px;
    padding: 12px 60px 12px 16px;
    border: 1px solid var(--ai-border);
    border-radius: 12px;
    appearance: none;
    background: #fff;
    color: #172033;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
  .ai-page__content [role=tab] {
    min-width: 0;
    min-height: 56px;
    padding: 12px 4px;
    font-size: 12px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }
  .ai-page__content [role=tabpanel] {
    font-size: 16px;
  }
  .ai-page__content .ai-advisory-cards {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 28px;
  }
  .ai-page__content .ai-advisory-card {
    padding: 22px;
  }
  .ai-page__content > .wp-block-quote {
    margin-top: 40px;
    margin-bottom: -40px;
    padding: 64px 20px;
  }
  .ai-page__content > .wp-block-quote p {
    font-size: clamp(26px, 6.7vw, 36px);
  }
  .ai-page__content > .wp-block-quote cite {
    margin-top: 28px;
    font-size: 16px;
  }
  .ai-page__studies-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .ai-page__track {
    grid-auto-columns: 100%;
  }
}
.solutions-page {
  --solutions-bg: #fff;
  --solutions-text: #172033;
  --solutions-muted: #565f70;
  --solutions-border: #e2e2e2;
  --solutions-red: #df1e26;
  --solutions-tabs-bg: #fff;
  --solutions-tabs-text: #172033;
  background: var(--solutions-bg);
  color: var(--solutions-text);
  font-family: "Geist", var(--font-family-base);
}
.solutions-page__container {
  width: min(1072px, 100% - 80px);
  margin-inline: auto;
}
.solutions-page__hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  padding: 0 0 57px;
  overflow: hidden;
  background-color: #080a0b;
  color: #fff;
}
.solutions-page__hero::before {
  position: absolute;
  inset: -12% 0;
  background: url("../images/solutions/solutions-hero.png") right center/auto 75% no-repeat;
  transform: translate3d(0, var(--solutions-parallax-y, 0), 0);
  content: "";
  pointer-events: none;
  will-change: transform;
}
.solutions-page__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 28%, transparent 62%), linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 35%, transparent 70%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
.solutions-page__hero-content {
  position: relative;
  z-index: 1;
}
.solutions-page__title {
  margin: 0 0 20px;
  max-width: 400px;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.19;
  color: var(--solutions-red);
}
.solutions-page__intro-copy {
  width: 400px;
  max-width: 100%;
}
.solutions-page__intro-copy p {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.39;
}
.solutions-page__services {
  position: relative;
  padding-block: 64px 72px;
  border-bottom: 1px solid var(--solutions-border);
}
.solutions-page__content .wp-block-tab-list {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: min(1072px, 100% - 80px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  background: var(--solutions-tabs-bg);
  box-shadow: 0 0 0 100vmax var(--solutions-tabs-bg);
  clip-path: inset(0 -100vmax);
  transform: translateX(-50%);
}
.solutions-page__mobile-tab-select {
  display: none;
}
.solutions-page__content .wp-block-tab-list::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 1px;
  background: var(--solutions-border);
  transform: translateX(-50%);
  content: "";
  pointer-events: none;
}
.solutions-page__content .wp-block-tab-list.wp-block-tab-list--sticky {
  position: fixed;
  top: var(--solutions-tabs-top, 80px);
  bottom: auto;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
}
.solutions-page__content [role=tab] {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--solutions-tabs-text);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.solutions-page__content [role=tab]::before {
  position: static;
  inset: auto;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
}
.solutions-page__content [role=tab]:nth-child(1)::before {
  -webkit-mask-image: url("../images/solutions/applications.svg");
          mask-image: url("../images/solutions/applications.svg");
}
.solutions-page__content [role=tab]:nth-child(2)::before {
  -webkit-mask-image: url("../images/solutions/cloud.svg");
          mask-image: url("../images/solutions/cloud.svg");
}
.solutions-page__content [role=tab]:nth-child(3)::before {
  -webkit-mask-image: url("../images/solutions/data.svg");
          mask-image: url("../images/solutions/data.svg");
}
.solutions-page__content [role=tab]:nth-child(4)::before {
  -webkit-mask-image: url("../images/solutions/infrastructure.svg");
          mask-image: url("../images/solutions/infrastructure.svg");
}
.solutions-page__content [role=tab][aria-selected=true] {
  border-bottom-color: var(--solutions-red);
  color: var(--solutions-red);
  font-weight: 700;
}
.solutions-page__content [role=tabpanel][hidden] {
  display: none !important;
}
.solutions-page__content [role=tabpanel] {
  font-size: 18px;
  line-height: 1.7;
}
.solutions-page__content [role=tabpanel] > h2 {
  margin: 0 0 24px;
  color: var(--solutions-red);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
}
.solutions-page__content [role=tabpanel] > p {
  margin: 0 0 20px;
}
.solutions-page__content [role=tabpanel] > .wp-block-group.is-layout-grid {
  gap: 20px;
  margin-top: 40px;
}
.solutions-page__content [role=tabpanel] > .wp-block-group.is-layout-grid > .wp-block-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--solutions-border);
  border-radius: 20px;
  background: color-mix(in srgb, var(--solutions-bg) 92%, var(--solutions-text));
}
.solutions-page__content [role=tabpanel] h3 {
  margin: 0 0 18px;
  color: var(--solutions-red);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 0px;
}
.solutions-page__content [role=tabpanel] > .wp-block-group.is-layout-grid > .wp-block-group p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.55;
}
.solutions-page__content [role=tabpanel] > .wp-block-group.is-layout-grid > .wp-block-group p:has(strong) {
  margin-bottom: 12px;
  color: var(--solutions-text);
  font-size: 18px;
}
.solutions-page__content [role=tabpanel] ul {
  padding-left: 1.25em;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--solutions-border);
  font-size: 15px;
  line-height: 1.5;
  list-style: disc;
}
.solutions-page__content [role=tabpanel] li {
  margin-bottom: 8px;
}
.solutions-page__content [role=tabpanel] li::marker {
  color: var(--solutions-red);
}
.solutions-page__content .wp-block-accordion {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  gap: 14px;
}
.solutions-page__content .wp-block-accordion-item {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--solutions-border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--solutions-bg) 96%, var(--solutions-text));
}
.solutions-page__content .wp-block-accordion-heading {
  padding: 0;
  margin: 0;
}
.solutions-page__content .wp-block-accordion-heading__toggle {
  display: flex;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--solutions-text);
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}
.solutions-page__content .wp-block-accordion-heading__toggle:is(:hover, :focus-visible), .solutions-page__content .wp-block-accordion-heading__toggle[aria-expanded=true] {
  background: transparent;
  color: var(--solutions-red);
}
.solutions-page__content .wp-block-accordion-heading__toggle-title {
  display: flex;
  min-height: 34px;
  align-items: center;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}
.solutions-page__content .wp-block-accordion-heading__toggle-title br {
  display: inline;
  content: " ";
}
.solutions-page__content .wp-block-accordion-heading__toggle-title br::after {
  content: " ";
}
.solutions-page__content .wp-block-accordion-heading__toggle:focus-visible {
  outline: 2px solid var(--solutions-red);
  outline-offset: -3px;
}
.solutions-page__content .wp-block-accordion-heading__toggle-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid currentcolor;
  border-radius: 50%;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}
.solutions-page__content .wp-block-accordion-heading__toggle-icon::before, .solutions-page__content .wp-block-accordion-heading__toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentcolor;
  content: "";
  transform: translate(-50%, -50%);
}
.solutions-page__content .wp-block-accordion-heading__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.solutions-page__content .wp-block-accordion-heading__toggle[aria-expanded=true] .wp-block-accordion-heading__toggle-icon {
  transform: rotate(45deg);
}
.solutions-page__content .wp-block-accordion-panel {
  padding: 24px 22px 28px;
  border-top: 1px solid var(--solutions-border);
}
.solutions-page__content .wp-block-accordion-panel[hidden] {
  display: none;
}
.solutions-page__content .wp-block-accordion-panel > .wp-block-group.is-layout-grid {
  gap: 20px;
}
.solutions-page__content .wp-block-accordion-panel > .wp-block-group.is-layout-grid > .wp-block-group {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--solutions-border);
  border-radius: 16px;
  background: var(--solutions-bg);
}
.solutions-page__content .wp-block-accordion-panel h3 {
  margin: 0 0 14px;
  color: var(--solutions-red);
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.solutions-page__content .wp-block-accordion-panel p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
}
.solutions-page__content .wp-block-accordion-panel ul {
  margin-top: 0;
  font-size: 14px;
}
.solutions-page__studies.case-library {
  padding-block: 56px 64px;
  border-top: 0;
}
.solutions-page__studies[hidden] {
  display: none;
}
.solutions-page__studies-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.solutions-page__studies-header h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}
.solutions-page__studies-header a {
  color: inherit;
  font-size: 14px;
  text-underline-offset: 4px;
}
.solutions-page__track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.solutions-page__track::-webkit-scrollbar {
  display: none;
}
.solutions-page__track .case-library__card {
  scroll-snap-align: start;
}
.solutions-page__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  font-size: 14px;
}
.solutions-page__controls[hidden] {
  display: none;
}
.solutions-page__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--solutions-border);
  border-radius: 16px;
  background: var(--solutions-bg);
  color: var(--solutions-text);
  font-size: 22px;
  cursor: pointer;
}
.solutions-page__controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .solutions-page__hero::before {
    transform: none;
  }
}
.theme-dark .solutions-page {
  --solutions-bg: #111318;
  --solutions-text: #f7f8fb;
  --solutions-muted: #b3bbc7;
  --solutions-border: rgb(255 255 255 / 14%);
  --solutions-red: #ff4d58;
  --solutions-tabs-bg: #111318;
  --solutions-tabs-text: #f7f8fb;
}

@media (max-width: 47.99rem) {
  .solutions-page__container {
    width: calc(100% - 40px);
  }
  .solutions-page__hero {
    display: block;
    min-height: 0;
    padding: 0;
  }
  .solutions-page__hero::before {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    transform: none;
    will-change: auto;
  }
  .solutions-page__hero-shade {
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 60%, rgba(0, 0, 0, 0.55));
  }
  .solutions-page__hero-content {
    padding-block: 36px 40px;
  }
  .solutions-page__title {
    font-size: 28px;
  }
  .solutions-page__content .wp-block-tab-list {
    display: none;
  }
  .solutions-page__mobile-tab-select {
    position: relative;
    display: block;
    margin: 24px 0 32px;
  }
  .solutions-page__mobile-tab-select::after {
    position: absolute;
    top: 50%;
    right: 21px;
    width: 14px;
    height: 14px;
    border-right: 3px solid #172033;
    border-bottom: 3px solid #172033;
    content: "";
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
  }
  .solutions-page__mobile-tab-select select {
    width: 100%;
    min-height: 56px;
    padding: 12px 60px 12px 16px;
    border: 1px solid var(--solutions-border);
    border-radius: 12px;
    appearance: none;
    background: #fff;
    color: #172033;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
  .solutions-page__content [role=tab] {
    min-width: 0;
    min-height: 64px;
    flex-direction: column;
    gap: 4px;
    padding: 8px 2px;
    font-size: 11px;
    line-height: 1.2;
    color: var(--solutions-muted);
  }
  .solutions-page__content [role=tab][aria-selected=true] {
    color: var(--solutions-red);
  }
  .solutions-page__services {
    padding-block: 0 40px;
  }
  .solutions-page__content [role=tabpanel] {
    font-size: 16px;
  }
  .solutions-page__content [role=tabpanel] > .wp-block-group.is-layout-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    margin-top: 28px;
  }
  .solutions-page__content [role=tabpanel] > .wp-block-group.is-layout-grid > .wp-block-group {
    padding: 22px;
  }
  .solutions-page__content .wp-block-accordion {
    margin-top: 28px;
  }
  .solutions-page__content .wp-block-accordion-heading__toggle {
    height: auto;
    min-height: 60px;
    padding: 15px 16px;
    font-size: 16px;
  }
  .solutions-page__content .wp-block-accordion-heading__toggle-title {
    white-space: normal;
  }
  .solutions-page__content .wp-block-accordion-heading__toggle-title br {
    display: initial;
    content: normal;
  }
  .solutions-page__content .wp-block-accordion-heading__toggle-title br::after {
    content: none;
  }
  .solutions-page__content .wp-block-accordion-panel {
    padding: 18px 16px 20px;
  }
  .solutions-page__content .wp-block-accordion-panel > .wp-block-group.is-layout-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .solutions-page__studies-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .solutions-page__track {
    grid-auto-columns: 100%;
  }
}
.about-page {
  --about-bg: var(--color-surface);
  --about-surface: #fff;
  --about-border: #e2e2e2;
  --about-text: #172033;
  --about-muted: #565f70;
  --about-cta-bg: #172033;
  --about-cta-text: #fff;
  --about-leadership-bg: #fff;
  --about-leader-photo-bg: #e8ebf1;
  --about-quote-bg: var(--color-surface);
  font-family: "Geist", var(--font-family-base);
}
.about-page__hero {
  --about-bg: #111318;
  --about-surface: #1b1e24;
  --about-border: rgb(255 255 255 / 14%);
  --about-text: #f7f8fb;
  --about-muted: #b3bbc7;
  --about-cta-bg: #fff;
  --about-cta-text: #080c14;
  display: flex;
  min-height: 600px;
  align-items: center;
  padding-block: 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--about-border);
  background: var(--about-bg);
  color: var(--about-text);
}
.about-page__container {
  width: min(1080px, 100% - 80px);
  margin-inline: auto;
}
.about-page__intro {
  display: flex;
  max-width: 800px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.about-page__title {
  margin: 0;
  font-size: clamp(52px, 5.625vw, 72px);
  font-weight: 300;
  line-height: 1.15;
}
.about-page__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.about-page__copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.39;
}
.about-page__copy .wp-block-buttons {
  margin: 0;
}
.about-page__copy .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--about-cta-bg);
  color: var(--about-cta-text);
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.about-page__copy .wp-block-button__link::after {
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  content: "→";
}
.about-page__technologies {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
.about-page__technologies-title {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.39;
  color: #df1e26;
}
.about-page__technology-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.about-page__technology-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 16px;
  animation: about-technologies-scroll 32s linear infinite;
}
.about-page__technology-viewport:is(:hover, :focus-within) .about-page__technology-track {
  animation-play-state: paused;
}
.about-page__technology-group {
  display: flex;
  flex: none;
  gap: 16px;
}
.about-page__technology {
  display: flex;
  height: 56px;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--about-border);
  border-radius: 16px;
  background: var(--about-surface);
  color: var(--about-muted);
}
.about-page__technology--linked {
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.about-page__technology--linked:is(:hover, :focus-visible) {
  border-color: #df1e26;
  color: var(--about-text);
}
.about-page__technology--linked:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 0px;
}
.about-page__technology-icon {
  display: block;
  width: 24px;
  height: 24px;
  filter: invert(1);
  -o-object-fit: contain;
     object-fit: contain;
}
.about-page__hero .about-page__technology-icon {
  filter: none;
}
.about-page__technology-name {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.about-page__leadership {
  padding-block: 72px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--about-border);
  background: var(--about-leadership-bg);
  color: var(--about-text);
}
.about-page__leadership-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.about-page__leadership-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.25;
}
.about-page__leadership-intro {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.about-page__leadership-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.about-page__leadership-viewport::-webkit-scrollbar {
  display: none;
}
.about-page__leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  width: 100%;
  padding-bottom: 2px;
}
.about-page__leader {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}
.about-page__leader-photo-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--about-leader-photo-bg);
}
.about-page__leader-photo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.about-page__leader-details {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  gap: 6px;
}
.about-page__leader-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.about-page__leader-designation {
  margin: 0;
  color: var(--about-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}
.about-page__quote {
  padding: 120px max(40px, (100vw - 1080px) / 2);
  border-block: 1px solid var(--about-border);
  background: var(--about-quote-bg);
  color: var(--about-text);
}
.about-page__quote-content {
  width: min(100%, 1080px);
  margin-inline: auto;
}
.about-page__quote .wp-block-quote {
  margin: 0;
  padding: 0;
  border: 0;
}
.about-page__quote .wp-block-quote p {
  margin: 0;
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.about-page__quote .wp-block-quote cite {
  display: block;
  margin-top: 40px;
  color: var(--about-muted);
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
}

.theme-dark .about-page {
  --about-bg: #111318;
  --about-surface: #1b1e24;
  --about-border: rgb(255 255 255 / 14%);
  --about-text: #f7f8fb;
  --about-muted: #b3bbc7;
  --about-cta-bg: #fff;
  --about-cta-text: #080c14;
  --about-leadership-bg: #111318;
  --about-leader-photo-bg: #1b1e24;
  --about-quote-bg: #000;
}
.theme-dark .about-page .about-page__technology-icon {
  filter: none;
}

@keyframes about-technologies-scroll {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
@media (max-width: 47.99rem) {
  .about-page__hero {
    min-height: auto;
    padding-block: 56px;
  }
  .about-page__container {
    width: calc(100% - 40px);
  }
  .about-page__intro {
    gap: 28px;
  }
  .about-page__title {
    font-size: 48px;
  }
  .about-page__technologies {
    margin-top: 48px;
  }
  .about-page__technologies-title {
    font-size: 21px;
  }
  .about-page__leadership {
    padding-block: 56px 64px;
  }
  .about-page__leadership-header {
    margin-bottom: 24px;
  }
  .about-page__leadership-viewport {
    overflow: visible;
  }
  .about-page__leadership-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
  }
  .about-page__leader {
    min-width: 0;
  }
  .about-page__leader-photo-wrap {
    height: auto;
    aspect-ratio: 10/11;
  }
  .about-page__quote {
    padding: 64px 20px;
  }
  .about-page__quote .wp-block-quote p {
    font-size: clamp(26px, 6.7vw, 36px);
  }
  .about-page__quote .wp-block-quote cite {
    margin-top: 28px;
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-page__technology-track {
    animation-play-state: paused;
  }
}
.careers-page {
  --careers-bg: var(--color-surface);
  --careers-text: #172033;
  --careers-red: #df1e26;
  --careers-border: #e2e2e2;
  --careers-button-bg: #1e1d1b;
  --careers-button-text: #fff;
  --careers-process-bg: #fff;
  --careers-benefits-bg: #f4f7fb;
  --careers-positions-bg: #fff;
  --careers-position-card-bg: #f4f7fb;
  --careers-position-card-border: #eaeaea;
  --careers-card-bg: var(--color-surface);
  --careers-card-text: #212121;
  --careers-card-muted: #737373;
  --careers-section-title-size: 32px;
  --careers-section-title-weight: 600;
  font-family: "Geist", var(--font-family-base);
}
.careers-page__hero {
  --careers-button-bg: #f7f8fb;
  --careers-button-text: #111318;
  display: flex;
  min-height: 600px;
  align-items: center;
  padding-block: 88px;
  border-bottom: 1px solid var(--careers-border);
  background: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), #050806 url("../images/careers/vga.jpg") center/cover no-repeat;
  color: #f7f8fb;
}
.careers-page__container {
  width: min(1080px, 100% - 80px);
  margin-inline: auto;
}
.careers-page__animated-title {
  min-height: 2.2em;
  margin: 0 0 30px;
  color: #39ff6a;
  font-family: "Andale Mono", "Lucida Console", "Courier New", monospace;
  font-size: clamp(36px, 3.45vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.045em;
  width: 100%;
  max-width: none;
  text-shadow: 0 0 8px rgba(57, 255, 106, 0.32);
  -webkit-font-smoothing: none;
}
.careers-page__typing {
  display: inline;
}
.careers-page__cursor {
  display: inline-block;
  width: 0.09em;
  height: 1.05em;
  margin-left: 0.08em;
  vertical-align: -0.12em;
  background: currentcolor;
  animation: careers-cursor-blink 700ms steps(1, end) infinite;
}
.careers-page__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.careers-page__content p {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}
.careers-page__content > p:first-child {
  font-weight: 700;
}
.careers-page__content .wp-block-buttons, .careers-page__content .wp-block-button {
  margin: 0;
}
.careers-page__content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--careers-button-bg);
  color: var(--careers-button-text);
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.careers-page__content .wp-block-button__link::after {
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  content: "→";
}
.careers-page__content .wp-block-button__link:is(:hover, :focus-visible) {
  opacity: 0.84;
}
.careers-page__content .wp-block-button__link:focus-visible {
  outline: 2px solid var(--careers-red);
  outline-offset: 3px;
}
.careers-page__process {
  padding-block: 50px;
  border-bottom: 1px solid var(--careers-border);
  background: var(--careers-process-bg);
  color: var(--careers-text);
}
.careers-page__process .careers-page__container {
  width: min(1080px, 100% - 80px);
}
.careers-page .careers-process-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.careers-page .careers-process-content > * {
  margin-block: 0;
}
.careers-page .careers-process-content h2,
.careers-page .careers-benefits-content h2,
.careers-page .careers-positions__header h2 {
  color: var(--careers-red);
  font-family: "Geist", var(--font-family-base);
  font-size: var(--careers-section-title-size);
  font-weight: var(--careers-section-title-weight);
  line-height: 1.39;
}
.careers-page .careers-process-content > p {
  color: var(--careers-card-muted);
  font-size: 16px;
  line-height: 1.39;
}
.careers-page .careers-process-cards.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  margin-top: 20px;
  counter-reset: careers-process-step;
}
.careers-page .careers-process-cards > .wp-block-column {
  position: relative;
  min-width: 0;
}
.careers-page .careers-process-cards > .wp-block-column:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--careers-red);
  border-right: 2px solid var(--careers-red);
  content: "";
  transform: translate(50%, -50%) rotate(45deg);
  pointer-events: none;
}
.careers-page .careers-process-card {
  position: relative;
  height: 100%;
  min-height: 228px;
  padding: 82px 20px 20px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--careers-card-bg);
  color: var(--careers-card-text);
  counter-increment: careers-process-step;
}
.careers-page .careers-process-card::before,
.careers-page .careers-process-card::after {
  position: absolute;
  top: 20px;
}
.careers-page .careers-process-card::before {
  left: 20px;
  width: 40px;
  height: 40px;
  background: center/contain no-repeat;
  content: "";
}
.careers-page .careers-process-card::after {
  right: 20px;
  color: var(--careers-card-text);
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  content: "0" counter(careers-process-step);
}
.careers-page .careers-process-cards > .wp-block-column:nth-child(1) .careers-process-card::before {
  background-image: url("../images/careers/find-role.svg");
}
.careers-page .careers-process-cards > .wp-block-column:nth-child(2) .careers-process-card::before {
  background-image: url("../images/careers/apply.svg");
}
.careers-page .careers-process-cards > .wp-block-column:nth-child(3) .careers-process-card::before {
  background-image: url("../images/careers/interview.svg");
}
.careers-page .careers-process-cards > .wp-block-column:nth-child(4) .careers-process-card::before {
  background-image: url("../images/careers/join.svg");
}
.careers-page .careers-process-card h3 {
  margin: 0 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--careers-border);
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
}
.careers-page .careers-process-card p {
  margin: 0;
  color: var(--careers-card-muted);
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 13px;
  line-height: 1.54;
}
.careers-page .careers-process-content > .wp-block-buttons {
  margin-top: 0;
}
.careers-page .careers-process-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--careers-button-bg);
  color: var(--careers-button-text);
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.careers-page .careers-process-content .wp-block-button__link::after {
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  content: "→";
}
.careers-page__benefits {
  padding-block: 50px;
  border-bottom: 1px solid var(--careers-border);
  background: var(--careers-benefits-bg);
  color: var(--careers-text);
}
.careers-page__benefits .careers-page__container {
  width: min(1080px, 100% - 80px);
}
.careers-page .careers-benefits-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.careers-page .careers-benefits-content > * {
  margin-block: 0;
}
.careers-page .careers-benefits-content > p {
  max-width: 780px;
  color: var(--careers-card-muted);
  font-size: 16px;
  line-height: 1.39;
}
.careers-page .careers-benefits-cards.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin-top: 20px;
}
.careers-page .careers-benefit-card {
  height: 100%;
}
.careers-page .careers-benefit-card .wp-block-image {
  margin: 0 0 20px;
}
.careers-page .careers-benefit-card img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.careers-page .careers-benefit-card h3 {
  margin: 0 0 8px;
  color: var(--careers-card-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
}
.careers-page .careers-benefit-card p {
  margin: 0;
  color: var(--careers-card-muted);
  font-size: 13px;
  line-height: 1.54;
}
.careers-page .careers-benefits-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--careers-button-bg);
  color: var(--careers-button-text);
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.careers-page .careers-benefits-content .wp-block-button__link::after {
  font-family: "Geist", var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  content: "→";
}
.careers-page__positions {
  padding-block: 60px 80px;
  border-bottom: 1px solid var(--careers-border);
  background: var(--careers-positions-bg);
  color: var(--careers-text);
}
.careers-page__positions .careers-page__container {
  width: min(1080px, 100% - 80px);
}
.careers-page .careers-positions__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.careers-page .careers-positions__header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.careers-page .careers-positions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.careers-page .careers-position-card {
  min-width: 0;
}
.careers-page .careers-position-card__button {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 120px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--careers-position-card-border);
  border-radius: 12px;
  background: var(--careers-position-card-bg);
  color: var(--careers-card-text);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}
.careers-page .careers-position-card__button:is(:hover, :focus-visible) {
  border-color: var(--careers-red);
  transform: translateY(-2px);
}
.careers-page .careers-position-card__button:focus-visible {
  outline: 2px solid var(--careers-red);
  outline-offset: 3px;
}
.careers-page .careers-position-card__title {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.careers-page .careers-position-card__meta {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  line-height: 1.4;
}
.careers-page .careers-position-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--careers-red);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.theme-dark .careers-page {
  --careers-bg: #111318;
  --careers-text: #f7f8fb;
  --careers-red: #ff4d58;
  --careers-border: rgb(255 255 255 / 14%);
  --careers-button-bg: #f7f8fb;
  --careers-button-text: #111318;
  --careers-process-bg: #111318;
  --careers-benefits-bg: #111318;
  --careers-positions-bg: #111318;
  --careers-position-card-bg: #1b1e24;
  --careers-position-card-border: rgb(255 255 255 / 14%);
  --careers-card-bg: #1b1e24;
  --careers-card-text: #f7f8fb;
  --careers-card-muted: #b3bbc7;
}
.theme-dark .careers-page .careers-process-card::before {
  filter: invert(1);
}

.position-drawer {
  --position-drawer-bg: #fff;
  --position-drawer-text: #172033;
  --position-drawer-muted: #626b79;
  --position-drawer-border: #e2e2e2;
  --position-drawer-card: #f4f7fb;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(560px, 100vw);
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--position-drawer-border);
  background: var(--position-drawer-bg);
  color: var(--position-drawer-text);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 300ms ease;
}
.position-drawer::backdrop {
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 300ms ease;
}
.position-drawer--open {
  transform: translateX(0);
}
.position-drawer--open::backdrop {
  opacity: 1;
}
.position-drawer__inner {
  min-height: 100%;
  padding: 28px 32px max(40px, env(safe-area-inset-bottom));
}
.position-drawer__close {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 0 20px auto;
  padding: 10px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.position-drawer__close:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}
.position-drawer__eyebrow {
  margin: 0 0 8px;
  color: #df1e26;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.position-drawer__title {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.12;
}
.position-drawer__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 32px;
}
.position-drawer__meta div {
  padding: 14px;
  border-radius: 12px;
  background: var(--position-drawer-card);
}
.position-drawer__meta dt {
  margin-bottom: 4px;
  color: var(--position-drawer-muted);
  font-size: 12px;
  text-transform: uppercase;
}
.position-drawer__meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.position-drawer__description {
  color: var(--position-drawer-text);
  font-size: 15px;
  line-height: 1.6;
}
.position-drawer__description > * {
  margin: 0 0 16px;
}
.position-drawer__description :is(ul, ol) {
  padding-left: 1.4em;
}
.position-drawer__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #df1e26;
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.theme-dark .position-drawer {
  --position-drawer-bg: #111318;
  --position-drawer-text: #f7f8fb;
  --position-drawer-muted: #b3bbc7;
  --position-drawer-border: rgb(255 255 255 / 14%);
  --position-drawer-card: #1b1e24;
}

html.position-drawer-open {
  overflow: hidden;
}

@keyframes careers-cursor-blink {
  0%, 48% {
    opacity: 1;
  }
  49%, 100% {
    opacity: 0;
  }
}
@media (max-width: 47.99rem) {
  .careers-page {
    --careers-section-title-size: 28px;
  }
  .careers-page__hero {
    min-height: auto;
    padding-block: 72px;
  }
  .careers-page__container {
    width: calc(100% - 40px);
  }
  .careers-page__animated-title {
    min-height: 3.3em;
    margin-bottom: 24px;
    font-size: clamp(30px, 9vw, 40px);
  }
  .careers-page__content {
    gap: 24px;
  }
  .careers-page__content p {
    font-size: 20px;
  }
  .careers-page__process {
    padding-block: 48px;
  }
  .careers-page__process .careers-page__container {
    width: calc(100% - 40px);
  }
  .careers-page__benefits {
    padding-block: 48px;
  }
  .careers-page__benefits .careers-page__container {
    width: calc(100% - 40px);
  }
  .careers-page__positions {
    padding-block: 48px;
  }
  .careers-page__positions .careers-page__container {
    width: calc(100% - 40px);
  }
  .careers-page .careers-process-cards.wp-block-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    margin-top: 12px;
  }
  .careers-page .careers-process-cards > .wp-block-column:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -22px;
    transform: translate(50%, 50%) rotate(135deg);
  }
  .careers-page .careers-process-card {
    min-height: 210px;
  }
  .careers-page .careers-benefits-cards.wp-block-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    margin-top: 12px;
  }
  .careers-page .careers-benefit-card img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .careers-page .careers-positions__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .position-drawer {
    width: 100vw;
  }
  .position-drawer__inner {
    padding-inline: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .careers-page__cursor {
    animation: none;
  }
  .position-drawer,
  .position-drawer::backdrop,
  .careers-position-card__button {
    transition: none;
  }
}
.world-page {
  --world-bg: #fff;
  --world-text: #172033;
  --world-muted: #565f70;
  --world-border: #e2e2e2;
  --world-red: #df1e26;
  background: var(--world-bg);
  color: var(--world-text);
  font-family: "Geist", var(--font-family-base);
}

.world-page__container {
  width: min(1080px, 100% - 80px);
  margin-inline: auto;
}

.world-page__hero {
  position: relative;
  min-height: 506px;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.world-page__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  min-height: 506px;
  padding: 40px 0;
  flex-direction: column;
}

.world-page__eyebrow {
  margin: 0 0 22px;
  color: #aaa;
  font-size: 13px;
  line-height: 1.3;
}

.world-page__statement {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(24px, 2.15vw, 32px);
  font-weight: 700;
  line-height: 1.22;
}

.world-page__support {
  max-width: 1040px;
  color: #fff;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 300;
}

.world-page__support > * {
  margin: 0 0 16px;
}

.world-page__support :is(strong, b) {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.world-page__timeline {
  width: 100vw;
  margin-top: 40px;
  margin-left: calc(50% - 50vw);
}

.world-page__timeline-light {
  position: absolute;
  inset: 0 -12vw;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.world-page__timeline-light canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.world-page__timeline-scroll {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.world-page__timeline-scroll::-webkit-scrollbar {
  display: none;
}

.world-page__timeline-nav {
  position: relative;
  z-index: 2;
  display: none;
}

.world-page__timeline-arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.world-page__timeline-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.world-page__timeline-arrow span {
  transform: translateY(-1px);
}

.world-page__timeline-track {
  --world-timeline-items: 5;
  gap: 40px;
  position: relative;
  display: grid;
  width: min(1080px, 100% - 80px);
  min-width: 720px;
  padding: 0 0 32px;
  margin: 0 auto;
  grid-template-columns: repeat(var(--world-timeline-items), minmax(0, 1fr));
  list-style: none;
}

.world-page__timeline-track::before {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--world-red);
  content: "";
  transform: translateX(-50%);
}

.world-page__milestone {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.world-page__year {
  display: inline-flex;
  min-width: 56px;
  min-height: 22px;
  padding: 5px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #4c4c4c;
  border-radius: 999px;
  background: #191919;
  color: #fff;
  font-size: 16px;
  letter-spacing: 8%;
  line-height: 1;
}

.world-page__marker {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border: 1px solid var(--world-red);
  border-radius: 50%;
  background: #000;
}

.world-page__milestone-title {
  margin: 14px 8px 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 6%;
  text-transform: uppercase;
}

.world-page__milestone-description {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.85;
}

.world-page__milestone-description p {
  margin: 0;
}

@media (min-width: 48rem) and (prefers-reduced-motion: no-preference) {
  .world-page__timeline-track::before {
    animation: world-timeline-line-in 700ms ease-out both;
    transform-origin: left center;
  }
  .world-page__milestone {
    animation: world-timeline-item-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .world-page__milestone:nth-child(1) {
    animation-delay: 770ms;
  }
  .world-page__milestone:nth-child(2) {
    animation-delay: 920ms;
  }
  .world-page__milestone:nth-child(3) {
    animation-delay: 1070ms;
  }
  .world-page__milestone:nth-child(4) {
    animation-delay: 1220ms;
  }
  .world-page__milestone:nth-child(5) {
    animation-delay: 1370ms;
  }
  .world-page__milestone:nth-child(6) {
    animation-delay: 1520ms;
  }
  .world-page__milestone:nth-child(7) {
    animation-delay: 1670ms;
  }
  .world-page__milestone:nth-child(8) {
    animation-delay: 1820ms;
  }
}
@keyframes world-timeline-line-in {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
@keyframes world-timeline-item-in {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.world-page__body {
  position: relative;
  padding: 0 64px 80px;
  border-bottom: 1px solid var(--world-border);
  background: var(--world-bg);
}

.world-page__content {
  font-size: 17px;
  line-height: 1.6;
}

.world-page__content .wp-block-tab-list {
  position: sticky;
  top: 80px;
  z-index: 90;
  display: flex;
  flex-wrap: nowrap !important;
  width: 100%;
  min-height: 78px;
  align-items: stretch !important;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--world-border);
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
  list-style: none;
}

.admin-bar .world-page__content .wp-block-tab-list {
  top: 112px;
}

.world-page__content .wp-block-tab-list [role=tab] {
  display: inline-flex;
  width: auto !important;
  min-width: 0;
  height: 78px;
  min-height: 78px;
  padding: 18px 10px;
  flex: 1 1 0 !important;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--world-text);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.world-page__content .wp-block-tab-list [role=tab][aria-selected=true] {
  border-bottom-color: var(--world-red);
  color: var(--world-red);
  font-weight: 700;
}

.world-page__mobile-tab-select {
  display: none;
}

.world-page__content [role=tabpanel][hidden] {
  display: none !important;
}

.world-page__content [role=tabpanel] {
  min-height: 220px;
  font-size: 18px;
  line-height: 1.7;
  margin-top: 40px;
}

.world-page__content [role=tabpanel] > :first-child {
  margin-top: 0;
}

.world-page__content [role=tabpanel] :is(h2, h3) {
  color: var(--world-red);
}

.world-page__content [role=tabpanel] a {
  color: var(--world-red);
}

.world-page__content [role=tabpanel] p {
  font-size: 16px;
  line-height: 1.7;
  margin: 20px 0;
}

.world-page__content > * {
  margin-top: 0;
  margin-bottom: 24px;
}

.world-page__content :is(h2, h3) {
  color: var(--world-red);
  line-height: 1.2;
  margin: 20px 0 !important;
}

.theme-dark .world-page {
  --world-bg: #111318;
  --world-text: #f7f8fb;
  --world-muted: #b3bbc7;
  --world-border: rgb(255 255 255 / 14%);
}

@media (max-width: 47.99rem) {
  .world-page__container {
    width: calc(100% - 40px);
  }
  .world-page__hero,
  .world-page__hero-inner {
    min-height: 0;
  }
  .world-page__hero-inner {
    padding: 28px 0 58px;
  }
  .world-page__statement {
    font-size: 25px;
  }
  .world-page__support {
    font-size: 14px;
  }
  .world-page__timeline {
    margin-top: 28px;
  }
  .world-page__timeline-track {
    width: 720px;
    padding-inline: 20px;
  }
  .world-page__timeline-track::before {
    left: 0;
    width: 100%;
    transform: none;
  }
  .world-page__timeline-nav {
    display: flex;
    padding: 14px 20px 12px;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  .world-page__body {
    padding: 0 0 56px;
  }
  .world-page__content .wp-block-tab-list {
    display: none;
  }
  .world-page__mobile-tab-select {
    display: block;
    position: relative;
    margin: 24px 0 32px;
  }
  .world-page__mobile-tab-select::after {
    position: absolute;
    top: 50%;
    right: 21px;
    width: 14px;
    height: 14px;
    border-right: 3px solid #172033;
    border-bottom: 3px solid #172033;
    content: "";
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
  }
  .world-page__mobile-tab-select select {
    width: 100%;
    min-height: 56px;
    padding: 12px 60px 12px 16px;
    border: 1px solid var(--world-border);
    border-radius: 12px;
    appearance: none;
    background: #fff;
    color: #172033;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
  .world-page__content [role=tabpanel] {
    font-size: 16px;
    margin-top: 0;
  }
}

@media (min-width: 601px) and (max-width: 47.99rem) {
  .admin-bar .world-page__content .wp-block-tab-list {
    top: 118px;
  }
}
@media (max-width: 600px) {
  .admin-bar .world-page__content .wp-block-tab-list {
    top: 72px;
  }
}
.homepage-quote {
  --quote-background: var(--color-surface);
  --quote-text: var(--color-text);
  --quote-muted: #626b79;
  --quote-border: #e2e2e2;
  padding: 120px clamp(40px, 7.8125vw, 100px);
  background: var(--quote-background);
  color: var(--quote-text);
  border-bottom: 1px solid var(--quote-border);
}
.homepage-quote__inner {
  display: flex;
  width: min(100%, 1080px);
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.homepage-quote__text {
  margin: 0;
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.homepage-quote__author {
  color: var(--quote-muted);
  font-family: "Inter", "Geist", var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.theme-dark .homepage-quote {
  --quote-background: #000;
  --quote-text: #ffffff;
  --quote-muted: #b3b3b3;
  --quote-border: rgb(255 255 255 / 14%);
}

@media (max-width: 47.99rem) {
  .homepage-quote {
    padding: 64px 20px;
  }
  .homepage-quote__inner {
    gap: 28px;
  }
  .homepage-quote__text {
    font-size: clamp(26px, 6.7vw, 36px);
  }
  .homepage-quote__author {
    font-size: 16px;
  }
}
.homepage-solutions {
  --solutions-background: #fff;
  --solutions-card: #f4f4f4;
  --solutions-active: #fff;
  --solutions-text: #171717;
  --solutions-muted: #353535;
  --solutions-border: #d2d2d2;
  --solutions-rule: #e2e2e2;
  --solutions-button: #171717;
  --solutions-button-text: #fff;
  padding: 60px clamp(20px, 6.95vw, 100px);
  background: var(--solutions-background);
  color: var(--solutions-text);
  border-bottom: 1px solid var(--solutions-rule);
}
.homepage-solutions__inner {
  max-width: 1240px;
  margin-inline: auto;
}
.homepage-solutions__header {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}
.homepage-solutions__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.homepage-solutions__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.homepage-solutions__cards {
  display: flex;
  gap: 5px;
  align-items: stretch;
}
.homepage-solutions__card {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  min-height: 300px;
  gap: 15px;
  padding: 20px 15px;
  border: 1px solid var(--solutions-border);
  background: var(--solutions-card);
  transition: flex-grow 320ms ease, background-color 200ms ease, border-color 200ms ease;
}
.homepage-solutions__card--active {
  flex-grow: 2.2;
  border-color: #df1e26;
  background: var(--solutions-active);
}
.homepage-solutions__name {
  flex: 0 0 35px;
  margin: 0;
  border-right: 1px solid var(--solutions-rule);
}
.homepage-solutions__trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  border-radius: 0;
}
.homepage-solutions__trigger:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 5px;
}
.homepage-solutions__name-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.homepage-solutions__icon, .homepage-solutions__icon img {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.homepage-solutions__indicator {
  display: none;
}
.homepage-solutions__content {
  flex: 1;
  min-width: 0;
}
.homepage-solutions__headline {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.homepage-solutions__details {
  margin-top: 25px;
}
.homepage-solutions__description {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--solutions-muted);
}
.homepage-solutions__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  background: var(--solutions-button);
  color: var(--solutions-button-text);
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.homepage-solutions__link:hover, .homepage-solutions__link:focus-visible {
  background: #df1e26;
  color: #fff;
}
.homepage-solutions__card--active .homepage-solutions__name-text {
  color: #df1e26;
}
.homepage-solutions__card--active .homepage-solutions__headline {
  font-weight: 700;
}
.homepage-solutions--ready .homepage-solutions__card--active .homepage-solutions__details {
  animation: solutions-details-fade 240ms ease-out 320ms both;
}

@media (min-width: 48rem) {
  .homepage-solutions--ready .homepage-solutions__cards {
    height: var(--solutions-height, auto);
  }
  .homepage-solutions--ready .homepage-solutions__card {
    overflow: clip;
  }
}
@keyframes solutions-details-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.theme-dark .homepage-solutions {
  --solutions-background: #111318;
  --solutions-card: #1c2027;
  --solutions-active: #17191e;
  --solutions-text: #f7f8fb;
  --solutions-muted: #c8ced8;
  --solutions-border: rgb(255 255 255 / 20%);
  --solutions-rule: rgb(255 255 255 / 14%);
  --solutions-button: #f7f8fb;
  --solutions-button-text: #17191e;
}
.theme-dark .homepage-solutions .homepage-solutions__icon img {
  filter: grayscale(1) brightness(0) invert(1);
}

@media (max-width: 63.99rem) {
  .homepage-solutions {
    padding-inline: 20px;
  }
  .homepage-solutions__card {
    gap: 10px;
    padding-inline: 10px;
  }
  .homepage-solutions__card--active {
    flex-grow: 2.6;
  }
}
@media (max-width: 47.99rem) {
  .homepage-solutions {
    padding-block: 48px;
  }
  .homepage-solutions__title {
    font-size: 28px;
  }
  .homepage-solutions__header {
    margin-bottom: 28px;
  }
  .homepage-solutions__cards {
    flex-direction: column;
    gap: 8px;
  }
  .homepage-solutions__card {
    display: block;
    flex: none;
    min-height: 0;
    padding: 20px;
  }
  .homepage-solutions__name {
    border: 0;
  }
  .homepage-solutions__trigger {
    width: 100%;
    flex-direction: row;
    gap: 12px;
    text-align: left;
  }
  .homepage-solutions__name-text {
    writing-mode: horizontal-tb;
    transform: none;
    white-space: normal;
  }
  .homepage-solutions__indicator {
    display: block;
    margin-left: auto;
    font-size: 24px;
    line-height: 1;
  }
  .homepage-solutions__content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--solutions-rule);
  }
  .homepage-solutions--ready .homepage-solutions__card:not(.homepage-solutions__card--active) .homepage-solutions__content {
    display: none;
  }
  .homepage-solutions__details {
    margin-top: 18px;
  }
  .homepage-solutions--ready .homepage-solutions__card--active .homepage-solutions__details {
    animation-delay: 0ms;
  }
}
@media (prefers-reduced-motion: reduce) {
  .homepage-solutions__card {
    transition: none;
  }
  .homepage-solutions--ready .homepage-solutions__card--active .homepage-solutions__details {
    animation: none;
  }
}
.hero-answer {
  --answer-bg: #ffffff;
  --answer-text: #172033;
  --answer-muted: #626b79;
  --answer-border: #e2e2e2;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 100vw);
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--answer-border);
  background: var(--answer-bg);
  color: var(--answer-text);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 300ms ease;
}
.hero-answer::backdrop {
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 300ms ease;
}
.hero-answer--open {
  transform: translateX(0);
}
.hero-answer--open::backdrop {
  opacity: 1;
}
.hero-answer__inner {
  display: flex;
  height: 100%;
  padding: 80px 28px max(32px, env(safe-area-inset-bottom));
  flex-direction: column;
  gap: 32px;
}
.hero-answer__content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.hero-answer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.hero-answer__title {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.2;
}
.hero-answer__question {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.hero-answer__notice {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--answer-muted);
}
.hero-answer__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}
.hero-answer__invitation {
  margin-top: auto;
  flex-shrink: 0;
}
.hero-answer__invitation-title {
  margin: 0 0 18px;
  color: #df1e26;
  font-size: 44px;
  line-height: 1.1;
}
.hero-answer__tagline {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}
.hero-answer__cta {
  display: inline-flex;
  padding: 16px 20px;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: var(--answer-text);
  color: var(--answer-bg);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.hero-answer__close:focus-visible, .hero-answer__cta:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}

.theme-dark .hero-answer {
  --answer-bg: #080c14;
  --answer-text: #f7f8fb;
  --answer-muted: #b3bbc7;
  --answer-border: rgb(255 255 255 / 14%);
}

html.hero-answer-open {
  overflow: hidden;
}

@media (max-width: 47.99rem) {
  .hero-answer {
    width: 100vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-answer,
  .hero-answer::backdrop {
    transition: none;
  }
}
.contact-overlay {
  --contact-bg: #ffffff;
  --contact-text: #172033;
  --contact-border: #e2e2e2;
  --contact-field: #f5f7fa;
  --contact-muted: #626b79;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(560px, 100vw);
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--contact-border);
  background: var(--contact-bg);
  color: var(--contact-text);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 300ms ease;
}
.contact-overlay::backdrop {
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 300ms ease;
}
.contact-overlay--open {
  transform: translateX(0);
}
.contact-overlay--open::backdrop {
  opacity: 1;
}
.contact-overlay__inner {
  padding: 20px 28px max(32px, env(safe-area-inset-bottom));
}
.contact-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-overlay__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}
.contact-overlay__close {
  flex: 0 0 44px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.contact-overlay__close:focus-visible {
  outline: 2px solid #df1e26;
  outline-offset: 3px;
}
.contact-overlay .gform_wrapper .gform_fields {
  row-gap: 24px;
}
.contact-overlay .gform_wrapper .gfield--type-name > legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.contact-overlay .gform_wrapper .gfield_checkbox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}
.contact-overlay .gform_wrapper .gfield_checkbox .gchoice {
  min-width: 0;
  align-items: start;
}
.contact-overlay .gform_wrapper .gfield_checkbox label {
  white-space: normal;
  overflow-wrap: anywhere;
}
.contact-overlay .gform_wrapper {
  --gf-color-primary: #df1e26;
  --gf-color-primary-contrast: #ffffff;
  --gf-color-in-ctrl-primary: var(--contact-text);
  --gf-color-in-ctrl: var(--contact-field);
  --gf-color-in-ctrl-contrast: var(--contact-text);
  --gf-color-out-ctrl: var(--contact-bg);
  --gf-color-out-ctrl-contrast: var(--contact-text);
  --gf-color-out-ctrl-light: var(--contact-muted);
  color: var(--contact-text);
}
.contact-overlay .gform_wrapper input:not([type=checkbox], [type=radio], [type=submit], [type=button], [type=hidden], [type=file]),
.contact-overlay .gform_wrapper select,
.contact-overlay .gform_wrapper textarea {
  background-color: var(--contact-field);
  color: var(--contact-text);
  border-color: var(--contact-border);
}
.contact-overlay .gform_wrapper .gfield_label,
.contact-overlay .gform_wrapper label,
.contact-overlay .gform_wrapper legend,
.contact-overlay .gform_confirmation_message {
  color: var(--contact-text);
}
.contact-overlay .gform_wrapper .gfield_description,
.contact-overlay .gform_wrapper .gform_description,
.contact-overlay .gform_wrapper .gform-field-label--type-sub {
  color: var(--contact-muted);
}
.contact-overlay .gform_wrapper input::-moz-placeholder, .contact-overlay .gform_wrapper textarea::-moz-placeholder {
  color: var(--contact-muted);
  opacity: 1;
}
.contact-overlay .gform_wrapper input::placeholder,
.contact-overlay .gform_wrapper textarea::placeholder {
  color: var(--contact-muted);
  opacity: 1;
}
.contact-overlay .gform_wrapper .gform_footer .gform_button {
  width: 100%;
  max-width: none;
  flex: 1 1 100%;
  height: 64px;
}
.contact-overlay .gform_wrapper .gform_button,
.contact-overlay .gform_wrapper .gform_next_button,
.contact-overlay .gform_wrapper .gform_previous_button {
  border-radius: 16px;
}

.theme-dark .contact-overlay {
  --contact-bg: #080c14;
  --contact-text: #f7f8fb;
  --contact-border: rgb(255 255 255 / 14%);
  --contact-field: #232730;
  --contact-muted: #b3bbc7;
}

html.contact-overlay-open {
  overflow: hidden;
}

@media (max-width: 47.99rem) {
  .contact-overlay {
    width: 100vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-overlay,
  .contact-overlay::backdrop {
    transition: none;
  }
}/*# sourceMappingURL=main.css.map */
