*, :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-block-size: 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-inline-size: 100%;
  display: block;
}

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

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

a:not([class]) {
  -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-face {
  font-family: PP Pangram Sans;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PPPangramSans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: PP Pangram Sans;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PPPangramSans-Semibold.woff2") format("woff2");
}

:root {
  --font-family: "PP Pangram Sans", 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;
}

@keyframes char-wave-pass {
  50% {
    filter: blur(2px);
    opacity: .4;
  }
}

.char-wave__text {
  position: relative;
}

.char-wave__char {
  --char-wave-index: 0;
  --char-wave-count: 1;
  white-space: pre;
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  :is([data-char-wave]:not([data-char-wave="group"]):hover, [data-char-wave-group]:hover [data-char-wave="group"]) .char-wave__char {
    animation: char-wave-pass .6s cubic-bezier(0, .55, .45, 1) calc(var(--char-wave-index) / var(--char-wave-count) * .2s);
  }
}

.char-wave__label {
  white-space: nowrap;
  clip-path: inset(50%);
  block-size: 1px;
  inline-size: 1px;
  position: absolute;
  overflow: hidden;
}

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

@property --magic-ball-speed {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}

@property --magic-ball-intensity {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}

.magic-ball {
  --magic-ball-speed: .6;
  --magic-ball-intensity: 1;
  --magic-ball-radius: .38;
  --magic-ball-particle-count: 3000;
  --magic-ball-sparsity: .55;
  --magic-ball-accent: oklch(58.5% .233 277.117);
  --magic-ball-glow-color: oklch(60% .2 262);
  --magic-ball-spark-color: oklch(92% .06 340);
  --magic-ball-palette: oklch(87% .065 274.039), oklch(78.5% .115 274.713), oklch(67.3% .182 276.935),
    oklch(89.4% .057 293.283), oklch(81.1% .111 293.571), oklch(70.2% .183 293.541),
    oklch(88.2% .059 254.128), oklch(80.9% .105 251.813), oklch(70.7% .165 254.624);
  --magic-ball-ask-palette: oklch(67.3% .182 276.935), oklch(58.5% .233 277.117), oklch(70.7% .165 254.624),
    oklch(62.3% .214 259.815), oklch(54.1% .281 293.009);
  aspect-ratio: 1;
  color: oklch(98% 0 0);
  text-align: center;
  clip-path: circle(50%);
  place-items: center;
  inline-size: 100%;
  max-inline-size: 26rem;
  display: grid;
  position: relative;
  container-type: inline-size;
}

.magic-ball:focus-visible {
  outline: none;
}

.magic-ball[data-state="idle"] {
  cursor: pointer;
}

.magic-ball[data-state="idle"] .magic-ball__view--idle, .magic-ball[data-state="loading"] .magic-ball__view--loading, .magic-ball[data-state="result"] .magic-ball__view--result {
  visibility: visible;
  opacity: 1;
}

.magic-ball__core {
  aspect-ratio: 1;
  filter: blur(5cqi);
  background: oklch(12% .02 280 / .55);
  border-radius: 50%;
  grid-area: 1 / 1;
  inline-size: 70%;
}

.magic-ball__core--inner {
  filter: blur(3cqi);
  background: oklch(8% .02 280 / .75);
  inline-size: 42%;
}

.magic-ball__canvas {
  pointer-events: none;
  block-size: 100%;
  inline-size: 100%;
  position: absolute;
  inset: 0;
}

.magic-ball__content {
  block-size: calc(var(--magic-ball-radius) * 200cqi);
  inline-size: calc(var(--magic-ball-radius) * 200cqi);
  grid-area: 1 / 1;
  display: grid;
  position: relative;
}

.magic-ball__view {
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  opacity: 0;
  grid-area: 1 / 1;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
  padding-block: 80px;
  padding-inline: 48px;
  display: grid;
}

.magic-ball__title {
  color: var(--magic-ball-accent);
  align-self: start;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
}

.magic-ball__text {
  font-kerning: none;
  text-rendering: optimizespeed;
  text-wrap: wrap;
  grid-row: 2;
  font-size: max(.875rem, 3.7cqi);
  font-weight: 600;
  line-height: 1.4;
}

.magic-ball__actions {
  flex-direction: column;
  grid-row: 3;
  align-self: end;
  align-items: center;
  gap: 8px;
  display: flex;
}

.magic-ball__actions--inline {
  flex-direction: row;
  gap: 16px;
}

.magic-ball__action {
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: .5em;
  padding: 0;
  line-height: 1.2;
}

.magic-ball__action:focus-visible {
  outline: var(--outline-size) solid currentcolor;
  outline-offset: 2px;
}

.magic-ball__action {
  color: inherit;
  transition: opacity .2s var(--ease);
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
}

@media (hover: hover) and (pointer: fine) {
  .magic-ball__action:hover {
    opacity: .75;
  }
}

.magic-ball__action--accent {
  color: var(--magic-ball-accent);
}

.magic-ball__retry {
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: .5em;
  padding: 0;
  line-height: 1.2;
}

.magic-ball__retry:focus-visible {
  outline: var(--outline-size) solid currentcolor;
  outline-offset: 2px;
}

.magic-ball__retry {
  color: oklch(78.5% .115 274.713);
  transition: opacity .2s var(--ease);
  opacity: .6;
  display: inline-flex;
}

@media (hover: hover) and (pointer: fine) {
  .magic-ball__retry:hover {
    opacity: .8;
  }

  .magic-ball__retry:hover .magic-ball__icon {
    rotate: -90deg;
  }
}

.magic-ball__divider {
  background: color-mix(in oklch, currentcolor 15%, transparent);
  block-size: 12px;
  inline-size: 1px;
}

.magic-ball__icon {
  flex-shrink: 0;
  block-size: 16px;
  inline-size: 16px;
}

.magic-ball__icon--small {
  block-size: 14px;
  inline-size: 14px;
  transition: rotate .8s cubic-bezier(0, .55, .45, 1);
  translate: 0 -1px;
}

.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-block-start: 0;
}

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

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

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

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

.s-rich-text :is(h5, h6) {
  margin-block: 2rem 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-inline-size: 75ch;
}

.s-rich-text :is(ol, ul) {
  padding-inline-start: 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: "";
  inset: calc(.5lh - var(--marker-size) / 2) calc(100% + 1rem) auto auto;
  block-size: var(--marker-size);
  inline-size: var(--marker-size);
  border-radius: var(--marker-size);
  opacity: .8;
  background-color: currentColor;
  position: absolute;
}

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

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

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

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

.s-rich-text figure figcaption {
  text-align: left;
  margin-block-start: .5rem;
  padding-inline-start: .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;
}

.sandbox {
  color: oklch(96% 0 0);
  background: oklch(25% .02 282);
  place-items: center;
  min-block-size: 100svh;
  padding: 16px;
  display: grid;
  position: relative;
}

.sandbox__stage {
  place-items: center;
  inline-size: 100%;
  display: grid;
}

.sandbox__panel {
  corner-shape: squircle;
  background: oklch(100% 0 0 / .02);
  border: 1px solid oklch(100% 0 0 / .04);
  border-radius: 48px;
  gap: 1.25rem;
  inline-size: 17rem;
  padding: 1.5rem;
  font-size: .875rem;
  display: grid;
  position: absolute;
  inset: 16px 16px auto auto;
}

.sandbox__field {
  border: 0;
  gap: .5rem;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  display: grid;
}

.sandbox__row {
  justify-content: space-between;
  display: flex;
}

.sandbox__label {
  color: oklch(100% 0 0 / .55);
  padding: 0;
  font-size: .875rem;
}

.sandbox__hint {
  color: oklch(100% 0 0 / .55);
  font-size: .75rem;
}

.sandbox__value {
  font-variant-numeric: tabular-nums;
  font-size: .75rem;
}

.sandbox__range {
  --sandbox-range-progress: .5;
  --sandbox-range-color: oklch(67.3% .182 276.935);
  --sandbox-range-thumb: 12px;
  background: linear-gradient(to right, color-mix(in oklch, var(--sandbox-range-color) 25%, transparent), var(--sandbox-range-color)) 0 50%/calc(var(--sandbox-range-thumb) / 2 + (100% - var(--sandbox-range-thumb)) * var(--sandbox-range-progress)) 2px no-repeat, repeating-linear-gradient(to left, oklch(100% 0 0 / .4) 0 2px, transparent 2px 6px) 100% 50%/calc((100% - var(--sandbox-range-thumb)) * (1 - var(--sandbox-range-progress))) 2px no-repeat;
  cursor: pointer;
  appearance: none;
  block-size: 10px;
  inline-size: 100%;
  margin: 0;
}

.sandbox__range::-webkit-slider-thumb {
  block-size: 10px;
  inline-size: var(--sandbox-range-thumb);
  background: var(--sandbox-range-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  appearance: none;
}

.sandbox__range::-moz-range-thumb {
  block-size: 10px;
  inline-size: var(--sandbox-range-thumb);
  background: var(--sandbox-range-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border: 0;
  border-radius: 0;
}

.sandbox__range:focus-visible {
  outline: var(--outline-size) solid currentcolor;
  outline-offset: 4px;
}

.sandbox__states {
  gap: .5rem;
  margin-block-start: 4px;
  margin-inline: -2px;
  display: flex;
}

.sandbox__state {
  corner-shape: squircle;
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 1px solid oklch(100% 0 0 / .15);
  border-radius: 999px;
  flex: 1;
  padding-block: .5rem;
}

@media (hover: hover) and (pointer: fine) {
  .sandbox__state:hover {
    background: oklch(100% 0 0 / .08);
  }
}

.sandbox__state:focus-visible {
  outline: var(--outline-size) solid currentcolor;
  outline-offset: 2px;
}
/*# sourceMappingURL=style.css.map */
