:root {
  --tpl-ink: #3a3a3a;
  --tpl-paper: #fafaf9;
}

body.tpl-loading {
  overflow: hidden;
}

#tpl-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tpl-paper);
  z-index: 999999;
}

.tpl-logo-stage {
  position: relative;
  width: min(72vw, 480px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.tpl-mark-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tpl-mark-wrap img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.tpl-shine {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.tpl-accent-line {
  width: 0%;
  height: 1px;
  background: var(--tpl-ink);
  opacity: 0.35;
}
