@import "https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700&display=swap";

/* src/styles.css */
:root {
  --sku-font-sans:
    "Dosis",
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  --sku-wave-overlap: clamp(30px, 8.25vw, 42px);
}
.sku-font-sans {
  font-family: var(--sku-font-sans);
}
.sku-header {
  width: 100%;
  z-index: 50;
  font-family: var(--sku-font-sans);
}
.sku-header--sticky {
  position: sticky;
  top: 0;
}
.sku-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
}
.sku-header__inner-wrap {
  position: relative;
}
.sku-header__brand {
  font-weight: 800;
  font-size: 17.6px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.sku-header__nav {
  display: flex;
  gap: 14.4px;
}
.sku-header__link {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}
.sku-header__link:hover {
  opacity: 1;
}
.sku-header__right {
  margin-left: auto;
}
.sku-header__menu-button {
  display: none;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-color: rgba(0, 0, 0, 0);
  border-style: none;
  border-image: none;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.sku-header__menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.sku-header__mobile-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 7.2px;
}
.sku-header__mobile-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.95;
  font-size: 15px;
}
.sku-header__mobile-socials {
  margin-top: 12px;
  padding-top: 12px;
  min-height: 32px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .sku-header__menu-button {
    display: inline-flex;
  }
  .sku-header__nav,
  .sku-header__right {
    display: none;
  }
}
.sku-header__legacy {
  position: relative;
  height: 52px;
  width: 100%;
  overflow: visible;
}
@media (min-width: 885px) {
  .sku-header__legacy {
    height: 65px;
  }
}
@media (min-width: 1920px) {
  .sku-header__legacy {
    height: 70px;
  }
}
.sku-header__legacy-brand-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  max-width: min(50vw, 480px);
  overflow: visible;
  padding-right: clamp(20px, 4.5vw, 48px);
}
.sku-header__legacy-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: clamp(20px, 3.5vw, 44px);
  box-sizing: content-box;
  min-width: 156px;
}
.sku-header__legacy-menu-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.sku-header__legacy-mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 9.6px;
}
.sku-header__page-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.15s ease;
}
.sku-header__legacy-project-chevron {
  position: absolute;
  left: 145px;
  top: 18px;
  transform: translateY(-50%);
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.95;
  pointer-events: none;
  animation: sku-legacy-chevron-slide-in 420ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}
.sku-header__legacy-project-title-reveal {
  position: absolute;
  left: 191px;
  top: 24px;
  transform: translateY(-50%);
  overflow: visible;
  white-space: nowrap;
}
.sku-header__legacy-project-trail {
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
}
.sku-header__legacy-project-trail-segment {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.sku-header__legacy-project-title {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.15s ease;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  animation: sku-legacy-title-slide-out 520ms cubic-bezier(0.22, 1, 0.36, 1) 420ms both;
}
.sku-header__legacy-project-title--static {
  text-decoration: none;
}
.sku-header__legacy-project-separator {
  display: inline-block;
  font-size: 0.82em;
  font-weight: 900;
  line-height: 1;
  margin: 0 8px;
  opacity: 0.95;
  flex-shrink: 0;
}
.sku-header__legacy-project-title:hover {
  opacity: 1;
}
@media (min-width: 885px) {
  .sku-header__legacy-project-chevron {
    left: 240px;
    top: 36px;
  }
  .sku-header__legacy-project-title-reveal {
    left: 287px;
    top: 42px;
  }
  .sku-header__legacy-project-title {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 884px) {
  .sku-header__legacy-project-chevron {
    left: 178px;
    top: 18px;
    font-size: 58px;
  }
  .sku-header__legacy-project-title-reveal {
    left: 214px;
    top: 24px;
    width: calc(100vw - 300px);
    max-width: 340px;
  }
  .sku-header__legacy-project-title {
    font-size: clamp(22px, 3.2vw, 30px);
    max-width: calc(100vw - 300px);
  }
}
@keyframes sku-legacy-chevron-slide-in {
  from {
    opacity: 0;
    transform: translate(-12px, -50%);
  }
  to {
    opacity: 0.95;
    transform: translate(0, -50%);
  }
}
@keyframes sku-legacy-title-slide-out {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 0.95;
    transform: translateX(0);
  }
}
.sku-header__page-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .sku-header__legacy-project-chevron {
    left: 162px;
    top: 18px;
    font-size: 50px;
  }
  .sku-header__legacy-project-title-reveal {
    left: 196px;
    top: 24px;
    width: calc(100vw - 248px);
    max-width: 255px;
    overflow: hidden;
  }
  .sku-header__legacy-project-title {
    font-size: clamp(16px, 5.8vw, 24px);
    max-width: calc(100vw - 248px);
  }
}
.sku-header-layout-spacer {
  flex-shrink: 0;
  width: 100%;
  height: 52px;
  pointer-events: none;
}
@media (min-width: 885px) {
  .sku-header-layout-spacer {
    height: 65px;
  }
}
@media (min-width: 1920px) {
  .sku-header-layout-spacer {
    height: 70px;
  }
}
.sku-header-portal-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  isolation: isolate;
  font-family: var(--sku-font-sans);
}
.sku-header-portal-root .sku-header--sticky {
  position: relative;
  top: auto;
}
@media (max-width: 767px) {
  .sku-header-portal-root .sku-header__menu-button {
    display: inline-flex;
  }
}
.sku-stonekokoro-logo {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 154px;
  height: 50px;
  overflow: visible;
}
@media (min-width: 885px) {
  .sku-stonekokoro-logo {
    left: 37px;
    top: 12px;
    width: 214.981px;
    height: 69.239px;
  }
}
.sku-stonekokoro-logo__bleed {
  position: absolute;
  left: -14px;
  right: -14px;
  top: -14px;
  bottom: -14px;
}
@media (min-width: 885px) {
  .sku-stonekokoro-logo__bleed {
    left: -16px;
    right: -16px;
    top: -16px;
    bottom: -16px;
  }
}
.sku-stonekokoro-logo svg {
  display: block;
  overflow: visible;
}
.sku-stonekokoro-logo__img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.sku-stonekokoro-logo__img > svg {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  overflow: visible;
}
.sku-social-links {
  position: absolute;
  width: 144px;
  height: 32px;
  max-width: 144px;
  max-height: 32px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .sku-social-links {
    right: 16px;
  }
}
.sku-social-links--center {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
}
.sku-social-links--left {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  transform: none;
}
.sku-social-links__link {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 32px;
  height: 32px;
  top: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}
.sku-social-links__link:hover {
  opacity: 0.8;
}
.sku-social-links__link--kofi {
  left: 0;
  padding: 3.615px 0 0;
}
.sku-social-links__link--bsky {
  left: 36px;
  padding: 4.656px 2.656px 0;
}
.sku-social-links__link--discord {
  left: 72px;
  padding: 5.333px 1.99px 0 2px;
}
.sku-social-links__link--steam {
  left: 108px;
  padding: 2.656px 2.656px 0;
}
.sku-social-links__frame {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.sku-social-links__frame--kofi {
  width: 32px;
  height: 24.771px;
}
.sku-social-links__frame--bsky {
  width: 27px;
  height: 23.719px;
}
.sku-social-links__frame--discord {
  width: 28px;
  height: 21.344px;
}
.sku-social-links__frame--steam {
  width: 27px;
  height: 26.688px;
}
.sku-social-links__pad {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.sku-social-links__pad--kofi {
  bottom: 2.26%;
}
.sku-social-links__pad--bsky {
  bottom: 1.24%;
}
.sku-social-links__pad--discord {
  bottom: -0.03%;
}
.sku-social-links__pad--steam {
  bottom: 0;
}
.sku-social-links__svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .sku-header__legacy-right {
    display: none;
  }
}
.sku-tilt-card-wrapper {
  position: relative;
  touch-action: manipulation;
}
.sku-tilt-card__content {
  position: relative;
  z-index: auto;
}
.sku-tilt-card__shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sku-tilt-radius, 12px);
  transform-style: preserve-3d;
}
.sku-tilt-border {
  position: absolute;
  pointer-events: none;
  transition: opacity 0.5s;
  background:
    radial-gradient(
      circle at 50% 50%,
      #ffb3ba 0%,
      #ffdfba 14%,
      #ffffba 28%,
      #baffc9 42%,
      #bae1ff 57%,
      #d4baff 71%,
      #ffb3ff 85%,
      #ffb3ba 100%);
  background-size: 200% 200%;
}
.sku-tilt-border--blur {
  inset: -4px;
  filter: blur(4px);
}
.sku-tilt-border--sharp {
  inset: 0;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.sku-tilt-mirror-host {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 240ms ease;
  transform-style: preserve-3d;
  transform-origin: center center;
}
.sku-tilt-mirror-host--active {
  opacity: 1;
}
.sku-tilt-mirror {
  position: absolute;
  pointer-events: none;
  border-radius: var(--sku-tilt-radius, inherit);
  overflow: hidden;
}
.sku-tilt-mirror__ring {
  position: absolute;
  inset: var(--sku-ring-inset, 2%);
  border-radius: calc(var(--sku-tilt-radius, 12px) - var(--sku-ring-radius-reduce, 0px));
  border: var(--sku-ring-stroke, 2px) solid transparent;
  background:
    conic-gradient(
      from 0deg,
      rgba(255, 104, 162, 0.95),
      rgba(255, 211, 102, 0.95),
      rgba(112, 240, 175, 0.95),
      rgba(112, 178, 255, 0.95),
      rgba(193, 136, 255, 0.95),
      rgba(255, 104, 162, 0.95)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  box-sizing: border-box;
  mix-blend-mode: color-burn;
  will-change: transform, opacity;
  opacity: var(--sku-ring-opacity, 0.6);
  filter: brightness(0.9);
  animation: none;
  transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax, 2px)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax, 2px))) scale(var(--sku-ring-scale, 1));
}
.sku-tilt-mirror-host--active .sku-tilt-mirror__ring {
  animation-name: sku-tilt-mirror-spawn;
  animation-duration: 1200ms;
  animation-timing-function: cubic-bezier(0.2, 0.75, 0.2, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-delay: var(--sku-ring-delay, 0ms);
}
.sku-tilt-mirror__ring--1 {
  inset: 2%;
  --sku-ring-depth: 0;
  --sku-ring-radius-reduce: 0px;
  --sku-ring-scale: 1;
  --sku-ring-from-scale: 1.08;
  --sku-ring-parallax: 2px;
  transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-scale));
  animation-delay: 0ms;
}
.sku-tilt-mirror__ring--2 {
  inset: 7%;
  --sku-ring-depth: 1;
  --sku-ring-radius-reduce: 2px;
  --sku-ring-scale: 0.94;
  --sku-ring-from-scale: 1.04;
  --sku-ring-parallax: 4px;
  transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-scale));
  animation-delay: 150ms;
}
.sku-tilt-mirror__ring--3 {
  inset: 12%;
  --sku-ring-depth: 2;
  --sku-ring-radius-reduce: 4px;
  --sku-ring-scale: 0.88;
  --sku-ring-from-scale: 1;
  --sku-ring-parallax: 6px;
  transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-scale));
  animation-delay: 320ms;
}
.sku-tilt-mirror__ring--4 {
  inset: 17%;
  --sku-ring-depth: 3;
  --sku-ring-radius-reduce: 6px;
  --sku-ring-scale: 0.82;
  --sku-ring-from-scale: 0.96;
  --sku-ring-parallax: 8px;
  transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-scale));
  animation-delay: 520ms;
}
.sku-tilt-mirror__ring--5 {
  inset: 22%;
  --sku-ring-depth: 4;
  --sku-ring-radius-reduce: 8px;
  --sku-ring-scale: 0.76;
  --sku-ring-from-scale: 0.92;
  --sku-ring-parallax: 10px;
  transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-scale));
  animation-delay: 740ms;
}
@keyframes sku-tilt-mirror-spawn {
  0% {
    transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-from-scale));
  }
  28% {
    transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-scale));
  }
  100% {
    transform: translate(calc(var(--sku-tilt-x, 0) * var(--sku-ring-parallax)), calc(var(--sku-tilt-y, 0) * var(--sku-ring-parallax))) scale(var(--sku-ring-scale));
  }
}
.sku-wobbly-fit {
  display: inline-block;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  line-height: 1;
}
.sku-wobbly {
  display: inline-block;
  transform-origin: left center;
  white-space: nowrap;
}
.sku-wobbly__char {
  display: inline-block;
  animation-name: sku-wobble;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.sku-autofit {
  display: inline-block;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  line-height: 1;
}
.sku-autofit__content {
  display: inline-block;
  white-space: nowrap;
  transform-origin: left center;
}
@keyframes sku-wobble {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) rotate(-1deg);
  }
  50% {
    transform: translateY(1px) rotate(1deg);
  }
  75% {
    transform: translateY(-1px) rotate(-0.7deg);
  }
}
@keyframes sku-rainbow-radial-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.sku-header-stack {
  position: relative;
  width: 100%;
  z-index: 50;
  font-family: var(--sku-font-sans);
  overflow: visible;
}
.sku-header-stack--sticky {
  position: sticky;
  top: 0;
}
.sku-header-stack > .sku-header {
  position: relative;
  z-index: 2;
}
.sku-header-stack__wave-below {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  height: var(--sku-wave-overlap);
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.sku-header-stack__wave-below .sku-header-stack__filtered {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sku-header-stack__filtered {
  position: relative;
}
.sku-header-stack--wave-hue-shift > .sku-header {
  animation: sku-wave-hue-shift 92s ease-in-out infinite;
  will-change: filter;
}
.sku-header-stack--wave-hue-shift .sku-header-stack__wave-below .sku-header-stack__filtered {
  animation: sku-wave-hue-shift 92s ease-in-out infinite;
  will-change: filter;
}
.sku-header-wave-strip {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  height: var(--sku-wave-overlap);
  background: none;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}
.sku-header-stack__wave-below .sku-header-wave-strip {
  top: 0;
  height: 100%;
}
.sku-pad-under-header-waves {
  padding-top: calc(var(--sku-wave-overlap) + 0.5rem);
}
.sku-inset-top-below-header-bar {
  top: 52px;
}
@media (min-width: 885px) {
  .sku-inset-top-below-header-bar {
    top: 65px;
  }
}
@media (min-width: 1920px) {
  .sku-inset-top-below-header-bar {
    top: 70px;
  }
}
.sku-wavy-strip {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: visible;
}
.sku-wavy-strip__layer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 200%;
  min-width: 800px;
  will-change: transform;
}
@keyframes sku-wave-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.sku-wavy-strip__layer--a {
  height: 24px;
  mix-blend-mode: plus-lighter;
  animation: sku-wave-drift 52s linear infinite;
}
.sku-wavy-strip__layer--b {
  opacity: 0.42;
  animation: sku-wave-drift 36s linear infinite reverse;
}
@keyframes sku-wave-hue-shift {
  0%, 100% {
    filter: hue-rotate(-16deg) saturate(1.05);
  }
  20% {
    filter: hue-rotate(4deg) saturate(1.1);
  }
  45% {
    filter: hue-rotate(26deg) saturate(1.12);
  }
  70% {
    filter: hue-rotate(-8deg) saturate(1.08);
  }
}
.sku-header-stack--no-wave-hue-shift > .sku-header,
.sku-header-stack--no-wave-hue-shift .sku-header-stack__filtered {
  animation: none;
  filter: none;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .sku-wavy-strip__layer--a,
  .sku-wavy-strip__layer--b {
    animation: none;
  }
  .sku-header-stack > .sku-header,
  .sku-header-stack__filtered {
    animation: none;
  }
}
