:root {
  --background-color: #f9f4ed;
  --hero-color--primary: #fdfd00;
  --accent-color--primary: #095cfb;
  --font-color--primary: #141414;
  --font-color--secondary: #dddddd;
  --font-color--error: #dc143c;
  --font-family-heading: Fander, system-ui, sans-serif;
  --font-family-body: Geist, system-ui, sans-serif;
  --btn-color-bg: #ffffff;
  --btn-color-text: #141414;
  --btn-color-border: var(--btn-color-bg);
  --btn-color-bg--hover: #fdfd00;
  --btn-color-text--hover: #141414;
  --btn-color-border--hover: var(--btn-color-bg--hover);
  --btn-color-2-bg: #ffffff;
  --btn-color-2-text: #095cfb;
  --btn-color-2-border: var(--btn-color-2-text);
  --btn-color-2-bg--hover: #095cfb;
  --btn-color-2-text--hover: #ffffff;
  --btn-color-2-border--hover: var(--btn-color-2-bg--hover);
  --btn-padding: 10px 20px;
  --input-field-color-background: #ffffff;
  --input-field-color-on-background: #141414;
  --input-field-color-border: #ffffff;
  --input-field-color-hover-background: #07253d;
  --input-field-color-hover-on-background: #fdfd00;
  --input-field-color-hover-border: #fdfd00;
  --link-color: #ffffff;
  --link-color-hover: #fdfd00;
  --surface-color: #002d52;
  --on-surface-color: #ffffff;
  --surface-color-accent: #07253d;
  --surface-color-2: #ffffff;
  --body-padding: 24px;
  --body-padding-double: calc(var(--body-padding) * 2);
  --body-padding-half: calc(var(--body-padding) / 2);
  --body-padding-sm: 12px;
  --body-padding-sm-double: calc(var(--body-padding-sm) * 2);
  --space-between-sections: var(--body-padding-half);
  --section-gap: 64px;
  --section-gap-double: calc(var(--section-gap) * 2);
  --section-gap-triple: calc(var(--section-gap) * 3);
  --section-gap-half: calc(var(--section-gap) / 2);
  --panel-gap: 16px;
  --content-width: 1750px;
  --full-width-snip: calc(100vw - var(--body-padding-double));
  --full-width-snip-sm: calc(100vw - var(--body-padding-sm-double));
  --full-height-snip: calc(100vh - var(--body-padding-double));
  --full-height-snip-header: calc(
    100vh - calc(var(--body-padding-double) + var(--header-height) - var(--body-padding))
  );
  --paragraph-snip: 650px;
  --paragraph-snip-sm: 550px;
  --paragraph-snip-lg: 916px;
  --section-min-height: 720px;
  --header-height: 80px;
  --header-max-width: calc(
    var(--content-width) - var(--body-padding-sm-double)
  );
  --logo-offset: 4px;
  --logo-height: 32px;
  --top-spacing-header: var(--header-height);
  --border-bold-girth: 4px;
  --radius: 10px;
  --radius-sm: 5px;
  --radius-lg: 20px;
  --radius-btn: 64px;
  --carousel-gap: var(--panel-gap);
}
@media (max-width: 1512px) {
  :root {
    --section-min-height: 580px;
    --section-gap: 48px;
  }
}
@media (max-width: 1200px) {
  :root {
    --border-bold-girth: 3px;
  }
}
@media (max-width: 1024px) {
  :root {
    --section-gap--lg: 24px;
    --header-height: 64px;
    --border-bold-girth: 2px;
  }
}
@media (max-width: 768px) {
  :root {
    --body-padding: 18px;
    --logo-offset: 6px;
    --panel-gap: 12px;
  }
}
@media (max-width: 480px) {
  :root {
    --body-padding: 12px;
  }
}
@media (max-width: 380px) {
  :root {
    --btn-padding: 7px 14px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
*:-webkit-autofill, *:-webkit-autofill:hover, *:-webkit-autofill:focus-visible {
  -webkit-text-fill-color: var(--hero-color--primary);
  -webkit-box-shadow: 0 0 0px 1000px var(--surface-color-accent) inset;
  border-color: var(--surface-color-accent) !important;
}
*:-webkit-autofill + .label, *:-webkit-autofill:hover + .label, *:-webkit-autofill:focus-visible + .label {
  opacity: 0;
}
* input::-webkit-outer-spin-button,
* input::-webkit-inner-spin-button {
  display: none;
}

::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  background: var(--background-color);
  color: var(--font-color--primary);
}
body > * {
  max-width: 1750px;
  margin: auto;
}

.site-header {
  --nav-bg-color: var(--surface-color);
  left: var(--body-padding-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: var(--body-padding-sm);
  z-index: 4;
  background: var(--nav-bg-color);
  width: var(--full-width-snip-sm);
  max-width: var(--header-max-width);
  padding: var(--body-padding);
  border: 1px solid var(--background-color);
  border-radius: var(--radius);
  transition: transform 0.24s ease, border 0.24s ease, background 0.24s ease;
}
@media screen and (min-width: 1751px) {
  .site-header {
    left: calc(50% - 875px + var(--body-padding-sm));
  }
}
.site-header:has(.header-logo:focus-visible), .site-header:has(.site-nav-btn:focus-visible) {
  transform: translateY(0) !important;
}
.site-header .site-nav-btn-wrapper {
  --nav-btn-height: 32px;
  height: var(--nav-btn-height);
  aspect-ratio: 1;
  transition: opacity 0.3s ease;
}
.site-header .site-nav-btn-wrapper .site-nav-btn {
  --line-offset: 2.5px;
  --nav-btn-color-bg: #ffffff;
  --nav-btn-color-line: var(--nav-bg-color);
  border: 1px solid var(--nav-btn-color-bg);
  background: var(--nav-btn-color-bg);
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 7px;
  transition: 0.82s cubic-bezier(0.18, 0.97, 0.47, 1);
}
.site-header .site-nav-btn-wrapper .site-nav-btn:hover, .site-header .site-nav-btn-wrapper .site-nav-btn:focus-visible {
  scale: 1.1;
}
.site-header .site-nav-btn-wrapper .site-nav-btn:active {
  scale: 0.9;
}
.site-header .site-nav-btn-wrapper .site-nav-btn__line-wrapper {
  position: relative;
  transition: 0.2s ease;
}
.site-header .site-nav-btn-wrapper .site-nav-btn-line {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 125%;
  height: 3px;
  background: var(--nav-btn-color-line);
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .site-header .site-nav-btn-wrapper .site-nav-btn-line {
    height: 2.5px;
    width: 135%;
  }
}
.site-header .site-nav-btn-wrapper .site-nav-btn-line:first-of-type {
  translate: -50% calc(-50% - var(--line-offset));
}
.site-header .site-nav-btn-wrapper .site-nav-btn-line:last-of-type {
  translate: -50% calc(-50% + var(--line-offset));
}
.site-header .site-nav-btn-wrapper .site-nav-btn[aria-expanded=true] {
  background-color: transparent;
}
.site-header .site-nav-btn-wrapper .site-nav-btn[aria-expanded=true] .site-nav-btn__line-wrapper {
  rotate: 45deg;
}
.site-header .site-nav-btn-wrapper .site-nav-btn[aria-expanded=true] .site-nav-btn-line {
  translate: -50% -50%;
  background: var(--nav-btn-color-bg);
}
.site-header .site-nav-btn-wrapper .site-nav-btn[aria-expanded=true] .site-nav-btn-line:last-of-type {
  rotate: 90deg;
}
@media screen and (max-width: 1024px) {
  .site-header.near-bottom {
    transform: translateY(calc(-100% - var(--body-padding-sm)));
  }
}
.site-header.scrolling-down {
  transform: translateY(calc(-100% - var(--body-padding-sm)));
}
.site-header.nav-active {
  transform: translateY(0);
  background: transparent;
  border: 1px solid transparent;
}

.site-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  max-width: unset;
  width: 100vw;
  height: 100dvh;
  background-color: var(--background-color);
  padding: var(--body-padding-sm);
  min-height: var(--section-min-height);
  z-index: 3;
}
@media (prefers-reduced-motion: no-preference) {
  .site-nav {
    transition: opacity 0.24s ease;
  }
}
.site-nav__inner {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: auto;
  background-color: var(--surface-color);
  max-width: var(--header-max-width);
  width: calc(100vw - var(--body-padding-sm-double));
  height: calc(100dvh - var(--body-padding-sm-double));
  min-height: var(--section-min-height);
  border-radius: var(--radius);
  padding: var(--body-padding);
  padding-block-start: var(--top-spacing-header);
}
@media (prefers-reduced-motion: no-preference) {
  .site-nav__inner {
    translate: 0 -48px;
    transition: opacity 0.24s ease, translate 0.24s ease;
  }
}
.site-nav .nav-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .site-nav .nav-links {
    gap: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .site-nav .nav-links {
    margin-inline-start: var(--body-padding-double);
  }
}
.site-nav .nav-links__link {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 96px;
  line-height: 80%;
  font-size-adjust: 0.5;
  position: relative;
  color: #ffffff;
  display: inline-flex;
  gap: 0.2ch;
  outline: none;
  padding: 16px 0;
  transition: color 0.24s ease;
}
@media screen and (max-width: 1200px) {
  .site-nav .nav-links__link {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 55px;
    line-height: 90%;
    font-size-adjust: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .site-nav .nav-links__link {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 36px;
    line-height: 1;
    padding: 12px 0;
  }
}
@media screen and (max-width: 480px) {
  .site-nav .nav-links__link {
    font-size: 30px;
  }
}
.site-nav .nav-links__link::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 0;
  height: var(--border-bold-girth);
  background: var(--hero-color--primary);
}
@media (hover: hover) and (pointer: fine) {
  .site-nav .nav-links__link::before {
    transition: width 0.24s ease;
  }
}
.site-nav .nav-links__link:hover::before, .site-nav .nav-links__link:focus-visible::before {
  width: 100%;
}
.site-nav .nav-links__link:hover .reveal, .site-nav .nav-links__link:focus-visible .reveal {
  width: 4.45ch;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .site-nav .nav-links__link:hover .reveal, .site-nav .nav-links__link:focus-visible .reveal {
    width: 4ch;
  }
}
.site-nav .nav-links__link .reveal {
  color: var(--hero-color--primary);
  width: 0;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .site-nav .nav-links__link .reveal {
    transition: width 0.24s ease;
  }
}
.site-nav__footer {
  --link-color: #ffffff;
  --link-color-hover: #fdfd00;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.site-nav[aria-hidden=false] {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.site-nav[aria-hidden=false] .site-nav__inner {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  translate: 0 0;
}

.site-footer {
  background-color: var(--surface-color);
  width: calc(100vw - var(--body-padding-sm-double));
  max-width: var(--header-max-width);
  padding: var(--body-padding-double);
  margin-block: var(--body-padding) var(--body-padding-sm);
  border-radius: var(--radius-lg);
}
.site-footer__inner {
  max-width: 1750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 128px;
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .site-footer__inner {
    gap: 64px;
  }
}
.site-footer__inner .inner-top,
.site-footer__inner .inner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .site-footer__inner .inner-top,
  .site-footer__inner .inner-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .site-footer__inner .social-media {
    display: none;
  }
}
.site-footer .footer-links {
  display: grid;
  gap: 24px 128px;
}
@media screen and (min-width: 1025px) {
  .site-footer .footer-links {
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
  }
}

.main-platform,
.main-operation-spwr-serves,
.main-spwr-way {
  padding: var(--body-padding-sm);
}

.main-spwr-way {
  padding-block: var(--body-padding);
}
@media screen and (max-width: 1024px) {
  .main-spwr-way {
    padding-block: var(--body-padding-double);
  }
}

section {
  padding-inline: var(--body-padding);
  padding-block: var(--body-padding-double);
}

h1 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 96px;
  line-height: 80%;
  font-size-adjust: 0.5;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 55px;
    line-height: 90%;
    font-size-adjust: 0.5;
  }
}

p,
strong,
em,
figcaption,
blockquote,
input,
textarea,
label,
li {
  --font-size: 24px;
  color: var(--font-color--primary);
  font-family: var(--font-family-body);
  font-size: var(--font-size);
  font-weight: 500;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  p,
  strong,
  em,
  figcaption,
  blockquote,
  input,
  textarea,
  label,
  li {
    --font-size: 18px;
  }
}
p.body-lg,
strong.body-lg,
em.body-lg,
figcaption.body-lg,
blockquote.body-lg,
input.body-lg,
textarea.body-lg,
label.body-lg,
li.body-lg {
  --font-size: 24px;
  color: var(--font-color--primary);
  font-family: var(--font-family-body);
  font-size: var(--font-size);
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  p.body-lg,
  strong.body-lg,
  em.body-lg,
  figcaption.body-lg,
  blockquote.body-lg,
  input.body-lg,
  textarea.body-lg,
  label.body-lg,
  li.body-lg {
    --font-size: 18px;
  }
}

strong {
  font-weight: 900;
}

a {
  font-family: var(--font-family-heading);
  font-size: 20px;
  text-decoration: none;
  color: var(--link-color);
}
@media (hover: hover) and (pointer: fine) {
  a:hover, a:focus-visible {
    color: var(--link-color-hover);
  }
}

button {
  font-family: var(--font-family-heading);
  border: none;
  background: none;
  cursor: pointer;
}

span {
  font-family: inherit;
}

small {
  font-size: 12px;
}

picture {
  display: flex;
  justify-content: center;
  align-items: center;
}

img,
video {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

figure {
  font-size: 0;
}

br.gap-sm {
  margin: 16px;
  display: block;
}

.classic-link {
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .classic-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .classic-link {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .classic-link {
    transition: 0.24s ease;
  }
}
.classic-link::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  left: 0;
  height: 2px;
  background-color: currentColor;
}
@media (prefers-reduced-motion: no-preference) {
  .classic-link::before {
    transition: width 0.24s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .classic-link:hover, .classic-link:focus-visible {
    color: var(--link-color-hover);
  }
  .classic-link:hover::before, .classic-link:focus-visible::before {
    width: 100%;
  }
}

.classic-list {
  list-style: initial;
}

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

.section-solid-bg {
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  border-radius: var(--radius-lg);
  background: var(--surface-color);
}
@media screen and (min-width: 1025px) {
  .section-solid-bg {
    padding-inline: var(--body-padding-double);
  }
}
.section-solid-bg__title {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 55px;
  line-height: 90%;
  font-size-adjust: 0.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-solid-bg__title {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 36px;
    line-height: 1;
    margin-block-end: var(--panel-gap);
  }
}
.section-solid-bg__icon-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--hero-color--primary);
}
.section-solid-bg__icon-divider .icon-svg {
  width: 4em;
  height: auto;
}
.section-solid-bg__desc {
  margin-block-end: var(--section-gap);
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .section-solid-bg__desc {
    max-width: var(--paragraph-snip);
  }
}
@media screen and (max-width: 768px) {
  .section-solid-bg__desc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .section-solid-bg__desc {
    text-align: center;
    text-wrap: balance;
  }
}

.stack-section {
  position: sticky;
  top: var(--top-spacing-header);
  padding-block-start: 0;
  transition: 0.24s ease;
}
.stack-section.scrolling-down {
  top: var(--body-padding-sm);
}

.pin-steps {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
}
.pin-steps .pin-step {
  background: linear-gradient(180deg, #095cfb, #ffffff);
  flex: 1;
  width: 100%;
}

body .hide-load {
  display: none;
}

.hero-alert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1513px) {
  .hero-alert {
    height: clamp(750px, 100vh, 1250px);
  }
}
@media screen and (max-width: 1512px) {
  .hero-alert {
    height: clamp(650px, 100vh, 1100px);
  }
}
@media screen and (max-width: 768px) {
  .hero-alert {
    height: clamp(500px, 100svh, 950px);
  }
}
.hero-alert__title {
  margin-block-end: 24px;
  text-align: center;
}
.hero-alert__title span {
  color: var(--hero-color--primary);
}
.hero-alert__desc {
  margin-block-end: 48px;
  max-width: 750px;
  text-align: center;
  text-wrap: balance;
}

@media all {
  .lg-up {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .lg-up {
    display: block;
  }
}
@media all {
  .lg-down {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .lg-down {
    display: block;
  }
}
@media all {
  .md-up {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .md-up {
    display: block;
  }
}
@media all {
  .md-down {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .md-down {
    display: block;
  }
}
@media all {
  .sm-up {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .sm-up {
    display: block;
  }
}
@media all {
  .sm-down {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sm-down {
    display: block;
  }
}
@media all {
  .h5 {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 24px;
  }
  .text-stroke {
    -webkit-text-stroke: 1px var(--font-color--primary);
    color: transparent;
    font-weight: 500;
  }
  .underline {
    text-decoration: underline;
  }
  .color-primary {
    color: var(--hero-color--primary);
  }
  .color-secondary {
    color: var(--hero-color--secondary);
  }
  .color-accent {
    color: var(--accent-color--primary);
  }
}
@media screen and (min-width: 1025px) {
  .small-title {
    font-size: 0.55em;
    line-height: 1;
  }
}
@font-face {
  font-family: "Fander";
  src: url("../fonts/Fander-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
.main-home {
  padding: var(--body-padding-sm);
}
.main-home .hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: max(750px, 100lvh - var(--body-padding-sm-double));
  padding: 0;
  gap: var(--body-padding-sm);
}
@media screen and (max-width: 1512px) {
  .main-home .hero {
    height: max(620px, 100lvh - var(--body-padding-sm-double));
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero {
    min-height: 850px;
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero {
    flex-direction: column-reverse;
  }
}
.main-home .hero:has(.spwr-external:hover) .spwr-internal::before, .main-home .hero:has(.spwr-internal:hover) .spwr-external::before {
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  .main-home .hero:has(.spwr-external:hover) .spwr-internal {
    flex: 1;
  }
  .main-home .hero:has(.spwr-external:hover) .spwr-internal::after {
    height: 0;
    opacity: 0;
  }
  .main-home .hero:has(.spwr-external:hover) .spwr-internal .hero-panel__logo {
    top: 50%;
  }
  .main-home .hero:has(.spwr-external:hover) .spwr-internal .hero-panel__text {
    opacity: 0;
    top: 50%;
  }
}
.main-home .hero .hero-panel {
  --children-gap: 48px;
  --logo-width: min(90%, 380px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  height: 100%;
  flex: 1;
  padding-block-start: 150px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 1512px) {
  .main-home .hero .hero-panel {
    --children-gap: 36px;
    --logo-width: min(90%, 320px);
  }
}
@media screen and (max-width: 1200px) {
  .main-home .hero .hero-panel {
    --children-gap: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero .hero-panel {
    width: 100%;
    justify-content: space-between;
    padding-block: 24px 64px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .main-home .hero .hero-panel {
    transition: 0.75s ease;
  }
}
.main-home .hero .hero-panel:hover, .main-home .hero .hero-panel:focus-within {
  flex: 5;
}
.main-home .hero .hero-panel:hover::before, .main-home .hero .hero-panel:focus-within::before {
  background-color: rgba(0, 0, 0, 0.25);
}
.main-home .hero .hero-panel:hover::after, .main-home .hero .hero-panel:focus-within::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .main-home .hero .hero-panel:hover .hero-panel__logo, .main-home .hero .hero-panel:focus-within .hero-panel__logo {
    top: var(--section-gap-double);
  }
}
@media screen and (min-width: 1025px) {
  .main-home .hero .hero-panel:hover .hero-panel__logo, .main-home .hero .hero-panel:focus-within .hero-panel__logo {
    translate: calc(-100% - var(--children-gap)) -50%;
  }
}
.main-home .hero .hero-panel:hover .hero-panel__text, .main-home .hero .hero-panel:focus-within .hero-panel__text {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .main-home .hero .hero-panel:hover .hero-panel__text, .main-home .hero .hero-panel:focus-within .hero-panel__text {
    top: calc(75% - var(--section-gap-double));
  }
}
@media screen and (min-width: 1025px) {
  .main-home .hero .hero-panel:hover .hero-panel__text, .main-home .hero .hero-panel:focus-within .hero-panel__text {
    translate: calc(0% + var(--children-gap)) -5.4ch;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .main-home .hero .hero-panel:hover .hero-panel__text, .main-home .hero .hero-panel:focus-within .hero-panel__text {
    transition: 0.75s ease 0.32s;
  }
}
.main-home .hero .hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: -1;
}
@media (prefers-reduced-motion: no-preference) {
  .main-home .hero .hero-panel::before {
    transition: 0.75s ease;
  }
}
.main-home .hero .hero-panel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(var(--direction), #095cfb 0%, transparent 100%);
  transition: opacity 0.82s cubic-bezier(0.18, 0.97, 0.47, 1), width 0.75s ease, height 0s;
}
@media screen and (min-width: 1025px) {
  .main-home .hero .hero-panel::after {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero .hero-panel::after {
    height: 50%;
    transition: opacity 0.82s cubic-bezier(0.18, 0.97, 0.47, 1), width 0s, height 0.75s ease;
  }
}
.main-home .hero .hero-panel__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.main-home .hero .hero-panel__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: var(--logo-width);
  aspect-ratio: 2/1;
}
@media (prefers-reduced-motion: no-preference) {
  .main-home .hero .hero-panel__logo {
    transition: 0.75s ease;
  }
}
@media screen and (max-width: 768px) {
  .main-home .hero .hero-panel__logo {
    width: min(55%, 320px);
  }
}
.main-home .hero .hero-panel__text {
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
  flex-shrink: 0;
  width: var(--logo-width);
}
@media screen and (min-width: 1025px) {
  .main-home .hero .hero-panel__text {
    translate: calc(0% + 12px) -5.4ch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .main-home .hero .hero-panel__text {
    transition: 0.24s ease;
  }
}
.main-home .hero .hero-panel__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-block: 32px 64px;
  white-space: nowrap;
  gap: 1ch;
}
@media screen and (max-width: 1024px) {
  .main-home .hero .hero-panel__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.main-home .hero .hero-panel__title-sm {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 24px;
}
@media screen and (max-width: 1512px) {
  .main-home .hero .hero-panel__title-sm {
    font-size: min(1.75vw, 24px);
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero .hero-panel__title-sm {
    font-size: 20px;
  }
}
.main-home .hero .hero-panel__title-lg {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 55px;
  line-height: 90%;
  font-size-adjust: 0.5;
}
@media screen and (max-width: 1512px) {
  .main-home .hero .hero-panel__title-lg {
    font-size: min(4vw, 55px);
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero .hero-panel__title-lg {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 36px;
    line-height: 1;
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero .spwr-internal {
    flex: 5;
  }
  .main-home .hero .spwr-internal::after {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
  .main-home .hero .spwr-internal .hero-panel__logo {
    top: var(--section-gap-double);
  }
  .main-home .hero .spwr-internal .hero-panel__text {
    opacity: 1;
    top: calc(75% - var(--section-gap-double));
  }
}
.main-home .hero .spwr-internal::after {
  --direction: to right;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .main-home .hero .spwr-internal::after {
    --direction: to top;
    top: auto;
    bottom: 0;
  }
}
.main-home .hero .spwr-external {
  --logo-width: min(90%, 480px);
}
@media screen and (max-width: 1512px) {
  .main-home .hero .spwr-external {
    --logo-width: min(90%, 420px);
  }
}
@media screen and (max-width: 1024px) {
  .main-home .hero .spwr-external::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.main-home .hero .spwr-external::after {
  --direction: to left;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .main-home .hero .spwr-external::after {
    --direction: to top;
    top: auto;
    bottom: 0;
  }
}

.main-join {
  padding-inline: var(--body-padding-sm);
  padding-block-start: var(--body-padding-half);
}
.main-join .hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: var(--body-padding-half);
  margin-block-start: calc(var(--header-height) + var(--body-padding-sm));
  height: var(--full-height-snip-header);
  min-height: 580px;
  padding-block-end: var(--body-padding-sm);
}
@media screen and (max-width: 1024px) {
  .main-join .hero {
    margin-block-start: calc(var(--header-height) + var(--body-padding));
    padding-block-end: var(--body-padding);
  }
}
.main-join .hero > * {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .main-join .hero > * {
    width: 50%;
  }
}
.main-join .hero .carousel-panel,
.main-join .hero .form-panel {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.main-join .hero .carousel-panel {
  position: relative;
  z-index: -1;
}
.main-join .hero .carousel-panel::before {
  content: "";
}
@media screen and (max-width: 1024px) {
  .main-join .hero .carousel-panel::before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 82, 0.75);
    z-index: 1;
  }
}
.main-join .hero .form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  border-radius: var(--radius-lg);
  background: var(--surface-color);
  border-radius: var(--radius);
  align-self: center;
  padding-block: 128px 64px;
  padding-inline: var(--body-padding);
  gap: 96px;
  overflow-y: auto;
}
@media (max-height: 680px) {
  .main-join .hero .form-panel {
    padding-block: 248px 64px;
  }
}
@media screen and (max-width: 1512px) {
  .main-join .hero .form-panel {
    gap: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .main-join .hero .form-panel {
    padding-block: calc(var(--section-gap) * 3);
  }
}
@media screen and (max-width: 1024px) {
  .main-join .hero .form-panel {
    background: transparent;
    position: absolute;
    top: calc(var(--header-height) + var(--body-padding));
    height: calc(var(--full-height-snip-header) - var(--body-padding));
    min-height: 580px;
    padding-inline: var(--body-padding-double);
    padding-block-start: 248px;
    translate: 0 8px;
  }
}
.main-join .hero .form-panel__title {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 96px;
  line-height: 80%;
  font-size-adjust: 0.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .main-join .hero .form-panel__title {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 55px;
    line-height: 90%;
    font-size-adjust: 0.5;
  }
}
.main-join .hero .form-panel__title .title-sm {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 36px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .main-join .hero .form-panel__title .title-sm {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 55px;
    line-height: 90%;
    font-size-adjust: 0.5;
  }
}
@media screen and (max-width: 1512px) {
  .main-join .hero .form-panel__title {
    margin-block-end: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .main-join .hero .form-panel__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .main-join .hero .form-panel__title {
    width: 150px;
  }
}

.main-platform {
  display: flex;
  flex-direction: column;
  gap: var(--space-between-sections);
}

.direct .node-chart {
  --node-gap-y: 128px;
  --node-gap-y-half: calc(var(--node-gap-y) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--node-gap-y);
}
@media screen and (max-width: 1024px) {
  .direct .node-chart {
    flex-direction: column;
    gap: var(--panel-gap);
  }
}
.direct .node-chart__node {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--panel-gap);
  position: relative;
  background: #003e71;
  padding: var(--body-padding-double) var(--body-padding) var(--body-padding);
  border-radius: var(--radius-lg);
  flex: 1;
}
.direct .node-chart__node-dot {
  --dot-size: 48px;
  --dot-border-size: 12px;
  position: absolute;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--on-surface-color);
  border: var(--dot-border-size) solid var(--surface-color);
}
.direct .node-chart__node-title {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 24px;
}
.direct .node-chart__node-desc {
  --font-size: 24px;
  color: var(--font-color--primary);
  font-family: var(--font-family-body);
  font-size: var(--font-size);
  font-weight: 500;
  --font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__node-desc {
    --font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__node-desc {
    --font-size: 16px;
  }
}
.direct .node-chart__top {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__top {
    width: 100%;
  }
}
.direct .node-chart__top-node {
  padding-block: var(--section-gap);
  min-width: 320px;
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__top-node {
    padding-block: var(--section-gap-double);
  }
}
.direct .node-chart__top-node::before, .direct .node-chart__top-node::after {
  content: "";
  position: absolute;
  bottom: 0;
  translate: 0 100%;
  width: 75%;
  height: var(--node-gap-y-half);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__top-node::before, .direct .node-chart__top-node::after {
    display: none;
  }
}
.direct .node-chart__top-node::before {
  right: calc(50% - 0.5px);
  border-bottom: 1px solid var(--on-surface-color);
  border-right: 1px solid var(--on-surface-color);
  border-bottom-right-radius: var(--radius-lg);
}
.direct .node-chart__top-node::after {
  left: calc(50% - 0.5px);
  border-bottom: 1px solid var(--on-surface-color);
  border-left: 1px solid var(--on-surface-color);
  border-bottom-left-radius: var(--radius-lg);
}
.direct .node-chart__top-node .node-chart__node-dot {
  left: 50%;
  bottom: 0;
  translate: -50% 50%;
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__top-node .node-chart__node-dot {
    display: none;
  }
}
.direct .node-chart__bottom {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5%;
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__bottom {
    flex-direction: column;
    gap: var(--panel-gap);
  }
}
.direct .node-chart__bottom-node::before {
  content: "";
  position: absolute;
  top: 1px;
  height: var(--node-gap-y-half);
  z-index: 1;
  pointer-events: none;
  width: 1px;
  background: var(--on-surface-color);
  left: 50%;
  translate: -50% -100%;
}
@media screen and (max-width: 1024px) {
  .direct .node-chart__bottom-node::before {
    display: none;
  }
}
.direct .node-chart__bottom-node.node-chart__node--first::before, .direct .node-chart__bottom-node.node-chart__node--last::before {
  width: 100%;
  translate: 0 -100%;
  background: transparent;
}
.direct .node-chart__bottom-node.node-chart__node--first::before {
  left: calc(50% - 0.5px);
  border-top: 1px solid var(--on-surface-color);
  border-left: 1px solid var(--on-surface-color);
  border-top-left-radius: var(--radius-lg);
}
.direct .node-chart__bottom-node.node-chart__node--last::before {
  right: calc(50% - 0.5px);
  left: auto;
  border-top: 1px solid var(--on-surface-color);
  border-right: 1px solid var(--on-surface-color);
  border-top-right-radius: var(--radius-lg);
}
.direct .node-chart__bottom-node .node-chart__node-dot {
  top: 0;
  left: 50%;
  translate: -50% -50%;
}

.section-oss-history {
  padding-inline: var(--body-padding-double);
  padding-block-end: var(--section-gap-double);
}
@media screen and (max-width: 1024px) {
  .section-oss-history {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.section-oss-history__title {
  text-align: start;
}
.section-oss-history__desc {
  margin-inline: 0;
  text-align: start;
  max-width: var(--paragraph-snip-sm);
}
@media screen and (max-width: 1024px) {
  .section-oss-history__desc {
    text-align: center;
    text-wrap: balance;
  }
}
.section-oss-history__events {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--section-gap-double);
}
@media screen and (max-width: 1024px) {
  .section-oss-history__events {
    width: 100%;
  }
}
.section-oss-history .service-event {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(var(--section-gap) * 4);
  width: 100%;
}
@media screen and (max-width: 1512px) {
  .section-oss-history .service-event {
    gap: calc(var(--section-gap) * 3);
  }
}
@media screen and (max-width: 1024px) {
  .section-oss-history .service-event {
    flex-direction: column;
    gap: var(--section-gap);
  }
}
.section-oss-history .service-event__graphic {
  width: min(18%, 320px);
}
@media screen and (max-width: 1024px) {
  .section-oss-history .service-event__graphic {
    width: 180px;
  }
}
@media screen and (min-width: 1201px) {
  .section-oss-history .service-event__graphic {
    margin-inline-start: var(--section-gap-double);
  }
}
.section-oss-history .service-event__content {
  max-width: 1024px;
  width: 50%;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .section-oss-history .service-event__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.section-oss-history .service-event__year {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 36px;
  line-height: 1;
  margin-block-end: 12px;
}
.section-oss-history .service-event__location {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 55px;
  line-height: 90%;
  font-size-adjust: 0.5;
}
@media screen and (max-width: 1024px) {
  .section-oss-history .service-event__location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .section-oss-history .service-event__location {
    font-size: 10.8vw;
  }
}
@media screen and (max-width: 1024px) {
  .section-oss-history .service-event__location-city {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 36px;
    line-height: 1;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  .section-oss-history .service-event__location-city {
    font-size: 8vw;
  }
}
.section-oss-history .service-event__desc {
  margin-block-start: var(--section-gap-half);
}
@media screen and (max-width: 1024px) {
  .section-oss-history .service-event__desc {
    text-align: center;
    text-wrap: balance;
  }
}
.section-oss-history .service-event__desc:has(+ .cta-group) {
  margin-block-end: var(--section-gap-half);
}
@media screen and (min-width: 1025px) {
  .section-oss-history .service-event .cta-group {
    justify-content: flex-start;
  }
}
.section-oss-history .service-event .swiper {
  --surface-color: #ffffff;
  --font-color--primary: #141414;
  --link-color: #095cfb;
  --link-color-hover: #095cfb;
  --btn-color-bg: #141414;
  --btn-color-text: #ffffff;
  --btn-color-border: var(--btn-color-bg);
  --btn-color-bg--hover: #fdfd00;
  --btn-color-text--hover: #141414;
  --btn-color-border--hover: var(--btn-color-bg--hover);
}
.section-oss-history .service-event .swiper .icon-svg {
  color: var(--font-color--primary);
}

.frame-content .section-oss-history .swiper-slide {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.frame-content .section-oss-history .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

.section-ethos {
  --panel-translate-offset: 96px;
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  margin-block: var(--top-spacing-header) var(--space-between-sections);
  border-radius: var(--radius-lg);
  position: relative;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section-ethos .ethos-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(20vw, 380px);
}
@media screen and (max-width: 1512px) {
  .section-ethos .ethos-top {
    height: 20vw;
  }
}
@media screen and (max-width: 1024px) {
  .section-ethos .ethos-top {
    flex-direction: column;
    height: 0;
  }
}
.section-ethos .ethos-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--section-gap);
}
.section-ethos .ethos-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--section-gap);
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .section-ethos .ethos-middle {
    flex-direction: column;
  }
}
.section-ethos .ethos-middle .description-title {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 36px;
  line-height: 1;
  display: block;
  margin-block-end: 0.5ch;
}
@media screen and (max-width: 1200px) {
  .section-ethos .ethos-middle .description-title {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 24px;
  }
}
.section-ethos .ethos-middle__p {
  max-width: var(--paragraph-snip);
}
@media screen and (max-width: 1512px) {
  .section-ethos .ethos-middle__p {
    max-width: var(--paragraph-snip-lg);
  }
}
@media screen and (max-width: 1200px) {
  .section-ethos .ethos-middle__p {
    font-size: 18px;
  }
}
.section-ethos .ethos-middle__panels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: hidden;
  gap: var(--panel-gap);
}
@media screen and (max-width: 1024px) {
  .section-ethos .ethos-middle__panels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: var(--section-gap);
  }
}
.section-ethos .ethos-middle__panels-panel {
  border-radius: var(--radius);
  max-width: 320px;
  min-width: 248px;
}
@media screen and (max-width: 1024px) {
  .section-ethos .ethos-middle__panels-panel {
    width: 100%;
    max-width: 520px;
  }
}
@media screen and (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
  .section-ethos .ethos-middle__panels-panel {
    opacity: 0;
    translate: var(--panel-translate-offset) 0;
    transition: 0.24s ease;
  }
  .section-ethos .ethos-middle__panels-panel:nth-of-type(2) {
    transition: 0.24s ease 0.064s;
  }
  .section-ethos .ethos-middle__panels-panel:nth-of-type(3) {
    transition: 0.24s ease 0.128s;
  }
  .section-ethos .ethos-middle__panels-panel.gsap-animated {
    opacity: 1;
    translate: 0 0;
  }
}
@media screen and (max-width: 1200px) {
  .section-ethos .ethos-middle__panels-panel .panel-desc {
    font-size: 18px;
  }
}
.section-ethos .ethos-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--section-gap);
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .section-ethos .ethos-bottom {
    flex-direction: column;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1025px) {
  .section-ethos .ethos-bottom {
    opacity: 0;
    translate: calc(var(--panel-translate-offset) * -1) 0;
    transition: 0.24s ease 0.25s;
  }
  .section-ethos .ethos-bottom.gsap-animated {
    opacity: 1;
    translate: 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .section-ethos .ethos-bottom__p {
    width: min(64%, 664px);
  }
}
@media screen and (max-width: 1200px) {
  .section-ethos .ethos-bottom__p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .section-ethos .ethos-bottom .cta-group {
    align-self: flex-end;
  }
}
.section-ethos .ethos-pin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--section-gap);
  padding: var(--body-padding-double) var(--body-padding-double);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section-ethos .ethos-pin {
    height: calc(100vh - var(--body-padding-double) * 1.5);
    background-image: var(--ethos-bg-sm);
    padding: var(--body-padding);
  }
}
.section-ethos .ethos-cta-mobile {
  align-self: flex-end;
}
.section-ethos .ethos-pin-steps {
  padding-top: 48px;
}
.section-ethos .ethos-gsap-overlay {
  background: var(--surface-color);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: var(--radius-lg);
}

.section-competitions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-block-end: var(--space-between-sections);
}
.section-competitions .competition-types {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: var(--panel-gap);
  overflow: auto;
  scroll-snap-type: x mandatory;
  align-self: flex-start;
  margin-block-end: var(--section-gap-double);
}
@media screen and (max-width: 768px) {
  .section-competitions .competition-types {
    flex-direction: column;
    padding-inline-end: 0;
  }
}
.section-competitions .competition-types__figure {
  border: 2px solid transparent;
  transition: border-color 0.24s ease;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  aspect-ratio: 1/1.65;
  min-width: 364px;
  scroll-snap-align: start;
}
@media (hover: hover) and (pointer: fine) {
  .section-competitions .competition-types__figure:hover, .section-competitions .competition-types__figure:focus-visible {
    border-color: var(--accent-color--primary);
  }
}
.section-competitions .competition-types__figure:hover, .section-competitions .competition-types__figure:focus-visible {
  outline: none;
}
.section-competitions .competition-types__figure:hover .competition-types__img, .section-competitions .competition-types__figure:focus-visible .competition-types__img {
  scale: 1;
}
.section-competitions .competition-types__figure:hover .competition-types__caption, .section-competitions .competition-types__figure:focus-visible .competition-types__caption {
  opacity: 1;
}
.section-competitions .competition-types__figure:hover .competition-types__caption-title, .section-competitions .competition-types__figure:hover .competition-types__caption-p, .section-competitions .competition-types__figure:focus-visible .competition-types__caption-title, .section-competitions .competition-types__figure:focus-visible .competition-types__caption-p {
  translate: 0 0;
}
.section-competitions .competition-types__figure:hover .competition-types__badge, .section-competitions .competition-types__figure:focus-visible .competition-types__badge {
  opacity: 0;
}
.section-competitions .competition-types__figure picture {
  height: 100%;
}
@media screen and (max-width: 1512px) {
  .section-competitions .competition-types__figure {
    min-width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .section-competitions .competition-types__figure {
    aspect-ratio: 1;
    width: 100%;
    max-width: 500px;
    min-width: 0;
  }
}
.section-competitions .competition-types__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .section-competitions .competition-types__img {
    scale: 1.025;
    transition: 0.24s ease;
  }
}
.section-competitions .competition-types__caption {
  --content-offset: 48px 0;
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(0deg, #095cfb 50%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  padding: var(--body-padding);
}
@media (prefers-reduced-motion: no-preference) {
  .section-competitions .competition-types__caption {
    opacity: 0;
    transition: 0.24s ease;
  }
}
.section-competitions .competition-types__caption-title {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 36px;
  line-height: 1;
  margin-block-end: 24px;
}
@media (prefers-reduced-motion: no-preference) {
  .section-competitions .competition-types__caption-title {
    translate: var(--content-offset);
    transition: 0.24s ease;
  }
}
.section-competitions .competition-types__caption-p {
  height: 7lh;
  font-size: 18px;
}
@media (prefers-reduced-motion: no-preference) {
  .section-competitions .competition-types__caption-p {
    translate: var(--content-offset);
    transition: 0.24s ease 0.024s;
  }
}
@media screen and (max-width: 1512px) {
  .section-competitions .competition-types__caption-p {
    height: 9lh;
  }
}
@media screen and (max-width: 768px) {
  .section-competitions .competition-types__caption-p {
    font-size: 18px;
    height: 8lh;
  }
}
.section-competitions .competition-types__badge {
  display: none;
}
@media (hover: none) and (pointer: coarse) {
  .section-competitions .competition-types__badge {
    display: flex;
    position: absolute;
    bottom: var(--body-padding-sm);
    right: var(--body-padding-sm);
    z-index: 1;
  }
}
.section-competitions .yog {
  background: linear-gradient(0deg, #095cfb 20%, rgba(0, 0, 0, 0) 80%);
  isolation: isolate;
  position: relative;
  width: 100%;
}
.section-competitions .yog-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 128px;
  height: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .section-competitions .yog-logo {
    height: 196px;
  }
}
.section-competitions .yog-logo__img {
  width: 420px;
}
@media screen and (max-width: 768px) {
  .section-competitions .yog-logo__img {
    width: min(100%, 360px);
    padding-inline: var(--body-padding-double);
  }
}
.section-competitions .yog-merch {
  margin: auto;
  padding-block: 264px 148px;
}
@media screen and (max-width: 1024px) {
  .section-competitions .yog-merch {
    padding-block-start: 96px;
  }
}
.section-competitions .yog-merch__row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 12vw;
}
@media screen and (min-width: 1751px) {
  .section-competitions .yog-merch__row {
    gap: 250px;
  }
}
@media screen and (min-width: 1025px) {
  .section-competitions .yog-merch__row {
    height: 196px;
  }
}
@media screen and (max-width: 1024px) {
  .section-competitions .yog-merch__row {
    flex-direction: column;
    gap: var(--section-gap);
    margin-block-end: var(--section-gap);
  }
}
.section-competitions .yog-merch__row-img {
  width: 250px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .section-competitions .yog-merch__row-img {
    width: 75%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .section-competitions .yog-merch__row-img {
    opacity: 0;
    scale: 0.8;
    transition: 0.24s ease 0.125s;
  }
  .section-competitions .yog-merch__row-img.gsap-animated {
    opacity: 1;
    scale: 1;
    transition: 0.24s ease 0.25s;
  }
}
.section-competitions .yog-merch__row-img.left {
  rotate: -15deg;
}
.section-competitions .yog-merch__row-img.right {
  rotate: 15deg;
}
.section-competitions .yog-types {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-block-end: var(--body-padding-double);
}
@media screen and (max-width: 768px) {
  .section-competitions .yog-types {
    gap: var(--body-padding-double) 0;
    padding-inline: var(--body-padding);
    padding-block-end: var(--body-padding-double);
  }
}
@media screen and (max-width: 1024px) {
  .section-competitions .yog-types {
    flex-wrap: wrap;
  }
}
.section-competitions .yog-types__img {
  flex: 1;
  max-width: 23%;
  aspect-ratio: 2/1;
  padding: 24px;
}
@media screen and (max-width: 1024px) {
  .section-competitions .yog-types__img {
    max-width: 46%;
  }
}
@media screen and (max-width: 768px) {
  .section-competitions .yog-types__img {
    padding: 0;
  }
}
.section-competitions .yog-stripes {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 50%;
  height: 100%;
  z-index: -2;
}
@media screen and (min-width: 1025px) {
  .section-competitions .yog-stripes {
    border-inline: 4px solid var(--surface-color);
  }
}
.section-competitions .yog-stripes__stripe {
  width: 4px;
  height: 100%;
  background: var(--surface-color);
}
@media screen and (max-width: 768px) {
  .section-competitions .yog-stripes__stripe {
    width: 3px;
  }
}
@media screen and (max-width: 480px) {
  .section-competitions .yog-stripes__stripe {
    width: 2px;
  }
}

.cta-1,
.cta-2 {
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  border: 1px solid var(--btn-color-border);
  border-radius: var(--radius-btn);
  background: var(--btn-color-bg);
  color: var(--btn-color-text);
  padding: var(--btn-padding);
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .cta-1,
  .cta-2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cta-1,
  .cta-2 {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .cta-1,
  .cta-2 {
    transition: 0.24s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cta-1:hover, .cta-1:focus-visible,
  .cta-2:hover,
  .cta-2:focus-visible {
    border-color: var(--btn-color-border--hover);
    background: var(--btn-color-bg--hover);
    color: var(--btn-color-text--hover);
  }
}
.cta-1.outline,
.cta-2.outline {
  --btn-color-border--hover: var(--btn-color-bg);
}

.cta-2 {
  border: 1px solid var(--btn-color-2-border);
  background: var(--btn-color-2-bg);
  color: var(--btn-color-2-text);
}
@media (hover: hover) and (pointer: fine) {
  .cta-2:hover, .cta-2:focus-visible {
    border-color: var(--btn-color-2-border--hover);
    background: var(--btn-color-2-bg--hover);
    color: var(--btn-color-2-text--hover);
  }
}

.cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .cta-group {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cta-group {
    gap: 8px;
  }
}
@media screen and (max-width: 390px) {
  .cta-group {
    flex-direction: column;
  }
}

.carousel-gallery__img {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.24s ease;
}
.carousel-gallery__img.active {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.carousel-gallery--ethos {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
  overflow: hidden;
}
.carousel-gallery--ethos-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .carousel-gallery--ethos-img {
    opacity: 0;
    transition: opacity 0.24s ease;
  }
  .carousel-gallery--ethos-img.active {
    opacity: 1;
  }
}
.carousel-gallery--ethos .ethos-img-1 {
  opacity: 1;
}
.carousel-gallery--join {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper {
  --swiper-navigation-color: var(--hero-color--primary);
  margin-block: var(--section-gap);
}
.swiper .swiper-wrapper .swiper-slide {
  border-radius: var(--radius);
  overflow: hidden;
}
.swiper .swiper-wrapper .swiper-slide picture {
  height: 100%;
}
.swiper .swiper-wrapper .swiper-slide picture img {
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper div.swiper-pagination-progressbar {
  top: auto;
  bottom: 16px;
  width: 66%;
  background: var(--surface-color-accent);
  height: 3px;
}
@media screen and (max-width: 768px) {
  .swiper div.swiper-pagination-progressbar {
    display: none;
  }
}
.swiper div.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--hero-color--primary);
}
.swiper .controls {
  min-height: 24px;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  top: auto;
  left: auto;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  display: none;
}
.swiper .swiper-button-prev .icon-svg,
.swiper .swiper-button-next .icon-svg {
  --icon-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    display: none;
  }
}
.swiper .swiper-button-prev {
  right: 48px;
  bottom: 0;
  rotate: 180deg;
}
.swiper .swiper-button-next {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}
.swiper.video-carousel {
  margin-block-end: var(--section-gap-double);
}
.swiper.video-carousel .swiper-wrapper {
  margin-block-end: var(--section-gap);
}
@media screen and (max-width: 1512px) {
  .swiper.video-carousel .swiper-wrapper {
    margin-block-end: var(--section-gap-double);
  }
}
.swiper.video-carousel .swiper-slide {
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.24s ease;
}
@media (hover: hover) and (pointer: fine) {
  .swiper.video-carousel .swiper-slide:hover, .swiper.video-carousel .swiper-slide:focus-visible {
    border-color: var(--accent-color--primary);
  }
}
@media screen and (max-width: 1024px) {
  .swiper.video-carousel .swiper-slide {
    width: 250px;
    min-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .swiper.video-carousel .swiper-slide {
    min-width: 320px;
  }
}
@media screen and (max-width: 480px) {
  .swiper.video-carousel .swiper-slide {
    min-width: 296px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .swiper.video-carousel .swiper-slide:hover .badge, .swiper.video-carousel .swiper-slide:focus-visible .badge {
    opacity: 1;
    translate: 0 0;
  }
  .swiper.video-carousel .swiper-slide:hover img, .swiper.video-carousel .swiper-slide:focus-visible img {
    scale: 1;
  }
}
@media screen and (max-width: 1024px) {
  .swiper.video-carousel .swiper-slide.swiper-slide-active {
    border: 2px solid var(--accent-color--primary);
  }
  .swiper.video-carousel .swiper-slide.swiper-slide-active .badge {
    opacity: 1;
    translate: 0 0;
  }
  .swiper.video-carousel .swiper-slide.swiper-slide-active img {
    scale: 1;
  }
}
.swiper.video-carousel .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.24s ease;
}
.swiper.video-carousel .swiper-slide .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  opacity: 0;
  translate: 0 -12px;
  transition: 0.24s ease;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .swiper.video-carousel .swiper-slide .badge {
    top: 8px;
    right: 8px;
  }
}
.swiper.video-carousel .swiper-slide img {
  scale: 1.025;
  transition: 0.24s ease;
}
.swiper.img-carousel {
  width: 100%;
}
.swiper.img-carousel .swiper-wrapper {
  margin-block-end: var(--section-gap-half);
}
@media screen and (max-width: 1512px) {
  .swiper.img-carousel .swiper-wrapper {
    margin-block-end: var(--section-gap);
  }
}
.swiper.img-carousel .swiper-slide {
  width: 250px;
  aspect-ratio: 1/1.15;
}
@media screen and (max-width: 768px) {
  .swiper.img-carousel .carousel__controls-cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.collage {
  display: flex;
  align-items: flex-start;
  gap: var(--panel-gap);
  overflow: hidden;
}
.collage__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--panel-gap);
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .collage__column {
    display: none;
  }
}
.collage__column picture {
  width: 100%;
}
.collage__column img {
  border-radius: var(--radius);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.collage__column img.portrait {
  aspect-ratio: 1/1.25;
}
.collage__column img.landscape {
  aspect-ratio: 1.5/1;
}
@media screen and (max-width: 1200px) {
  .collage__column-4 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .collage__column-3 {
    display: none;
  }
}
.collage__column-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .collage__column-mobile {
    display: flex;
  }
}

.form-redirect {
  --font-size: 24px;
  color: var(--font-color--primary);
  font-family: var(--font-family-body);
  font-size: var(--font-size);
  font-weight: 500;
  --font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: min(100%, 648px);
}
@media screen and (max-width: 1024px) {
  .form-redirect {
    --font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .form-redirect {
    --font-size: 16px;
  }
}
.form-redirect .form-block {
  position: relative;
  width: 100%;
  height: 3em;
}
.form-redirect .form-block:hover .label, .form-redirect .form-block:focus-within .label {
  color: var(--input-field-color-hover-on-background);
}
.form-redirect .form-block--discovery {
  height: 6em;
}
.form-redirect .form-block--awareness {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1ch;
  height: 2em;
}
.form-redirect .form-block--awareness .checkbox {
  accent-color: var(--hero-color--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-redirect .form-block--awareness .checkbox-label {
  font-size: inherit;
  cursor: pointer;
}
.form-redirect .form-block .label,
.form-redirect .form-block .input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  font-size: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0;
  outline: none;
}
.form-redirect .form-block .label:focus,
.form-redirect .form-block .input:focus {
  border: 2px solid var(--hero-color--primary);
}
.form-redirect .form-block .label--textarea,
.form-redirect .form-block .input--textarea {
  align-items: flex-start;
}
.form-redirect .form-block .label {
  color: var(--input-field-color-on-background);
  pointer-events: none;
  transition: 0.25s ease;
  white-space: nowrap;
}
.form-redirect .form-block .label .nested-label {
  font-size: max(0.9em, 13px);
  font-style: oblique;
  translate: 12px -6px;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s cubic-bezier(0.18, 0.97, 0.47, 1), opacity 0s;
}
.form-redirect .form-block .label .nested-label.text-error {
  color: var(--font-color--error);
}
.form-redirect .form-block .input {
  border: 1px solid transparent;
  background-color: var(--surface-color-2);
  border-radius: var(--radius-sm);
  resize: none;
  transition: border 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}
@media (hover: hover) and (pointer: fine) {
  .form-redirect .form-block .input:hover, .form-redirect .form-block .input:focus-visible {
    border: 1px solid var(--hero-color--primary);
    background-color: var(--input-field-color-hover-background);
  }
}
.form-redirect .form-block-group {
  display: flex;
  gap: 12px;
  width: 100%;
}
.form-redirect .input:not(:-moz-placeholder).input:not(focus) {
  background-color: var(--input-field-color-hover-background);
  color: var(--input-field-color-hover-on-background);
}
.form-redirect .input:not(:placeholder-shown).input:not(focus) {
  background-color: var(--input-field-color-hover-background);
  color: var(--input-field-color-hover-on-background);
}
.form-redirect .input:focus ~ .label,
.form-redirect .input:not(:placeholder-shown).input:not(focus) ~ .label, .form-redirect:-webkit-autofill, .form-redirect:-webkit-autofill:hover, .form-redirect:-webkit-autofill:focus {
  opacity: 0;
}
.form-redirect .recaptcha {
  width: 304px;
  height: 78px;
}
.form-redirect .form-footer {
  display: flex;
  gap: 16px;
}

.icon-svg {
  --icon-size: 1em;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  aspect-ratio: 1/1;
  background: currentColor;
  display: inline-block;
  vertical-align: middle;
  width: var(--icon-size);
  height: var(--icon-size);
}
.icon-svg--lg {
  --icon-size: 1.25em;
}
.icon-svg--sm {
  --icon-size: 0.75em;
}

.logo-link {
  display: inline-flex;
  height: var(--logo-height);
  aspect-ratio: 5/1;
}
.logo-link__img {
  height: 100%;
}

.portrait-gradient {
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.portrait-gradient::before {
  background: linear-gradient(0deg, #141414 20%, rgba(0, 0, 0, 0) 50%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.portrait-gradient__img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portrait-gradient__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: var(--body-padding);
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .portrait-gradient__caption {
    --body-padding: 24px;
  }
}
.portrait-gradient__caption-name {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 55px;
  line-height: 90%;
  font-size-adjust: 0.5;
}
.portrait-gradient__caption-role {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 20px;
  letter-spacing: -1px;
}

.social-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.social-media:hover .social-media__label, .social-media:focus-within .social-media__label {
  translate: 0 -25%;
  transition: 0.24s ease;
}
.social-media:hover .social-media__links li:nth-of-type(1), .social-media:focus-within .social-media__links li:nth-of-type(1) {
  transition: 0.3s ease 0.02s;
}
.social-media:hover .social-media__links li:nth-of-type(2), .social-media:focus-within .social-media__links li:nth-of-type(2) {
  transition: 0.3s ease 0.04s;
}
.social-media:hover .social-media__links li:nth-of-type(3), .social-media:focus-within .social-media__links li:nth-of-type(3) {
  transition: 0.3s ease 0.06s;
}
.social-media:hover .social-media__links li:nth-of-type(4), .social-media:focus-within .social-media__links li:nth-of-type(4) {
  transition: 0.3s ease 0.08s;
}
.social-media:hover .social-media__links li:nth-of-type(5), .social-media:focus-within .social-media__links li:nth-of-type(5) {
  transition: 0.3s ease 0.1s;
}
.social-media:hover .social-media__links li:nth-of-type(6), .social-media:focus-within .social-media__links li:nth-of-type(6) {
  transition: 0.3s ease 0.12s;
}
.social-media:hover .social-media__links li:nth-of-type(7), .social-media:focus-within .social-media__links li:nth-of-type(7) {
  transition: 0.3s ease 0.14s;
}
.social-media:hover .social-media__links li:nth-of-type(8), .social-media:focus-within .social-media__links li:nth-of-type(8) {
  transition: 0.3s ease 0.16s;
}
.social-media:hover .social-media__links li:nth-of-type(9), .social-media:focus-within .social-media__links li:nth-of-type(9) {
  transition: 0.3s ease 0.18s;
}
.social-media:hover .social-media__links li:nth-of-type(10), .social-media:focus-within .social-media__links li:nth-of-type(10) {
  transition: 0.3s ease 0.2s;
}
.social-media:hover .social-media__links li, .social-media:focus-within .social-media__links li {
  opacity: 1;
}
.social-media__label {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  letter-spacing: -1px;
  color: var(--font-color--primary);
  transition: 0.24s ease 0.2s;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .social-media__label {
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .social-media__label {
    translate: 0 100%;
  }
}
@media (hover: none) and (pointer: coarse) {
  .social-media__label {
    translate: 0 -50%;
  }
}
.social-media__links {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .social-media__links {
    gap: 12px;
  }
}
.social-media__links li:nth-of-type(1) {
  transition: 0.3s ease 0.02s;
}
.social-media__links li:nth-of-type(2) {
  transition: 0.3s ease 0.04s;
}
.social-media__links li:nth-of-type(3) {
  transition: 0.3s ease 0.06s;
}
.social-media__links li:nth-of-type(4) {
  transition: 0.3s ease 0.08s;
}
.social-media__links li:nth-of-type(5) {
  transition: 0.3s ease 0.1s;
}
.social-media__links li:nth-of-type(6) {
  transition: 0.3s ease 0.12s;
}
.social-media__links li:nth-of-type(7) {
  transition: 0.3s ease 0.14s;
}
.social-media__links li:nth-of-type(8) {
  transition: 0.3s ease 0.16s;
}
.social-media__links li:nth-of-type(9) {
  transition: 0.3s ease 0.18s;
}
.social-media__links li:nth-of-type(10) {
  transition: 0.3s ease 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .social-media__links li {
    opacity: 0;
  }
}
.social-media__link {
  --link-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--link-size);
  height: var(--link-size);
  overflow: hidden;
  transition: 0.25s ease;
}
@media screen and (max-width: 1024px) {
  .social-media__link {
    --link-size: 28px;
  }
}
.social-media__link-img {
  background: currentColor;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  width: 100%;
  height: 100%;
  transition: 0.24s ease;
}
.social-media.no-label .social-media__links {
  margin-top: 0;
}
.social-media.no-label .social-media__links li {
  opacity: 1;
}

.video-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--section-gap);
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  background-color: rgba(20, 20, 20, 0.9);
  z-index: 6;
}
@media (prefers-reduced-motion: no-preference) {
  .video-overlay {
    transition: opacity 0.3s ease;
  }
}
.video-overlay .video-player {
  height: 70%;
  max-width: var(--full-width-snip-sm);
  width: auto;
  background: black;
}
.video-overlay__close {
  border: 1px solid var(--hero-color--primary);
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.24s ease;
}
@media (hover: hover) and (pointer: fine) {
  .video-overlay__close:hover, .video-overlay__close:focus-visible {
    scale: 1.1;
  }
}
.video-overlay__close:active {
  scale: 0.9;
}
.video-overlay__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 72%;
  height: 3px;
  background: var(--hero-color--primary);
}
.video-overlay__close-line:first-of-type {
  rotate: -45deg;
}
.video-overlay__close-line:last-of-type {
  rotate: 45deg;
}
.video-overlay--inactive {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.partial-img-hero {
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  padding: var(--body-padding);
}
.partial-img-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: var(--body-padding);
}
@media screen and (max-width: 1024px) {
  .partial-img-hero__inner {
    padding-block: var(--body-padding-double);
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.partial-img-hero__inner::before {
  background: linear-gradient(60deg, #141414 15%, rgba(0, 0, 0, 0) 90%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .partial-img-hero__inner::before {
    background: linear-gradient(180deg, #141414 15%, rgba(0, 0, 0, 0) 120%);
  }
}
.partial-img-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
  z-index: -2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.partial-img-hero__h1, .partial-img-hero__h2 {
  margin-block-end: var(--section-gap-half);
}
@media screen and (max-width: 768px) {
  .partial-img-hero__h1, .partial-img-hero__h2 {
    text-align: center;
  }
}
.partial-img-hero__h1 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 96px;
  line-height: 80%;
  font-size-adjust: 0.5;
}
@media screen and (max-width: 1024px) {
  .partial-img-hero__h1 {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 55px;
    line-height: 90%;
    font-size-adjust: 0.5;
  }
}
.partial-img-hero__h2 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 55px;
  line-height: 90%;
  font-size-adjust: 0.5;
}
.partial-img-hero__graphic {
  width: 400px;
  margin-block-end: var(--body-padding);
}
@media screen and (max-width: 768px) {
  .partial-img-hero__graphic {
    width: 50%;
    margin-block-end: var(--section-gap);
  }
}
.partial-img-hero__footer {
  width: 100%;
}
.partial-img-hero__p {
  margin-block-end: var(--section-gap-triple);
}
@media screen and (min-width: 769px) {
  .partial-img-hero__p {
    max-width: var(--paragraph-snip);
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero__p {
    text-align: center;
  }
}
.partial-img-hero__sub-content {
  --surface-color: #ffffff;
  --font-color--primary: #141414;
  --link-color: #095cfb;
  --link-color-hover: #095cfb;
  --btn-color-bg: #141414;
  --btn-color-text: #ffffff;
  --btn-color-border: var(--btn-color-bg);
  --btn-color-bg--hover: #fdfd00;
  --btn-color-text--hover: #141414;
  --btn-color-border--hover: var(--btn-color-bg--hover);
}
@media screen and (min-width: 769px) {
  .partial-img-hero__sub-content {
    display: none;
  }
}
.partial-img-hero__sub-content .sub-content__p {
  margin-block: var(--section-gap-half);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .partial-img-hero .cta-group {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero.has-subcontent .partial-img-hero__h1 {
    margin-block-end: 196px;
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero.has-subcontent .partial-img-hero__footer {
    display: none;
  }
}
.partial-img-hero.has-subcontent .cta-group {
  --surface-color: #ffffff;
  --font-color--primary: #141414;
  --link-color: #095cfb;
  --link-color-hover: #095cfb;
  --btn-color-bg: #141414;
  --btn-color-text: #ffffff;
  --btn-color-border: var(--btn-color-bg);
  --btn-color-bg--hover: #fdfd00;
  --btn-color-text--hover: #141414;
  --btn-color-border--hover: var(--btn-color-bg--hover);
}
.partial-img-hero.tools .partial-img-hero__inner {
  height: max(620px, 60vh);
  background-color: #dddddd;
  padding: calc(var(--body-padding-double) * 2) var(--body-padding-double) var(--body-padding-double);
}
@media screen and (max-width: 1512px) {
  .partial-img-hero.tools .partial-img-hero__inner {
    height: max(540px, 50vh);
  }
}
@media screen and (max-width: 1024px) {
  .partial-img-hero.tools .partial-img-hero__inner {
    min-height: 450px;
  }
}
.partial-img-hero.tools .partial-img-hero__inner::before {
  background: linear-gradient(60deg, #141414 20%, rgba(20, 20, 20, 0) 70%);
}
@media screen and (max-width: 768px) {
  .partial-img-hero.tools .partial-img-hero__inner::before {
    background: linear-gradient(180deg, #141414 36%, rgba(20, 20, 20, 0) 80%);
  }
}
@media screen and (min-width: 769px) {
  .partial-img-hero.tools .partial-img-hero__bg {
    right: -12%;
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero.tools .partial-img-hero__bg {
    scale: 1.25;
  }
}
.partial-img-hero.tools .partial-img-hero__p {
  margin: 0;
  max-width: var(--paragraph-snip-sm);
}
.partial-img-hero.tools .partial-img-hero__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .partial-img-hero.tools .partial-img-hero__footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
  }
}
.partial-img-hero.tools .cta-group {
  --surface-color: #ffffff;
  --font-color--primary: #141414;
  --link-color: #095cfb;
  --link-color-hover: #095cfb;
  --btn-color-bg: #141414;
  --btn-color-text: #ffffff;
  --btn-color-border: var(--btn-color-bg);
  --btn-color-bg--hover: #fdfd00;
  --btn-color-text--hover: #141414;
  --btn-color-border--hover: var(--btn-color-bg--hover);
}
@media screen and (max-width: 1024px) {
  .partial-img-hero.enzy .partial-img-hero__bg {
    top: -7.5%;
    scale: 1.75;
  }
}
.partial-img-hero.merdeka .partial-img-hero__bg {
  width: 92%;
}
@media screen and (max-width: 1024px) {
  .partial-img-hero.merdeka .partial-img-hero__bg {
    scale: 1;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero.ciq .partial-img-hero__inner::before {
    background: linear-gradient(180deg, #141414 56%, rgba(20, 20, 20, 0) 100%);
  }
}
.partial-img-hero.ciq .partial-img-hero__bg {
  -o-object-fit: contain;
     object-fit: contain;
  scale: 1.125;
  top: 34%;
}
@media screen and (min-width: 1025px) {
  .partial-img-hero.ciq .partial-img-hero__bg {
    top: -2%;
    right: -24%;
  }
}
.partial-img-hero.platform-page {
  margin-block-start: var(--top-spacing-header);
  padding-block: var(--body-padding) 0;
  padding-inline: 0;
}
@media screen and (min-width: 1201px) {
  .partial-img-hero.platform-page {
    padding-block: var(--body-padding-half) 0;
  }
}
.partial-img-hero.oss-section {
  padding-block-start: var(--body-padding-double);
}
.partial-img-hero.oss-section .partial-img-hero__inner {
  padding: var(--body-padding-double);
}
@media screen and (max-width: 768px) {
  .partial-img-hero.oss-section .partial-img-hero__inner::before {
    background: linear-gradient(0deg, #141414 15%, rgba(20, 20, 20, 0) 120%);
  }
}
.partial-img-hero.oss-section .partial-img-hero__graphic {
  width: 216px;
}
@media screen and (max-width: 1024px) {
  .partial-img-hero.oss-section .partial-img-hero__graphic {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero.oss-section .partial-img-hero__graphic {
    width: min(75%, 250px);
  }
}
@media screen and (min-width: 769px) {
  .partial-img-hero.oss-section .partial-img-hero__p {
    margin: 0;
  }
}
.partial-img-hero.oss-page {
  margin-block-start: var(--top-spacing-header);
}
.partial-img-hero.oss-page .partial-img-hero__bg {
  -o-object-position: 50% 25%;
     object-position: 50% 25%;
}
@media screen and (max-width: 768px) {
  .partial-img-hero.oss-page .partial-img-hero__bg {
    margin-block-start: 156px;
    -o-object-position: 100% 50%;
       object-position: 100% 50%;
  }
}
@media screen and (max-width: 480px) {
  .partial-img-hero.oss-page .partial-img-hero__bg {
    -o-object-position: 90% 50%;
       object-position: 90% 50%;
  }
}
@media screen and (max-width: 768px) {
  .partial-img-hero.oss-page .partial-img-hero__inner::before {
    background: linear-gradient(180deg, #141414 40%, rgba(0, 0, 0, 0) 100%);
  }
}

.section-tools {
  padding-inline: 0;
}
@media screen and (min-width: 1025px) {
  .section-tools {
    padding-block-end: 0;
  }
}

.logos-group {
  --font-color--primary: #ffffff;
  --link-color: #ffffff;
  --link-color-hover: #dddddd;
  color: var(--font-color--primary);
  border-radius: var(--radius-lg);
  background: var(--surface-color);
  padding-block-start: var(--section-gap);
}
@media screen and (min-width: 1025px) {
  .logos-group {
    padding-inline: var(--body-padding);
  }
}
.logos-group__h2 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 55px;
  line-height: 90%;
  font-size-adjust: 0.5;
  text-align: center;
}
.logos-group__p {
  margin-block-end: var(--section-gap-half);
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
  max-width: var(--paragraph-snip-lg);
}
.logos-group__imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logos-group__imgs.grid-5 img {
  max-width: 20%;
}
@media screen and (max-width: 1200px) {
  .logos-group__imgs.grid-5 img {
    max-width: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .logos-group__imgs.grid-5 img {
    max-width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .logos-group__imgs.grid-5 img {
    max-width: 50%;
  }
}
.logos-group__imgs.grid-4 img {
  max-width: 25%;
}
@media screen and (max-width: 1024px) {
  .logos-group__imgs.grid-4 img {
    max-width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .logos-group__imgs.grid-4 img {
    max-width: 50%;
  }
}
.logos-group__imgs.grid-3 img {
  max-width: 33%;
}
@media screen and (max-width: 768px) {
  .logos-group__imgs.grid-3 img {
    max-width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .logos-group__imgs.grid-sm-1 img {
    max-width: 100%;
  }
}

.partial-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--section-gap);
  padding-block: var(--section-gap-double);
}
@media screen and (min-width: 1201px) {
  .partial-quote {
    padding-inline: calc(var(--body-padding-double) * 2);
  }
}
.partial-quote .quote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--section-gap-double);
}
@media screen and (max-width: 1200px) {
  .partial-quote .quote {
    gap: var(--section-gap);
  }
}
@media screen and (max-width: 1024px) {
  .partial-quote .quote {
    flex-direction: column;
  }
}
@media screen and (min-width: 1025px) {
  .partial-quote .quote:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
.partial-quote .quote .portrait-gradient {
  width: clamp(280px, 100%, 520px);
  aspect-ratio: 1;
}
@media screen and (min-width: 1025px) {
  .partial-quote .quote .portrait-gradient {
    width: 32%;
    min-width: 400px;
  }
}
.partial-quote .quote .portrait-gradient::before {
  background: linear-gradient(0deg, #141414 0%, rgba(0, 0, 0, 0) 64%);
}
@media screen and (min-width: 1025px) {
  .partial-quote .quote__text-block {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .partial-quote .quote__text-block {
    text-align: center;
    margin-block-end: var(--section-gap);
  }
}
.partial-quote .quote__text-block-title {
  font-family: var(--font-family-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 55px;
  line-height: 90%;
  font-size-adjust: 0.5;
}
@media screen and (max-width: 1024px) {
  .partial-quote .quote__text-block-title {
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 36px;
    line-height: 1;
    text-align: center;
    margin-block-end: var(--section-gap-half);
  }
}
@media screen and (max-width: 1024px) {
  .partial-quote .quote__text-block blockquote {
    text-wrap: balance;
  }
}/*# sourceMappingURL=styles.css.map */