: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-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__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 20px clamp(32px, 6.95vw, 100px);
}

.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: 29px;
}

.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 > .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: url("../images/chevron-down.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.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__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 {
    min-height: 72px;
    padding: 16px 20px;
  }
  .site-header__controls {
    margin-left: auto;
    gap: 22px;
  }
  .site-header__toggle {
    display: block;
  }
  .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: url("../images/chevron-down.svg");
    transform: none;
    padding-bottom: 20px;
  }
  .site-header__menu .sub-menu a {
    padding: 20px 0;
  }
  .site-header__menu > .menu-item--linkedin {
    margin: 12px 0 0;
  }
  .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 {
  max-width: 1240px;
  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: #f4f7fb;
  --particle-hero-text: #172033;
  --particle-hero-muted: rgb(23 32 51 / 72%);
  --particle-hero-field: #ffffff;
  --particle-hero-field-border: rgb(23 32 51 / 14%);
  --particle-hero-placeholder: rgb(23 32 51 / 52%);
  --particle-hero-focus: #df1e26;
  --particle-zero-color: #172033;
  --particle-one-color: #737b89;
  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 #e2e2e2;
}

.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: #c8c8c8;
  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%, 700px);
  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__input:focus-visible,
.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;
  }
  .particle-hero__content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.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: 28%;
  height: 28%;
  -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;
  justify-content: center;
  background: #f4f7fb;
  color: #18181b;
  outline: 0;
  border-bottom: 1px solid #e2e2e2;
}

.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) {
  .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 {
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
}
.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__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 {
  margin-top: 30px;
}

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

.ai-carousel__slide[hidden] {
  display: 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: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.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;
}

@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);
  }
}
.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;
  }
}/*# sourceMappingURL=main.css.map */
