:root {
  --black: #030303;
  --white: #fff;
  --egg-ink: #fff;
  --edge: clamp(20px, 5vw, 72px);
  --measure: min(100% - (var(--edge) * 2), 1180px);
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--black);
}

body {
  overflow: hidden;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 6px;
}

.surface {
  position: relative;
  width: 100%;
  min-height: 100svh;
  isolation: isolate;
  animation: surface-in 420ms ease-out both;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  height: calc(56.7px + env(safe-area-inset-top));
  border-bottom: 1px solid rgba(255, 255, 255, 0.92);
  background: var(--black);
}

.site-home {
  position: absolute;
  top: calc(23.7px + env(safe-area-inset-top));
  left: clamp(28px, 8.95vw, 42px);
  color: var(--white);
  font-size: clamp(12px, 3.1vw, 13px);
  font-weight: 400;
  line-height: 1.15;
}

.identity {
  position: absolute;
  inset: 0;
  display: block;
  text-align: center;
}

.release-line {
  margin: 0;
  color: var(--white);
  font-style: italic;
  line-height: 1.15;
}

.logo-frame {
  position: absolute;
  top: 35.55svh;
  left: 50%;
  display: grid;
  width: min(83.1vw, 340px);
  margin: 0;
  place-items: center;
  transform: translateX(-50%);
}

.logo-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  color: var(--white);
}

.identity-logo-art path {
  fill: currentColor;
}

.write-mask-full {
  fill: #fff;
}

.write-guide-path {
  fill: none;
  stroke: #fff;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 28;
}

[data-logo-variant="easter"] .logo-svg {
  color: var(--egg-ink);
}

[data-logo-intro="new"] .write-mask-full {
  opacity: 0;
  animation: commit-mask 1ms step-end 2500ms forwards;
}

[data-logo-intro="new"] .write-guide-path {
  stroke-dashoffset: 1;
  animation: write-guide var(--duration) cubic-bezier(0.7, 0, 0.2, 1) var(--delay) forwards;
}

[data-logo-intro="new"] .release-block,
[data-logo-intro="new"] .site-footer {
  opacity: 0;
  animation: boot-text 520ms ease-out forwards;
}

[data-logo-intro="new"] .release-block {
  animation-delay: 2460ms;
}

[data-logo-intro="new"] .site-footer {
  animation-delay: 2620ms;
}

.release-block {
  display: grid;
  justify-items: center;
  position: absolute;
  top: calc(35.55svh + min(45.4vw, 185px) + clamp(26px, 4.4svh, 38px));
  left: 50%;
  width: max-content;
  gap: 12px;
  transform: translateX(-50%);
}

.release-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.24em;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.release-line strong {
  font-weight: 700;
}

.release-block a {
  position: relative;
  display: inline-block;
  font-size: clamp(12px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.15;
}

.release-block a::after {
  position: absolute;
  right: 0;
  bottom: -0.28em;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.release-block a:hover::after,
.release-block a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-footer {
  position: fixed;
  z-index: 8;
  right: 0;
  bottom: calc(22px + env(safe-area-inset-bottom));
  left: 0;
  color: var(--white);
  font-size: clamp(6.5px, 1.7vw, 8px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.site-footer strong {
  font-weight: 700;
}

@keyframes surface-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes write-guide {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes commit-mask {
  to {
    opacity: 1;
  }
}

@keyframes boot-text {
  to {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .release-line {
    font-size: 20px;
  }

  .release-block a {
    font-size: 12px;
  }

  .release-block {
    gap: 6px;
  }
}

@media (min-width: 721px) {
  .site-header {
    height: clamp(64px, 7svh, 90px);
  }

  .site-home {
    top: clamp(28px, 3.9svh, 40px);
    left: var(--edge);
    font-size: clamp(12px, 0.9vw, 14px);
  }

  .identity {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: clamp(38px, 5.6vh, 62px);
    padding: clamp(96px, 13vh, 132px) var(--edge) clamp(76px, 10vh, 112px);
  }

  .logo-frame {
    position: relative;
    top: auto;
    left: auto;
    width: min(58vw, 760px);
    transform: none;
  }

  .release-block {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    gap: 12px;
    transform: none;
  }

  .site-footer {
    bottom: clamp(18px, 2.8vh, 30px);
    font-size: clamp(8px, 0.7vw, 10px);
  }
}

@media (max-width: 420px) {
  .release-line {
    font-size: clamp(18px, 5.35vw, 20px);
  }

  .release-block a {
    font-size: clamp(11px, 3.2vw, 12px);
  }
}

@media (min-width: 1280px) and (min-height: 760px) {
  .logo-frame {
    width: min(50vw, 780px);
  }
}

@media (max-height: 560px) {
  .identity {
    display: grid;
    align-content: center;
    gap: 24px;
    padding: 76px var(--edge) 48px;
  }

  .logo-frame {
    position: relative;
    top: auto;
    left: auto;
    width: min(54vw, 420px);
    transform: none;
  }

  .release-line {
    font-size: 22px;
  }

  .release-block {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
    gap: 8px;
  }

  .site-footer {
    bottom: 10px;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  [data-logo-intro="new"] .write-mask-full {
    opacity: 1;
  }

  [data-logo-intro="new"] .write-guide-path {
    animation: none;
    stroke-dashoffset: 0;
  }

  [data-logo-intro="new"] .release-block,
  [data-logo-intro="new"] .site-footer {
    opacity: 1;
  }
}
