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

* {
  margin: 0;
}

html {
  -ms-overflow-style: scrollbar;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: #0000;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

:is(ul, ol):where([class]) {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

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

p {
  text-wrap: pretty;
}

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

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

textarea:not([rows]) {
  min-height: 10em;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip-ink: auto;
  color: currentColor;
  text-underline-offset: .15em;
  text-decoration-thickness: max(.08em, 1px);
}

:focus-visible {
  outline: var(--outline-width, var(--outline-size)) var(--outline-style, solid) var(--outline-color, currentColor);
  outline-offset: var(--outline-offset, var(--outline-size));
}

:target {
  scroll-margin-block: 5ex;
}

:focus {
  scroll-margin-block-end: 8vh;
}

#root, #__next {
  isolation: isolate;
}

:root {
  --ease: cubic-bezier(.15, .85, .45, 1);
  --ease-faster: cubic-bezier(.075, .82, .165, 1);
  --container: 1400px;
  --container-narrow: 1000px;
  --section-padding: clamp(4em, 25vh, 12em);
  --container-padding: clamp(2em, 10vw, 4em);
  --gap: calc(var(--container-padding) / 2);
  --border-radius: 16px;
  --outline-size: max(2px, .15em);
  --font-family: ui-sans-serif, system-ui, sans-serif;
  --base-font-size: 1rem;
  --base-line-height: 1.5;
  --ratio: 1.414;
  --font-size--2: calc(var(--font-size--1) / var(--ratio));
  --font-size--1: calc(var(--font-size-0) / var(--ratio));
  --font-size-0: var(--base-font-size);
  --font-size-1: calc(var(--font-size-0) * var(--ratio));
  --font-size-2: calc(var(--font-size-1) * var(--ratio));
  --font-size-3: calc(var(--font-size-2) * var(--ratio));
  --font-size-4: calc(var(--font-size-3) * var(--ratio));
  --font-size-5: calc(var(--font-size-4) * var(--ratio));
  --font-size-6: calc(var(--font-size-5) * var(--ratio));
  --font-size-7: calc(var(--font-size-6) * var(--ratio));
  --color-gray-hue: 220deg;
  --color-gray-sat: 8%;
  --color-gray-100: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-200: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-300: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-400: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-500: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-600: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-700: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-800: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
  --color-gray-900: hsl(var(--color-gray-hue) var(--color-gray-sat) $value);
}

.breadcrumb__list {
  flex-flow: wrap;
  list-style: none;
  display: flex;
}

.breadcrumb__item {
  flex-flow: row;
  display: flex;
}

.breadcrumb__link {
  color: currentColor;
  text-decoration: none;
  display: block;
}

.btn {
  z-index: 1;
  box-sizing: border-box;
  color: currentColor;
  font-family: var(--font-family);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: .25s var(--animation-fast);
  background-color: #0000;
  background-image: none;
  border: none;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

[data-fit-width] {
  white-space: nowrap;
  margin: 0;
  display: inline-block;
}

.holding {
  color: #ebeef5;
  color: lab(94.1564% -.225365 -3.77545);
  text-align: center;
  background: #090d16;
  background: lab(3.62337% .159085 -5.34269);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  min-height: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.holding__title {
  letter-spacing: -.02em;
  margin: 0;
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 600;
}

.holding__text {
  color: #9ea5b2;
  color: lab(67.4268% -.347018 -7.49527);
  margin: 0;
  font-size: 1rem;
}

.page {
  min-width: 320px;
  min-height: 100%;
  font-size: 100%;
  line-height: 1.5em;
}

.page__body {
  font-family: var(--font-family);
  line-height: var(--base-line-height);
}

.page__sprite-svg {
  display: none;
}

.page__inner {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.page__content {
  flex-grow: 1;
}

.page__footer-wrapper {
  flex-shrink: 0;
}

.page-header {
  background-color: red;
  height: 20px;
}

.data-parallax-span {
  display: inline-block;
}

.s-rich-text {
  font-weight: 300;
  line-height: 1.6em;
}

.s-rich-text * {
  margin: 0;
  padding: 0;
}

.s-rich-text :first-child {
  margin-top: 0;
}

.s-rich-text :is(h1, h2, h3, h4, h5, h6) {
  max-width: 60ch;
  font-weight: 400;
}

.s-rich-text :is(h1, h2, h3, h4, h5, h6) + :is(h1, h2, h3, h4, h5, h6) {
  margin-top: clamp(1.5rem, 5vw, 2rem);
}

.s-rich-text :is(h1, h2) {
  margin-top: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(1rem, 5vw, 1.5rem);
  margin-left: -.025em;
}

.s-rich-text :is(h3, h4) {
  margin-top: clamp(1rem, 5vw, 1.5rem);
  margin-bottom: clamp(1rem, 5vw, 1.5rem);
  margin-left: -.0125em;
}

.s-rich-text :is(h5, h6) {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.s-rich-text h2 {
  letter-spacing: -.02em;
  font-size: 20px;
  line-height: 1.35em;
}

.s-rich-text h3 {
  letter-spacing: -.01em;
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1.3em;
}

.s-rich-text :is(h4, h5, h6) {
  letter-spacing: -.01em;
  font-size: clamp(16px, 5vw, 20px);
  line-height: 1.35em;
}

.s-rich-text :is(p, li) {
  max-width: 75ch;
}

.s-rich-text :is(ol, ul) {
  padding-left: 1.5rem;
  list-style: none;
  overflow: visible;
}

.s-rich-text ol {
  counter-reset: my-counter;
}

.s-rich-text ol li {
  counter-increment: my-counter;
  position: relative;
}

.s-rich-text ol li:before {
  content: counter(my-counter) ".";
  font-feature-settings: "tnum";
  position: absolute;
  inset: 0 calc(100% + .5rem) auto auto;
}

.s-rich-text ul li {
  position: relative;
}

.s-rich-text ul li:before {
  --marker-size: .375rem;
  content: "";
  top: calc(.5lh - var(--marker-size) / 2);
  height: var(--marker-size);
  width: var(--marker-size);
  border-radius: var(--marker-size);
  opacity: .8;
  background-color: currentColor;
  position: absolute;
  bottom: auto;
  left: auto;
  right: calc(100% + 1rem);
}

.s-rich-text :is(p, ol, ul, blockquote) + :is(p, ol, ul, blockquote) {
  margin-top: 1em;
}

.s-rich-text :is(ol, ul) li + li {
  margin-top: .75em;
}

.s-rich-text figure {
  margin-top: clamp(3rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.s-rich-text figure img {
  border-radius: 1rem;
}

.s-rich-text figure figcaption {
  text-align: left;
  margin-top: .5rem;
  padding-left: .75rem;
  font-size: .75rem;
}

.s-rich-text a {
  color: var(--c-link);
  -webkit-text-decoration-color: var(--border-color);
  text-decoration-color: var(--border-color);
  text-underline-offset: .15em;
  text-decoration-thickness: from-font;
  transition: text-decoration-color .2s cubic-bezier(.4, 0, .2, 1);
}

.s-rich-text a:hover, .s-rich-text a:focus-visible {
  -webkit-text-decoration-color: var(--c-link);
  text-decoration-color: var(--c-link);
}

.s-rich-text :is(i, em) {
  font-style: 300;
}

.s-rich-text :is(b, strong) {
  font-weight: 600;
}

.vhs {
  position: relative;
}

.vhs.is-native .vhs__source {
  display: block;
}

.vhs__source {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0;
}

.vhs__content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
}

.vhs__output {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.vhs--fullscreen {
  height: 100svh;
}
/*# sourceMappingURL=style.css.map */
